/* ============================================================
   MARKUP VALLEY — DESIGN SYSTEM
   Brand Colors, Typography, Components
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Primary brand blue — vibrant cobalt */
  --navy:        #1A56DB;
  --navy-dark:   #1245BB;
  --navy-light:  #2E6AF0;
  /* Dark section backgrounds */
  --dark-navy:   #0F2461;
  --dark-navy-2: #091850;
  /* Accent — bright yellow-gold */
  --gold:        #FBBF24;
  --gold-light:  #FDE68A;
  --white:       #FFFFFF;
  --gray-light:  #F5F7FA;
  --gray-mid:    #E2E8F0;
  --gray-text:   #2D3748;
  --gray-muted:  #718096;
  --green:       #38A169;
  --red:         #E53E3E;
  --blue-link:   #1A56DB;
  --wa-green:    #25D366;

  --radius:      8px;
  --shadow:      0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
  --transition:  0.2s ease;
  --max-width:   1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; }
h1 { font-size: 48px; font-weight: 700; line-height: 1.15; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 24px; font-weight: 700; line-height: 1.3; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--gray-light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-dark-navy { background: var(--dark-navy); color: var(--white); }
.section-title { text-align: center; margin-bottom: 12px; color: var(--navy); }
.section-sub   { text-align: center; color: var(--gray-muted); font-size: 18px; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent; color: var(--navy); border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light); color: var(--navy);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--navy);
}
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--dark-navy-2); color: var(--gold);
  padding: 10px 0; overflow: hidden; white-space: nowrap;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
}
.announcement-bar .marquee {
  display: inline-block; animation: marquee 30s linear infinite;
}
.announcement-bar span { margin: 0 32px; }
@keyframes marquee { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── Header / Nav ── */
.site-header {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 0 var(--gray-mid);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px; max-width: var(--max-width); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img.logo-img, img.logo-img { height: 48px !important; width: auto !important; display: block; max-width: 180px; }
/* Fallback text logo if image not available */
.logo-mark {
  width: 44px; height: 44px; background: var(--navy);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--white); letter-spacing: -1px;
  font-family: 'Playfair Display', serif;
}
.logo-text { font-weight: 700; font-size: 17px; color: var(--dark-navy); line-height: 1.2; font-family: 'Playfair Display', serif; letter-spacing: 0.03em; }
.logo-text span { display: block; font-size: 10px; font-weight: 400; color: var(--gray-muted); letter-spacing: 0.08em; font-family: 'Inter', sans-serif; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 6px; font-size: 15px; font-weight: 500;
  color: var(--gray-text); text-decoration: none; transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: var(--gray-light); color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after { content: ' ▾'; font-size: 11px; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
  min-width: 240px; padding: 8px; z-index: 200;
  border: 1px solid var(--gray-mid);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 6px;
  font-size: 14px; color: var(--gray-text); transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--gray-light); color: var(--navy); }
.dropdown-menu .divider { border-top: 1px solid var(--gray-mid); margin: 4px 0; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-portal {
  padding: 8px 16px; border: 1.5px solid var(--gray-mid); border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--gray-text); cursor: pointer;
  background: var(--white); transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-portal:hover { border-color: var(--navy); color: var(--navy); }

/* Mobile Nav */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 2000; padding: 24px; overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-close { font-size: 24px; cursor: pointer; color: var(--gray-text); background: none; border: none; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 18px; font-weight: 500;
  color: var(--gray-text); border-bottom: 1px solid var(--gray-mid);
}
.mobile-nav-cta { margin-top: 32px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 96px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-content {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 20px; margin-bottom: 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.hero-card-title { font-size: 13px; font-weight: 600; color: var(--gray-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.hero-stat { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--gray-mid); }
.hero-stat:last-of-type { border-bottom: none; }
.hero-stat-icon { width: 40px; height: 40px; background: var(--gray-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero-stat-num { font-size: 22px; font-weight: 700; color: var(--dark-navy); line-height: 1; }
.hero-stat-label { font-size: 13px; color: var(--gray-muted); margin-top: 2px; }
.caa-badge {
  position: absolute; top: -28px; right: -28px;
  background: var(--gold); color: var(--navy);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-weight: 700; line-height: 1.25;
  text-transform: uppercase; box-shadow: var(--shadow-md);
}

/* ── Trust Bar ── */
.trust-bar { background: var(--dark-navy); padding: 24px 0; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 32px; border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon { font-size: 20px; }
.trust-item-num { font-size: 22px; font-weight: 800; color: var(--gold); line-height: 1; }
.trust-item-label { font-size: 12px; color: rgba(255,255,255,0.7); text-align: center; font-weight: 500; }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 4px solid var(--navy);
  padding: 32px; transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card h3 { color: var(--navy); margin-bottom: 12px; font-size: 20px; }

/* ── Pricing Cards ── */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border-radius: 12px;
  border: 2px solid var(--gray-mid); padding: 36px 28px;
  display: flex; flex-direction: column; position: relative; transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,168,76,0.2);
}
.pricing-card.featured .pricing-header { background: var(--navy); color: var(--white); margin: -36px -28px 28px; padding: 20px 28px; border-radius: 10px 10px 0 0; }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); padding: 4px 16px;
  border-radius: 100px; font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pricing-label { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.7); }
.pricing-name { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-price { margin: 16px 0; }
.pricing-amount { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-period { font-size: 14px; color: var(--gray-muted); margin-top: 4px; }
.pricing-features { flex: 1; margin: 24px 0; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--gray-light);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .check { color: var(--green); flex-shrink: 0; font-weight: 700; }
.pricing-feature .cross { color: var(--red); flex-shrink: 0; }

/* ── Comparison Table ── */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.comparison-table th {
  background: var(--navy); color: var(--white); padding: 16px 20px;
  text-align: center; font-weight: 600; font-size: 14px;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--gray-mid);
  text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table tr:nth-child(even) td { background: var(--gray-light); }
.comparison-table .mv-col { background: rgba(201,168,76,0.08) !important; font-weight: 700; }
.check-yes { color: var(--green); font-size: 18px; }
.check-no  { color: var(--red);   font-size: 18px; }

/* ── Process Steps ── */
.steps { display: flex; gap: 0; align-items: flex-start; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy)); z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: var(--shadow);
}
.step h4 { color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--gray-muted); }

/* ── Warning / Alert Box ── */
.alert-box {
  border-left: 4px solid var(--red); background: #FFF5F5;
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.alert-box-title { font-weight: 700; color: var(--red); margin-bottom: 4px; font-size: 15px; }
.alert-box p { color: var(--gray-text); font-size: 14px; margin: 0; }
.warning-box {
  border-left: 4px solid var(--gold); background: #FFFBF0;
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0;
}
.info-box {
  border-left: 4px solid var(--blue-link); background: #EBF4FF;
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0;
}
.caa-callout {
  border: 2px solid var(--gold); background: rgba(201,168,76,0.06);
  padding: 24px 28px; border-radius: var(--radius); margin: 32px 0; text-align: center;
}
.caa-callout p { font-size: 18px; font-weight: 600; color: var(--navy); margin: 0; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-mid);
}
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--gray-text); font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold); font-size: 18px;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testimonial-country { font-size: 13px; color: var(--gray-muted); }

/* ── Footer CTA Banner ── */
.cta-banner {
  background: var(--navy); padding: 64px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 32px; }
.cta-banner-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #0F2240; color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 12px; border-radius: 4px; font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 13px;
}
.footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.5); margin-left: 16px; }
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.6); transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa-green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content { position: relative; }
.page-hero h1 { color: var(--white); font-size: 42px; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 620px; margin: 0 auto 24px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Service Feature Cards ── */
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.service-card .price-tag { font-size: 22px; font-weight: 800; color: var(--navy); margin: 12px 0 4px; }
.service-card .timeline { font-size: 12px; color: var(--gray-muted); font-weight: 500; }

/* ── Stats Row ── */
.stats-row { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { padding: 32px 48px; text-align: center; border-right: 1px solid var(--gray-mid); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 14px; color: var(--gray-muted); margin-top: 4px; font-weight: 500; }

/* ── Team Cards ── */
.team-card {
  text-align: center; padding: 28px 20px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--gray-mid);
}
.team-avatar {
  width: 80px; height: 80px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; color: var(--gold);
  margin: 0 auto 16px; border: 3px solid var(--gold);
}
.team-name  { font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.team-title { font-size: 13px; color: var(--gray-muted); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-mid);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--gray-text); background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); }
.form-input.error, .form-select.error { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ── Add-On Table ── */
.addon-table { width: 100%; border-collapse: collapse; }
.addon-table th { background: var(--gray-light); padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; color: var(--gray-text); border-bottom: 2px solid var(--gray-mid); }
.addon-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-mid); font-size: 14px; }
.addon-table tr:hover td { background: var(--gray-light); }
.addon-price { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ── Credential Badges ── */
.credential-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.credential-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1.5px solid var(--gold);
  padding: 10px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--navy);
}
.credential-badge .icon { font-size: 18px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--navy);
}
.faq-question .arrow { font-size: 18px; transition: transform 0.3s; color: var(--gold); }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 15px; color: var(--gray-text); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── Utilities ── */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }
.tag-gold  { background: rgba(201,168,76,0.15); color: #8a6e20; border: 1px solid var(--gold); }
.tag-navy  { background: var(--navy); color: var(--white); }
.tag-green { background: rgba(56,161,105,0.1); color: var(--green); border: 1px solid var(--green); }
.tag-red   { background: rgba(229,62,62,0.1); color: var(--red); border: 1px solid var(--red); }
.divider   { border: none; border-top: 1px solid var(--gray-mid); margin: 40px 0; }

/* ── Partners Section ── */
.partners { background: var(--white); padding: 56px 0; border-top: 1px solid var(--gray-mid); }
.partners-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--gray-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 32px; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.partner-logo {
  height: 36px; width: auto; filter: grayscale(100%); opacity: 0.55;
  transition: filter 0.2s, opacity 0.2s;
}
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }
.partner-logo-text {
  font-size: 20px; font-weight: 700; color: var(--gray-muted); opacity: 0.6;
  transition: opacity 0.2s; font-family: 'Inter', sans-serif;
}
.partner-logo-text:hover { opacity: 1; color: var(--navy); }

/* ── Why Us (Benefits) Section ── */
.why-us { background: var(--gray-light); }
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) { .why-us-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  text-align: center; border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
}
.why-card h3 { font-size: 17px; color: var(--dark-navy); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--gray-muted); margin: 0; }

/* ── Video Testimonials ── */
.video-testimonials { background: var(--navy); }
.video-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.2s;
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative; padding-bottom: 56.25%; background: var(--dark-navy);
}
.video-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-card-info { padding: 16px; }
.video-card-info h4 { color: var(--white); font-size: 15px; margin-bottom: 2px; }
.video-card-info p  { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .main-nav, .nav-actions .btn-portal { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .pricing-cards { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 24px; }
  .steps::before { display: none; }
  .trust-items { gap: 0; }
  .trust-item { padding: 12px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 50%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item { padding: 20px 24px; width: 50%; border-right: none; border-bottom: 1px solid var(--gray-mid); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .whatsapp-float { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 28px; }
  .trust-item { width: 100%; }
}
