/* ============================================================
   FitCore — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #FF6B2B;
  --orange-dark:  #E55A1C;
  --orange-light: #FFF0E8;
  --teal:         #00B4A0;
  --teal-dark:    #008F7E;
  --teal-light:   #E0F7F5;
  --navy:         #0A0E1A;
  --navy-2:       #141929;
  --navy-3:       #1C2438;
  --dark:         #111827;
  --text:         #1F2937;
  --muted:        #6B7280;
  --light:        #F9FAFB;
  --light-2:      #F3F4F6;
  --border:       #E5E7EB;
  --white:        #FFFFFF;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.14);
  --shadow-card:  0 2px 12px rgba(0,0,0,0.06);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 800; color: var(--dark); }
h1 { font-size: clamp(32px, 5vw, 60px); }
h2 { font-size: clamp(26px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 18px; }
h5 { font-size: 15px; }
p  { color: var(--muted); line-height: 1.75; }

/* ── LAYOUT ── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.gap-lg { gap: 64px; }

.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-muted  { color: var(--muted) !important; }
.text-orange { color: var(--orange) !important; }
.text-teal   { color: var(--teal) !important; }

/* ── SECTION HEADERS ── */
.section-header         { margin-bottom: 56px; }
.section-header.center  { text-align: center; }
.section-header.center p { max-width: 600px; margin: 14px auto 0; font-size: 17px; }
.section-header p        { font-size: 17px; margin-top: 14px; max-width: 600px; }

/* ── TAGS / LABELS ── */
.tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--orange); background: var(--orange-light); padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.tag-teal   { color: var(--teal);   background: var(--teal-light); }
.tag-navy   { color: #fff;          background: rgba(255,255,255,0.12); }
.tag-green  { color: #166534;       background: #DCFCE7; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; border: 2px solid transparent; font-family: inherit; white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,43,0.32); }
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-3); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: #f0f0f0; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.badge-green  { background: #DCFCE7; color: #166534; }
.badge-orange { background: var(--orange-light); color: #9A3412; }
.badge-blue   { background: #DBEAFE; color: #1E40AF; }
.badge-teal   { background: var(--teal-light); color: var(--teal-dark); }
.badge-gray   { background: var(--light-2); color: #374151; }
.badge-red    { background: #FEE2E2; color: #991B1B; }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.card-hover { transition: all 0.25s; }
.card-hover:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-dark { background: var(--navy-3); border-color: rgba(255,255,255,0.08); }

/* ── FEATURE ICONS ── */
.f-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; margin-bottom: 16px; }
.f-icon-sm { width: 40px; height: 40px; border-radius: 10px; font-size: 18px; margin-bottom: 0; }
.fi-orange { background: var(--orange-light); }
.fi-teal   { background: var(--teal-light); }
.fi-blue   { background: #EFF6FF; }
.fi-green  { background: #F0FDF4; }
.fi-purple { background: #F5F3FF; }
.fi-yellow { background: #FFFBEB; }
.fi-red    { background: #FFF1F2; }
.fi-pink   { background: #FDF2F8; }

/* ── FEATURE CARD ── */
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.25s; }
.feature-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; line-height: 1.7; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); }
.check-list li::before { content: ''; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-light); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2300B4A0' d='M16.7 5.3l-8 8-4-4 1.4-1.4 2.6 2.6 6.6-6.6z'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; flex-shrink: 0; margin-top: 1px; }
.check-list.white li { color: rgba(255,255,255,0.8); }
.check-list.white li::before { background-color: rgba(0,180,160,0.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2300D4A0' d='M16.7 5.3l-8 8-4-4 1.4-1.4 2.6 2.6 6.6-6.6z'/%3E%3C/svg%3E"); }

/* ── FEATURE ROW (2-col split) ── */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feat-row.reverse { direction: rtl; }
.feat-row.reverse > * { direction: ltr; }
.feat-row-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.feat-row-list li { display: flex; align-items: flex-start; gap: 16px; }
.feat-row-list li .fi { width: 38px; height: 38px; border-radius: 10px; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-row-list li strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 3px; font-weight: 700; }
.feat-row-list li span   { font-size: 13.5px; color: var(--muted); }

/* ── VISUAL PANEL (mock UI) ── */
.visual-panel { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.visual-panel.dark { background: var(--navy-2); border-color: rgba(255,255,255,0.07); }
.mock-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.mock-card.dark-inner { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.mock-card h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 10px; }
.mock-card h5.dark-label { color: rgba(255,255,255,0.4); }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--light-2); font-size: 13px; color: var(--text); }
.mock-row:last-child { border-bottom: none; }
.mock-row.dark-row { border-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.75); }
.mock-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mock-stat { padding: 12px; border-radius: 8px; text-align: center; background: var(--navy); }
.mock-stat strong { display: block; font-size: 22px; font-weight: 900; color: var(--orange); line-height: 1; }
.mock-stat span   { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 4px; display: block; }
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-top: 8px; }
.progress-fill { height: 100%; border-radius: 3px; }

/* ── NAV ── */
.site-nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.logo { font-size: 21px; font-weight: 900; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.logo-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--muted); padding: 7px 12px; border-radius: 8px; transition: all 0.18s; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); background: var(--light); }
.nav-links a.active { font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px 24px; z-index: 199; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.mobile-nav.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; padding: 12px 16px; border-radius: 8px; transition: background 0.15s; }
.mobile-nav a:hover { background: var(--light); }
.mobile-nav a.active { color: var(--orange); font-weight: 700; }
.mobile-nav .mobile-cta { margin-top: 12px; border-top: 1px solid var(--border); padding-top: 16px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, transparent 65%); pointer-events: none; }
.page-hero::after  { content: ''; position: absolute; bottom: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(0,180,160,0.08) 0%, transparent 65%); pointer-events: none; }
.page-hero .tag   { margin-bottom: 20px; }
.page-hero h1     { color: #fff; margin-bottom: 18px; position: relative; z-index: 1; }
.page-hero p      { color: rgba(255,255,255,0.58); font-size: 18px; max-width: 640px; margin: 0 auto 36px; position: relative; z-index: 1; }
.page-hero-btns   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.breadcrumb       { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }
.breadcrumb a     { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb span  { font-size: 13px; color: rgba(255,255,255,0.25); }
.breadcrumb strong { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ── HOME HERO ── */
.home-hero { background: var(--navy); padding: 80px 0 0; overflow: hidden; position: relative; }
.home-hero::before { content: ''; position: absolute; top: -200px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, transparent 68%); pointer-events: none; }
.home-hero::after  { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,180,160,0.07) 0%, transparent 68%); pointer-events: none; }
.home-hero-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
.hero-left    { padding-bottom: 80px; }
.hero-badge   { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 100px; padding: 6px 16px; margin-bottom: 28px; }
.hero-badge .dot { width: 8px; height: 8px; background: #00D4A0; border-radius: 50%; animation: blink 2s infinite; }
.hero-badge span  { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.3)} }
.home-hero h1      { color: #fff; margin-bottom: 18px; }
.home-hero h1 span { color: var(--orange); }
.hero-sub  { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 34px; }
.hero-cta  { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.09); margin-top: 36px; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 900; color: #fff; }
.hero-stat span   { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── DEMO FORM ── */
.demo-card { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 24px 72px rgba(0,0,0,0.28); }
.demo-card h3 { font-size: 21px; color: var(--dark); margin-bottom: 6px; }
.demo-card > p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 13px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--text); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,43,0.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 14px; background: var(--orange); color: #fff; border: none; border-radius: 9px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,43,0.32); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success .success-icon { font-size: 52px; margin-bottom: 14px; }
.form-success h4 { font-size: 20px; color: var(--teal); margin-bottom: 8px; }
.form-success p { font-size: 14px; }
.form-success-icon { width: 68px; height: 68px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--teal); }
.contact-form-panel .form-success { padding: 48px 24px; }
.contact-form-panel .form-success h3 { font-size: 22px; margin-bottom: 10px; color: var(--dark); }
.contact-form-panel .form-success > p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.form-success-next { background: var(--light); border-radius: var(--radius); padding: 20px 24px; text-align: left; margin-bottom: 28px; }
.form-success-next-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.form-success-next ol { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-success-next li { font-size: 13.5px; color: var(--muted); }
.city-pill { padding: 8px 20px; background: var(--light); border: 1px solid var(--border); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--text); }

/* ── TRUST BAR ── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--light); padding: 28px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-label { font-size: 12.5px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.trust-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
.trust-icon  { font-size: 20px; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy-2); padding: 56px 0; }
.stats-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font-size: 48px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-item p  { font-size: 14px; color: rgba(255,255,255,0.45); }
.stat-item.teal strong { color: var(--teal); }
.stat-item.white strong { color: #fff; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--teal)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: #fff; margin: 0 auto 20px; border: 4px solid #fff; box-shadow: 0 0 0 4px rgba(255,107,43,0.18), var(--shadow); }
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p  { font-size: 13.5px; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.testimonial-card .stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; color: var(--dark); font-weight: 700; }
.author-info span   { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 19px 22px; background: transparent; cursor: pointer; font-size: 15.5px; font-weight: 600; color: var(--dark); text-align: left; border: none; font-family: inherit; gap: 12px; }
.faq-btn .faq-icon { width: 28px; height: 28px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--muted); transition: all 0.3s; line-height: 1; }
.faq-item.open .faq-btn { color: var(--orange); }
.faq-item.open .faq-icon { background: var(--orange-light); color: var(--orange); transform: rotate(45deg); }
.faq-body { display: none; padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.78; }
.faq-item.open .faq-body { display: block; }

/* ── NOTIFICATION CARDS ── */
.notif-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; display: flex; align-items: flex-start; gap: 14px; box-shadow: var(--shadow-card); }
.notif-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.notif-card h5 { font-size: 14px; color: var(--dark); margin-bottom: 4px; font-weight: 700; }
.notif-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
.pricing-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; position: relative; transition: all 0.25s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--orange); background: var(--navy); }
.pricing-card.featured h3,
.pricing-card.featured .price-amount { color: #fff; }
.pricing-card.featured p { color: rgba(255,255,255,0.55); }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }
.price-amount { font-size: 48px; font-weight: 900; color: var(--dark); line-height: 1; }
.price-amount sup { font-size: 24px; font-weight: 700; vertical-align: super; }
.price-period { font-size: 14px; color: var(--muted); margin-top: 4px; }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.price-feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.price-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.price-feature-list li.disabled { color: var(--muted); }
.price-feature-list li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.price-feature-list li.disabled::before { content: '–'; background: var(--light-2); color: var(--muted); }
.pricing-card.featured .price-feature-list li { color: rgba(255,255,255,0.8); }
.pricing-card.featured .price-feature-list li::before { background: rgba(0,180,160,0.2); color: #00D4A0; }
.pricing-card.featured .price-feature-list li.disabled { color: rgba(255,255,255,0.35); }

/* ── ABOUT / TEAM ── */
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow-card); transition: all 0.25s; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; color: #fff; margin: 0 auto 16px; }
.team-card h4 { font-size: 17px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: 13px; }

/* ── VALUES ── */
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.value-num { font-size: 40px; font-weight: 900; color: var(--orange); opacity: 0.2; line-height: 1; margin-bottom: 14px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }

/* ── CONTACT ── */
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.contact-info-card h4 { font-size: 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--light-2); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 14px; color: var(--muted); text-decoration: none; }
.contact-item a:hover { color: var(--orange); }

/* ── CTA SECTION ── */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, #FF9060 100%); border-radius: var(--radius-xl); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; position: relative; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.cta-section { background: linear-gradient(135deg, var(--orange) 0%, #FF9060 100%); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-section h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; position: relative; }
.cta-section .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-footnote { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 18px; position: relative; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .logo { color: #fff; margin-bottom: 14px; display: inline-flex; }
.footer-brand .tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 270px; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.footer-contacts a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contacts a:hover { color: var(--orange); }
.footer-col h5 { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.social-link:hover { background: var(--orange); color: #fff; }
.app-badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.app-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 9px 15px; text-decoration: none; color: #fff; transition: all 0.22s; min-width: 148px; }
.app-badge:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }
.app-badge svg { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.9; }
.app-badge-text { display: flex; flex-direction: column; line-height: 1; }
.app-badge-text span { font-size: 9.5px; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.app-badge-text strong { font-size: 13.5px; font-weight: 700; }

/* ── BG VARIANTS ── */
.bg-white   { background: var(--white); }
.bg-light   { background: var(--light); }
.bg-navy    { background: var(--navy); }
.bg-navy-2  { background: var(--navy-2); }
.bg-dark    { background: var(--dark); }
.bg-orange  { background: var(--orange); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── LEGAL PAGES (Privacy / Terms) ── */
.page-hero__title { color: #fff; font-size: clamp(32px,5vw,52px); font-weight: 900; margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero__meta  { font-size: 14px; color: rgba(255,255,255,0.42); position: relative; z-index: 1; }
.page-hero--dark  {}

.breadcrumb-list  { display: flex; align-items: center; gap: 8px; list-style: none; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }
.breadcrumb-item  { font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb-item a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb-item a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb-item--active { color: rgba(255,255,255,0.7); font-weight: 500; }
.breadcrumb-separator { font-size: 13px; color: rgba(255,255,255,0.22); }

.legal-summary-card  { display: flex; gap: 20px; align-items: flex-start; background: var(--light); border: 1px solid var(--border); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 28px 28px 28px 24px; margin-bottom: 48px; }
.legal-summary-icon  { font-size: 32px; line-height: 1; flex-shrink: 0; }
.legal-summary-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.legal-summary-text  { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

.legal-content { max-width: 760px; margin: 0 auto; }

.legal-section { margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.legal-section--last { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.legal-section__heading { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 18px; display: flex; align-items: baseline; gap: 10px; }
.legal-section__num { color: var(--orange); font-weight: 900; }
.legal-subsection__heading { font-size: 16px; font-weight: 700; color: var(--dark); margin: 24px 0 10px; }

.legal-section p  { font-size: 15.5px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }

.legal-list { list-style: none; margin: 12px 0 16px 0; display: flex; flex-direction: column; gap: 9px; }
.legal-list li { font-size: 15px; color: var(--muted); line-height: 1.7; padding-left: 20px; position: relative; }
.legal-list li::before { content: '–'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.legal-list li strong { color: var(--dark); font-weight: 600; }
.legal-section a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(255,107,43,0.3); transition: border-color 0.2s; }
.legal-section a:hover { border-bottom-color: var(--orange); }

.legal-highlight { padding: 16px 20px; border-radius: var(--radius-sm); margin: 18px 0; font-size: 15px; line-height: 1.7; }
.legal-highlight--positive { background: #E8F7F0; border-left: 4px solid #00B4A0; color: #0a5a44; }
.legal-highlight--warning  { background: #FFF4EC; border-left: 4px solid var(--orange); color: #7a3010; }
.legal-highlight--neutral  { background: var(--light); border-left: 4px solid var(--border); color: var(--muted); }

.legal-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.legal-contact-item { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; }
.legal-contact-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 6px; }
.legal-contact-value { font-size: 15px; font-weight: 600; color: var(--dark); text-decoration: none; border-bottom: none !important; }
.legal-contact-value:hover { color: var(--orange) !important; }

.legal-cta-section { background: var(--light); }
.legal-cta-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow); }
.legal-cta-icon  { font-size: 40px; margin-bottom: 18px; }
.legal-cta-title { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.legal-cta-text  { font-size: 16px; color: var(--muted); margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }

@media (max-width: 640px) {
  .legal-contact-grid { grid-template-columns: 1fr; }
  .legal-summary-card { flex-direction: column; gap: 12px; }
  .legal-cta-card { padding: 40px 24px; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:none; } }
.fade-up { animation: fadeUp 0.6s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 72px 0; }
  h1 { font-size: clamp(28px,7vw,40px); }
  h2 { font-size: clamp(24px,6vw,32px); }
  .grid-2, .feat-row, .feat-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .features-overview-grid { grid-template-columns: 1fr 1fr; }
  .home-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-left { padding-bottom: 0; }
  .hero-stats { gap: 16px; }
  .home-hero { padding: 56px 0 0; }
  .page-hero { padding: 56px 0 48px; }
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cta-banner { padding: 48px 28px; border-radius: var(--radius-lg); }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr) !important; }
  .section-header.center p { font-size: 15px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .features-overview-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr !important; }
  .hero-cta { flex-direction: column; }
  .page-hero-btns { flex-direction: column; align-items: center; }
  .cta-banner .btn-row { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT & PRICING PAGE — SUPPLEMENTAL STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Utilities ── */
.bg-dark-alt    { background: var(--light); }
.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.section-tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--orange); background: var(--orange-light); padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-title { font-size: clamp(26px,4vw,40px); line-height: 1.2; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section-sub   { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }

/* ── Billing toggle ── */
.billing-toggle-section { background: var(--light); border-bottom: 1px solid var(--border); }
.billing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 22px 0; }
.toggle-label { font-size: 15px; font-weight: 600; color: var(--dark); }
.toggle-switch { position: relative; width: 48px; height: 26px; display: inline-block; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: #D1D5DB; border-radius: 100px; transition: 0.28s; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 4px; bottom: 4px; background: #fff; border-radius: 50%; transition: 0.28s; box-shadow: 0 1px 3px rgba(0,0,0,0.18); }
.toggle-switch input:checked + .toggle-slider { background: var(--orange); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.save-badge { background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 100px; margin-left: 5px; letter-spacing: 0.3px; vertical-align: middle; }

/* ── Currency Selector ── */
.currency-selector-wrap { display:flex; justify-content:center; margin-bottom:36px; }
.currency-selector { display:inline-flex; align-items:center; gap:10px; background:#fff; border:1.5px solid var(--border); border-radius:100px; padding:5px 6px 5px 18px; box-shadow:0 2px 14px rgba(0,0,0,0.07); }
.currency-label { font-size:12px; font-weight:600; color:var(--muted); white-space:nowrap; letter-spacing:0.3px; text-transform:uppercase; }
.currency-btns { display:flex; gap:3px; }
.currency-btn { background:none; border:none; padding:6px 14px; border-radius:100px; font-family:inherit; font-size:13px; font-weight:700; color:var(--muted); cursor:pointer; transition:background 0.18s,color 0.18s; line-height:1; }
.currency-btn:hover { background:var(--light); color:var(--dark); }
.currency-btn.active { background:var(--orange); color:#fff; }
@media (max-width:540px) {
  .currency-selector { flex-wrap:wrap; justify-content:center; border-radius:var(--radius); padding:10px 14px; gap:8px; }
  .currency-label { width:100%; text-align:center; }
  .currency-btns { flex-wrap:wrap; justify-content:center; }
}

/* ── Pricing card components ── */
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 18px; border-radius: 100px; white-space: nowrap; letter-spacing: 0.8px; text-transform: uppercase; z-index: 1; }
.plan-name { font-size: 22px; font-weight: 900; color: var(--dark); display: block; margin-bottom: 5px; letter-spacing: -0.3px; }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; display: block; }
.price-billed { font-size: 12px; color: var(--muted); display: block; margin-top: 3px; }
.pricing-divider { height: 1px; background: var(--border); margin: 22px 0; }
.pricing-card-featured { border-color: var(--orange) !important; background: var(--navy) !important; }
.pricing-card-featured .plan-name { color: #fff; }
.pricing-card-featured .plan-desc { color: rgba(255,255,255,0.5); }
.pricing-card-featured .price-amount { color: var(--orange); }
.pricing-card-featured .price-period { color: rgba(255,255,255,0.45); }
.pricing-card-featured .price-billed { color: rgba(255,255,255,0.35); }
.pricing-card-featured .pricing-divider { background: rgba(255,255,255,0.1); }
.price-custom { font-size: 40px !important; }
.btn-block { width: 100%; justify-content: center; }

/* ── Pricing feature list ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-yes, .feature-no { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
.feature-yes { color: var(--text); }
.feature-no  { color: var(--muted); }
.feature-yes::before { content: ''; display: block; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: var(--teal-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2300B4A0' d='M16.7 5.3l-8 8-4-4 1.4-1.4 2.6 2.6 6.6-6.6z'/%3E%3C/svg%3E") center/10px no-repeat; margin-top: 2px; }
.feature-no::before  { content: '–'; display: block; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: var(--light-2); color: var(--muted); font-size: 12px; font-weight: 700; text-align: center; line-height: 18px; margin-top: 2px; }
.pricing-card-featured .feature-yes { color: rgba(255,255,255,0.85); }
.pricing-card-featured .feature-no  { color: rgba(255,255,255,0.3); }
.pricing-card-featured .feature-yes::before { background-color: rgba(0,180,160,0.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2300D4B0' d='M16.7 5.3l-8 8-4-4 1.4-1.4 2.6 2.6 6.6-6.6z'/%3E%3C/svg%3E"); }

/* ── Included grid (dark section) ── */
.included-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.included-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all 0.25s; }
.included-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,107,43,0.35); }
.included-icon { width: 52px; height: 52px; border-radius: 13px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.ii-orange { background: rgba(255,107,43,0.18); }
.ii-teal   { background: rgba(0,180,160,0.18); }
.ii-blue   { background: rgba(99,102,241,0.18); }
.ii-green  { background: rgba(34,197,94,0.15); }
.ii-purple { background: rgba(168,85,247,0.18); }
.ii-yellow { background: rgba(234,179,8,0.18); }
.included-item h4 { font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 6px; font-weight: 700; }
.included-item p  { font-size: 13px; color: rgba(255,255,255,0.42); }

/* ── Comparison table ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comparison-table thead th { padding: 16px 20px; text-align: center; font-size: 14px; font-weight: 700; color: var(--dark); border-bottom: 2px solid var(--border); background: var(--light); }
.comparison-table thead th:first-child { text-align: left; width: 38%; }
.comparison-table th.col-featured { background: var(--orange-light); color: var(--orange); }
.comparison-table td { padding: 13px 20px; border-bottom: 1px solid var(--light-2); font-size: 14px; color: var(--text); text-align: center; vertical-align: middle; }
.comparison-table td:first-child { text-align: left; }
.comparison-table td.col-featured { background: rgba(255,107,43,0.03); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr.table-category td { background: var(--light); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); padding: 10px 20px; border-top: 1px solid var(--border); }
.comparison-table tr.table-category td.col-featured { background: rgba(255,107,43,0.06); color: var(--orange); }
.check-yes { color: var(--teal); font-size: 16px; font-weight: 800; display: block; }
.check-no  { color: #D1D5DB; font-size: 16px; display: block; }

/* ── FAQ aliases (existing JS uses .faq-btn / .faq-body) ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

/* ── Contact page layout ── */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 64px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.contact-form-panel { background: #fff; padding: 52px 48px; }
.contact-form-panel h2 { font-size: 26px; margin-bottom: 6px; }
.contact-form-panel > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.contact-side-panel { background: var(--navy); padding: 52px 36px; display: flex; flex-direction: column; }
.contact-side-panel > h3 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.side-sub { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 36px !important; }
.c-contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.c-contact-item:last-of-type { border-bottom: none; }
.c-contact-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.cci-orange { background: rgba(255,107,43,0.18); }
.cci-teal   { background: rgba(0,180,160,0.18); }
.cci-green  { background: rgba(34,197,94,0.15); }
.cci-blue   { background: rgba(99,102,241,0.15); }
.c-contact-body strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.c-contact-body a { font-size: 15px; color: rgba(255,255,255,0.8); text-decoration: none; display: block; margin-bottom: 2px; transition: color 0.2s; }
.c-contact-body a:hover { color: var(--orange); }
.c-contact-body .c-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 3px; display: block; }
.c-contact-body p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; }
.contact-trust { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-trust p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 0; }

/* ── Why Demo cards ── */
.why-demo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-demo-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all 0.25s; }
.why-demo-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-demo-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.wdi-orange { background: var(--orange-light); }
.wdi-teal   { background: var(--teal-light); }
.wdi-blue   { background: #EFF6FF; }
.why-demo-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-demo-card p  { font-size: 14.5px; }

/* ── Expect steps (4 column) ── */
.expect-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.expect-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.expect-num  { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 18px; }
.expect-card h3 { font-size: 16px; margin-bottom: 8px; }
.expect-card p  { font-size: 14px; }

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .contact-layout  { grid-template-columns: 1fr; }
  .contact-side-panel { order: -1; padding: 36px 32px; }
  .included-grid   { grid-template-columns: repeat(2,1fr); }
  .why-demo-grid   { grid-template-columns: 1fr 1fr; }
  .expect-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .why-demo-grid   { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .included-grid   { grid-template-columns: 1fr; }
  .expect-grid     { grid-template-columns: 1fr; }
}
