/* ============================================================
   Veriona Brand Stylesheet
   Palette: terracotta #C4857A | linen #FAF7F4 | charcoal #2C2320 | sage #8FAE8B
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --terracotta:      #C4857A;
  --terracotta-dark: #A8645A;
  --terracotta-light:#E8C4BA;
  --terracotta-bg:   rgba(196, 133, 122, 0.08);
  --linen:           #FAF7F4;
  --charcoal:        #2C2320;
  --charcoal-light:  #3A3633;
  --sage:            #8FAE8B;
  --sage-dark:       #6B8B66;
  --muted:           #8A7F79;
  --muted-light:     #A89F98;
  --white:           #FFFFFF;

  --shadow-sm:  0 1px 3px rgba(44,35,32,0.06);
  --shadow-md:  0 4px 12px rgba(44,35,32,0.10);
  --shadow-lg:  0 10px 25px rgba(44,35,32,0.13);
  --shadow-xl:  0 20px 40px rgba(44,35,32,0.16);
  --radius:     12px;
  --radius-lg:  20px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--linen);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--charcoal);
  line-height: 1.2;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-secondary:hover {
  background: var(--terracotta-bg);
  color: var(--terracotta-dark);
}

.btn-white {
  background: var(--white);
  color: var(--terracotta);
}
.btn-white:hover {
  background: var(--linen);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--terracotta-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: rgba(138,127,121,0.3);
}
.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--charcoal);
  background: rgba(138,127,121,0.05);
}

/* ── Navigation ───────────────────────────────────────────── */
nav {
  background: rgba(250,247,244,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,133,122,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
nav .nav-logo:hover { text-decoration: none; }
nav .nav-logo img,
nav .nav-logo .logo-img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
nav .nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
nav ul a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--charcoal); text-decoration: none; }
nav ul a.nav-cta {
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.88rem;
}
nav ul a.nav-cta:hover {
  background: var(--terracotta-dark);
  color: var(--white);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--linen) 0%, #F0EAE5 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,133,122,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted-light);
}

/* ── Sections ──────────────────────────────────────────────── */
section { padding: 80px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-heading {
  font-size: 2.2rem;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.section-body p + p { margin-top: 12px; }

/* ── Steps ─────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(196,133,122,0.18);
  text-align: center;
  transition: all 0.25s ease;
}
.step-card:hover {
  border-color: rgba(196,133,122,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--terracotta-bg);
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ── Testimonials ──────────────────────────────────────────── */
#testimonials { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(196,133,122,0.15);
}
.testimonial .stars { color: #D4A017; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { color: var(--charcoal-light); font-size: 0.9rem; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testimonial .author { font-weight: 600; color: var(--muted); font-size: 0.82rem; font-style: normal; }

/* ── FAQ ───────────────────────────────────────────────────── */
#faq { background: var(--linen); }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(196,133,122,0.18);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--terracotta-bg); }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--terracotta); transition: transform 0.25s; font-family: monospace; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 18px; color: var(--muted); font-size: 0.92rem; line-height: 1.8; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── Stat cards ────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(196,133,122,0.15);
}
.stat .number { font-size: 1.7rem; font-weight: 700; color: var(--terracotta); font-family: 'Playfair Display', serif; }
.stat .label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ── Info / callout boxes ──────────────────────────────────── */
.info-box {
  background: rgba(143,174,139,0.12);
  border: 1px solid rgba(143,174,139,0.3);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin-top: 20px;
}
.info-box p { font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.7; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 28px; }
.cta-section .btn-white { color: var(--terracotta); }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(250,247,244,0.45);
  padding: 56px 0 36px;
  font-size: 0.86rem;
}
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
footer h4 { color: rgba(250,247,244,0.8); font-size: 0.82rem; font-weight: 600; margin-bottom: 14px; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul a { color: rgba(250,247,244,0.45); transition: color 0.2s; }
footer ul a:hover { color: rgba(250,247,244,0.85); text-decoration: none; }
footer .brand-col p { line-height: 1.75; color: rgba(250,247,244,0.38); }
footer .brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 14px;
  text-decoration: none;
}
footer .brand-col .footer-logo:hover { text-decoration: none; }
footer .brand-col .footer-logo img { height: 32px; width: auto; }
footer .brand-col .footer-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(250,247,244,0.75);
}
footer .bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(250,247,244,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
footer .bottom p { color: rgba(250,247,244,0.28); }
footer .bottom a { color: rgba(250,247,244,0.28); }
footer .bottom a:hover { color: rgba(250,247,244,0.6); text-decoration: none; }

/* ── Pricing cards ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(196,133,122,0.18);
}
.pricing-card.featured {
  background: rgba(196,133,122,0.06);
  border-color: var(--terracotta);
}
.pricing-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.pricing-card .price { font-size: 1.9rem; font-weight: 700; color: var(--terracotta); font-family: 'Playfair Display', serif; margin-bottom: 2px; }
.pricing-card .price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.pricing-card ul { list-style: none; }
.pricing-card ul li { font-size: 0.88rem; color: var(--muted); padding: 5px 0; display: flex; gap: 8px; align-items: flex-start; }
.pricing-card ul li::before { content: '✓'; color: var(--terracotta); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--linen) 0%, #F0EAE5 100%);
  padding: 64px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(196,133,122,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--charcoal); font-size: 2.4rem; margin-bottom: 14px; letter-spacing: -0.02em; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Content sections ─────────────────────────────────────── */
.content-section { padding: 64px 0; }
.content-section.alt-bg { background: var(--white); }
.quote-block {
  background: var(--white);
  border-left: 4px solid var(--terracotta);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 20px;
}
.quote-block cite { display: block; margin-top: 10px; font-size: 0.82rem; font-style: normal; font-weight: 600; color: var(--charcoal); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav ul { gap: 14px; }
  nav ul li:not(:last-child) { display: none; }
  .hero { padding: 60px 0 70px; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  footer .bottom { flex-direction: column; text-align: center; }
}