/* ==========================================================================
   DAZ-TRADE Marketing Site — shared stylesheet
   ========================================================================== */

:root {
  --maroon: #96113C;
  --maroon-dark: #7A0D30;
  --gold: #DBAF47;
  --navy: #1B3A6B;
  --navy-dark: #142c52;
  --white: #FFFFFF;
  --dark: #0F0F0F;
  --grey-light: #F8F8F8;
  --grey-border: #E5E7EB;
  --grey-text: #5B6472;

  --container-width: 1180px;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(15, 15, 15, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 15, 15, 0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}
.section--alt { background: var(--grey-light); }
.section--navy { background: var(--navy); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  color: var(--grey-text);
  font-size: 17px;
}
.section--navy .section-subtitle { color: rgba(255,255,255,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--maroon);
  color: var(--white);
}
.btn--primary:hover { background: var(--maroon-dark); }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover { background: #c99a36; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1fb757; }

.btn--block { width: 100%; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(219,175,71,0.18) 0%, rgba(219,175,71,0) 70%);
}
.hero-inner {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.hero h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero .btn-row { justify-content: center; }

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  padding: 40px 0;
}
.stats-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 28px;
  text-align: center;
}
.stat-item .stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--maroon);
}
.stat-item .stat-label {
  font-size: 14px;
  color: var(--grey-text);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.stats-strip .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stats-strip-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 24px;
}

/* ---------- Feature cards ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--6 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(150, 17, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--grey-text); font-size: 15px; margin-bottom: 0; }

/* ---------- Screenshot showcase ---------- */
.browser-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-border);
  background: var(--white);
}
.browser-frame .browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #EDEFF2;
  border-bottom: 1px solid var(--grey-border);
}
.browser-frame .dot { width: 10px; height: 10px; border-radius: 50%; background: #D1D5DB; }
.browser-frame .dot:nth-child(1) { background: #EF4444; }
.browser-frame .dot:nth-child(2) { background: #F59E0B; }
.browser-frame .dot:nth-child(3) { background: #22C55E; }
.browser-frame img { width: 100%; display: block; }

.showcase-wrap { max-width: 980px; margin: 0 auto; }

.browser-frame--placeholder .placeholder-body {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--grey-light);
  color: var(--grey-text);
  font-size: 14px;
  font-weight: 600;
}
.browser-frame--placeholder .placeholder-icon { font-size: 42px; }

/* ---------- Why DAZ-TRADE / value pillars ---------- */
.pillar { text-align: center; padding: 8px; }
.pillar .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(219,175,71,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.pillar h3 { font-size: 19px; margin-bottom: 10px; }
.pillar p { color: var(--grey-text); font-size: 15px; }
.section--navy .pillar p { color: rgba(255,255,255,0.75); }

/* ---------- Module sections (Features page) ---------- */
.module-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
}
.module-block:not(:last-child) { border-bottom: 1px solid var(--grey-border); }
.module-block.reverse .module-copy { order: 2; }
.module-block.reverse .module-shot { order: 1; }
.module-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}
.module-copy h2 { font-size: 26px; margin-bottom: 12px; }
.module-copy p { color: var(--grey-text); font-size: 16px; }
.module-copy ul { margin-top: 16px; }
.module-copy ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 15px;
}
.module-copy ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--maroon);
  font-weight: 800;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.plan-name { font-size: 20px; margin-bottom: 4px; }
.plan-tagline { color: var(--grey-text); font-size: 14px; margin-bottom: 20px; }
.plan-price { font-size: 32px; font-weight: 800; color: var(--maroon); margin-bottom: 2px; }
.plan-price span { font-size: 15px; font-weight: 600; color: var(--grey-text); }
.plan-card ul { margin: 24px 0 28px; flex-grow: 1; }
.plan-card ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
}
.plan-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.pricing-note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--grey-text);
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px 26px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-border);
  padding: 22px 0;
}
.faq-item h3 { font-size: 17px; margin-bottom: 8px; }
.faq-item p { color: var(--grey-text); font-size: 15px; margin-bottom: 0; }

/* ---------- About page ---------- */
.story-block {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--dark);
}
.story-block p { margin-bottom: 20px; }

.company-line {
  max-width: 620px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--grey-text);
  border-top: 1px solid var(--grey-border);
  padding-top: 28px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}
.contact-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.contact-box h3 { font-size: 20px; margin-bottom: 8px; }
.contact-box p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-method:first-of-type { border-top: none; }
.contact-method .icon { font-size: 20px; }
.contact-method a { font-weight: 600; }
.contact-method a:hover { color: var(--gold); }

.form-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--maroon);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-note {
  text-align: center;
  color: var(--grey-text);
  font-size: 14px;
  margin-top: 32px;
}
.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
}
.form-success.is-visible { display: block; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(160deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; font-size: 17px; }
.final-cta .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.75); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card--featured { transform: none; }
  .module-block { grid-template-columns: 1fr; gap: 28px; }
  .module-block.reverse .module-copy { order: 1; }
  .module-block.reverse .module-shot { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  }
  .site-header.is-open .nav-links a { padding: 10px 0; width: 100%; }
  .site-header.is-open .nav-right .btn { display: inline-flex; margin-top: 8px; }
  .site-header.is-open .nav-right { flex-direction: column; align-items: stretch; }

  .section { padding: 60px 0; }
  .grid--3, .grid--6 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 64px 0 72px; }
  .hero .btn-row, .final-cta .btn-row { flex-direction: column; align-items: stretch; }
  .hero .btn-row .btn, .final-cta .btn-row .btn { width: 100%; }
}
