/* ============================================================
   AgentQuick.ai — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600&display=swap');

/* ── Reset & Base ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'DM Sans',sans-serif;background:#F7F9FC;color:#0A2540;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font-family:inherit}
ul{list-style:none}
::selection{background:#EEF4FF;color:#1366F5}
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#F7F9FC}
::-webkit-scrollbar-thumb{background:#E2E8F0;border-radius:3px}

/* ── CSS Variables ── */
:root{
  --navy:#0A2540;
  --blue:#1366F5;
  --blue-light:#EEF4FF;
  --gold:#F6A623;
  --gold-light:#FFF8EC;
  --green:#10B981;
  --green-light:#ECFDF5;
  --purple:#7C3AED;
  --purple-light:#F3F0FF;
  --red:#DC2626;
  --red-light:#FEF2F2;
  --cyan:#0891B2;
  --cyan-light:#ECFEFF;
  --bg:#F7F9FC;
  --surface:#FFFFFF;
  --border:#E2E8F0;
  --text:#0A2540;
  --text-sub:#546E7A;
  --text-muted:#94A3B8;
  --font-display:'Sora',sans-serif;
  --font-body:'DM Sans',sans-serif;
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:16px;
  --radius-xl:24px;
  --shadow-sm:0 1px 4px rgba(10,37,64,0.06);
  --shadow-md:0 4px 16px rgba(10,37,64,0.10);
  --shadow-lg:0 8px 32px rgba(10,37,64,0.12);
  --transition:all 0.2s ease;
}

/* ── Typography ── */
h1,h2,h3,h4,h5{font-family:var(--font-display);color:var(--navy);line-height:1.2}
h1{font-size:clamp(32px,5vw,54px);font-weight:800;line-height:1.15}
h2{font-size:clamp(24px,3.5vw,38px);font-weight:700}
h3{font-size:20px;font-weight:600}
h4{font-size:16px;font-weight:600}
p{line-height:1.7;color:var(--text-sub)}
.text-lead{font-size:18px;color:var(--text-sub)}
.text-sm{font-size:14px}
.text-xs{font-size:12px}
.font-display{font-family:var(--font-display)}
.font-600{font-weight:600}
.font-700{font-weight:700}
.font-800{font-weight:800}
.text-navy{color:var(--navy)}
.text-blue{color:var(--blue)}
.text-muted{color:var(--text-muted)}
.text-sub{color:var(--text-sub)}
.text-center{text-align:center}
.text-white{color:#fff}

/* ── Layout ── */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.container-sm{max-width:800px;margin:0 auto;padding:0 24px}
.container-md{max-width:1000px;margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.section-sm{padding:48px 0}
.section-lg{padding:100px 0}

/* Grid helpers */
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-5{grid-template-columns:repeat(5,1fr)}
.grid-7{grid-template-columns:repeat(7,1fr)}
.grid-half{grid-template-columns:1fr 1fr;align-items:center}
.gap-12{gap:12px}
.gap-16{gap:16px}
.gap-20{gap:20px}
.gap-32{gap:32px}
.gap-48{gap:48px}
.gap-60{gap:60px}

/* Flex helpers */
.flex{display:flex}
.flex-center{display:flex;align-items:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}
.flex-wrap{flex-wrap:wrap}
.gap-8{gap:8px}
.gap-10{gap:10px}

/* Spacing */
.mt-4{margin-top:4px}.mt-8{margin-top:8px}.mt-12{margin-top:12px}
.mt-16{margin-top:16px}.mt-20{margin-top:20px}.mt-24{margin-top:24px}
.mt-32{margin-top:32px}.mt-40{margin-top:40px}.mt-48{margin-top:48px}
.mt-56{margin-top:56px}.mt-64{margin-top:64px}
.mb-4{margin-bottom:4px}.mb-8{margin-bottom:8px}.mb-12{margin-bottom:12px}
.mb-16{margin-bottom:16px}.mb-20{margin-bottom:20px}.mb-24{margin-bottom:24px}
.mb-32{margin-bottom:32px}.mb-40{margin-bottom:40px}.mb-48{margin-bottom:48px}

/* ── Components ── */

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:6px;font-family:var(--font-body);font-weight:600;
  border-radius:8px;border:none;cursor:pointer;transition:var(--transition);text-decoration:none;
  font-size:15px;padding:12px 24px;line-height:1}
.btn-sm{font-size:13px;padding:8px 16px}
.btn-primary{background:var(--blue);color:#fff}
.btn-primary:hover{background:#0F56D8;transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-outline{background:transparent;color:var(--blue);border:1.5px solid var(--blue)}
.btn-outline:hover{background:var(--blue-light);transform:translateY(-1px)}
.btn-outline-white{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,0.5)}
.btn-outline-white:hover{background:rgba(255,255,255,0.1)}
.btn-gold{background:var(--gold);color:#fff}
.btn-gold:hover{background:#E09620;transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--text-sub)}
.btn-ghost:hover{background:var(--bg)}
.btn-block{width:100%;justify-content:center}

/* Cards */
.card{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);
  padding:28px;box-shadow:var(--shadow-sm);transition:var(--transition)}
.card:hover.card-hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.card-sm{padding:20px}
.card-xl{padding:40px}
.card-bordered-blue{border-top:4px solid var(--blue)}
.card-bordered-gold{border-top:4px solid var(--gold)}
.card-featured{border:2px solid var(--blue);position:relative}

/* Badges */
.badge{display:inline-block;font-size:11px;font-weight:600;padding:3px 10px;border-radius:20px;
  letter-spacing:0.04em;text-transform:uppercase;font-family:var(--font-body)}
.badge-blue{color:var(--blue);background:var(--blue-light)}
.badge-gold{color:#B8770A;background:var(--gold-light)}
.badge-green{color:#059669;background:var(--green-light)}
.badge-navy{color:#fff;background:var(--navy)}
.badge-popular{background:var(--blue);color:#fff;font-size:11px;font-weight:700;padding:4px 14px;
  border-radius:20px;letter-spacing:0.06em;text-transform:uppercase;position:absolute;
  top:-13px;left:50%;transform:translateX(-50%);white-space:nowrap}

/* Section Tag */
.section-tag{display:flex;align-items:center;gap:8px;margin-bottom:12px}
.section-tag::before{content:'';display:block;width:24px;height:2px;background:var(--blue);border-radius:2px}
.section-tag span{font-family:var(--font-body);font-size:12px;font-weight:600;color:var(--blue);
  letter-spacing:0.08em;text-transform:uppercase}
.section-tag-center{justify-content:center}

/* Check Items */
.check-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:8px}
.check-icon{width:20px;height:20px;border-radius:50%;display:flex;align-items:center;
  justify-content:center;flex-shrink:0;margin-top:2px}
.check-icon-green{background:#ECFDF520;background-color:rgba(16,185,129,0.12)}
.check-icon svg{width:11px;height:11px}
.check-label{font-size:15px;color:var(--text);line-height:1.5}

/* Icon Box */
.icon-box{display:flex;align-items:center;justify-content:center;border-radius:12px;flex-shrink:0}
.icon-box-sm{width:36px;height:36px;border-radius:10px}
.icon-box-md{width:44px;height:44px}
.icon-box-lg{width:52px;height:52px;border-radius:14px}
.icon-box-blue{background:var(--blue-light)}
.icon-box-gold{background:var(--gold-light)}
.icon-box-green{background:var(--green-light)}
.icon-box-navy{background:var(--navy)}

/* Divider */
.divider{height:1px;background:var(--border)}

/* Stat block */
.stat-number{font-family:var(--font-display);font-weight:800;color:var(--navy);line-height:1}
.stat-label{font-size:13px;color:var(--text-muted)}

/* ── Navigation ── */
.nav{position:sticky;top:0;z-index:100;background:rgba(247,249,252,0.95);
  backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;
  align-items:center;justify-content:space-between;height:68px}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-logo-icon{width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,#1366F5,#3B82F6);
  display:flex;align-items:center;justify-content:center}
.nav-logo-text{font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--navy)}
.nav-logo-text .accent{color:var(--blue)}
.nav-logo-text .muted{color:var(--text-muted);font-weight:400}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-link{font-size:14px;font-weight:500;color:var(--text);background:transparent;border:none;
  cursor:pointer;padding:8px 12px;border-radius:6px;display:flex;align-items:center;gap:4px;
  transition:color 0.15s;text-decoration:none}
.nav-link:hover,.nav-link.active{color:var(--blue)}
.nav-link svg{width:13px;height:13px;transition:transform 0.2s}
.nav-cta{display:flex;align-items:center;gap:10px}
.dropdown{position:relative}
.dropdown-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%);
  background:var(--surface);border:1px solid var(--border);border-radius:14px;
  box-shadow:0 16px 48px rgba(10,37,64,0.14);padding:16px 0;min-width:480px;
  display:none;grid-template-columns:1fr 1fr;gap:0;z-index:200}
.dropdown-menu.show{display:grid}
.dropdown-menu-wide{min-width:560px;grid-template-columns:1fr 1fr 1fr}
.dropdown-item{display:flex;align-items:center;gap:10px;padding:10px 20px;
  background:transparent;border:none;cursor:pointer;text-align:left;transition:background 0.15s;
  text-decoration:none;color:inherit}
.dropdown-item:hover{background:var(--bg)}
.dropdown-item .di-icon{width:30px;height:30px;border-radius:8px;display:flex;
  align-items:center;justify-content:center;flex-shrink:0}
.dropdown-item .di-label{font-size:13px;color:var(--text);font-weight:500}
.dropdown-item-sm{padding:9px 16px}
.dropdown-item-sm .di-label{font-size:13px}
.mobile-menu-btn{display:none;background:transparent;border:none;padding:4px}
.mobile-menu{display:none;background:var(--surface);border-top:1px solid var(--border);padding:12px 24px 20px}
.mobile-menu a{display:block;padding:10px 0;font-size:15px;font-weight:500;color:var(--text);
  border-bottom:1px solid var(--border);text-decoration:none}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu a:hover{color:var(--blue)}

/* ── Hero ── */
.hero{background:linear-gradient(160deg,#EEF4FF 0%,#F7F9FC 50%,#FFFBF3 100%);
  padding:80px 24px 100px;text-align:center;position:relative;overflow:hidden}
.hero-dot-bg{position:absolute;top:0;left:0;right:0;bottom:0;opacity:0.03;
  background-image:radial-gradient(circle at 1px 1px,#0A2540 1px,transparent 0);
  background-size:32px 32px;pointer-events:none}
.hero-inner{max-width:820px;margin:0 auto;position:relative}
.hero-title{margin-top:20px;margin-bottom:20px}
.hero-title .highlight{color:var(--blue)}
.hero-desc{max-width:580px;margin:0 auto 36px;font-size:18px;color:var(--text-sub)}
.hero-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:48px}
.hero-pills{display:flex;flex-wrap:wrap;gap:8px;justify-content:center}
.hero-pill{display:flex;align-items:center;gap:6px;background:var(--surface);
  border:1px solid var(--border);border-radius:24px;padding:6px 14px;
  box-shadow:var(--shadow-sm)}
.hero-pill span{font-size:12px;font-weight:500;color:var(--text)}
.hero-pill svg{width:13px;height:13px}

/* Page hero variations */
.hero-page{padding:72px 24px 80px}
.hero-page-blue{background:linear-gradient(160deg,var(--blue-light) 0%,var(--bg) 60%)}
.hero-page-navy{background:linear-gradient(135deg,var(--navy) 0%,#0F3460 100%)}
.hero-page-gold{background:linear-gradient(160deg,var(--gold-light) 0%,var(--bg) 60%)}
.hero-page-green{background:linear-gradient(160deg,var(--green-light) 0%,var(--bg) 60%)}

/* ── Stats Bar ── */
.stats-bar{background:var(--navy);padding:32px 24px}
.stats-bar-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.stats-bar-item{text-align:center;padding:8px 20px}
.stats-bar-item:not(:last-child){border-right:1px solid rgba(255,255,255,0.12)}
.stats-bar-num{font-family:var(--font-display);font-size:32px;font-weight:800;color:#fff}
.stats-bar-label{font-size:13px;color:#94A3B8;margin-top:2px}

/* ── Feature Cards ── */
.feature-card{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);
  padding:24px;transition:var(--transition);cursor:pointer}
.feature-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.feature-card .card-arrow{display:flex;align-items:center;gap:4px;font-size:13px;
  font-weight:600;margin-top:16px}
.feature-card .card-arrow svg{width:13px;height:13px}

/* ── Industry Grid ── */
.industry-tile{display:flex;flex-direction:column;align-items:center;gap:8px;padding:20px 12px;
  background:var(--surface);border:1px solid var(--border);border-radius:12px;cursor:pointer;
  transition:var(--transition);text-align:center;text-decoration:none}
.industry-tile:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.industry-tile .tile-label{font-size:11px;font-weight:600;color:var(--text);line-height:1.3}
.industry-tile svg{width:22px;height:22px}

/* ── Integrations ── */
.integration-pill{background:var(--bg);border:1px solid var(--border);border-radius:24px;
  padding:8px 18px;font-size:13px;font-weight:500;color:var(--text-sub)}
.integration-pill-more{background:var(--blue-light);border-color:rgba(19,102,245,0.2);color:var(--blue);font-weight:600}

/* ── Testimonials ── */
.testimonial-card{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);padding:28px}
.testimonial-text{font-size:15px;line-height:1.7;color:var(--text);margin-bottom:20px;font-style:italic}
.testimonial-avatar{width:40px;height:40px;border-radius:50%;background:var(--blue-light);
  display:flex;align-items:center;justify-content:center;font-family:var(--font-display);
  font-weight:700;font-size:13px;color:var(--blue);flex-shrink:0}
.testimonial-name{font-weight:600;font-size:14px;color:var(--navy)}
.testimonial-role{font-size:12px;color:var(--text-muted)}
.stars{display:flex;gap:2px;margin-bottom:16px}
.stars svg{width:14px;height:14px;fill:var(--gold);color:var(--gold)}

/* ── Pricing ── */
.pricing-toggle{display:inline-flex;align-items:center;gap:12px;background:var(--surface);
  border:1px solid var(--border);border-radius:32px;padding:6px 6px 6px 16px}
.toggle-switch{width:44px;height:24px;border-radius:12px;background:var(--border);
  cursor:pointer;position:relative;transition:background 0.2s;border:none;display:block;flex-shrink:0}
.toggle-switch.active{background:var(--blue)}
.toggle-knob{width:18px;height:18px;border-radius:50%;background:#fff;position:absolute;
  top:3px;left:3px;transition:left 0.2s}
.toggle-switch.active .toggle-knob{left:23px}
.toggle-label{font-size:14px;font-weight:500;cursor:pointer}
.toggle-label.active-label{color:var(--navy)}
.toggle-label.inactive-label{color:var(--text-muted)}
.price-amount{font-family:var(--font-display);font-size:42px;font-weight:800;color:var(--navy)}
.price-period{font-size:14px;color:var(--text-muted)}
.price-saving{font-size:12px;color:var(--green);margin-top:4px}
.price-custom{font-family:var(--font-display);font-size:36px;font-weight:800;color:var(--navy)}

/* FAQ */
.faq-item{border-bottom:1px solid var(--border)}
.faq-btn{width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:20px 0;background:transparent;border:none;cursor:pointer;text-align:left}
.faq-question{font-family:var(--font-body);font-size:16px;font-weight:600;color:var(--navy)}
.faq-answer{padding-bottom:20px;font-size:15px;color:var(--text-sub)}
.faq-answer.hidden{display:none}
.faq-icon{transition:transform 0.2s;width:16px;height:16px;color:var(--text-muted);flex-shrink:0}
.faq-item.open .faq-icon{transform:rotate(180deg);color:var(--blue)}

/* ── CTA Section ── */
.cta-section{padding:80px 24px;background:linear-gradient(135deg,var(--navy) 0%,#0F3460 100%);text-align:center}
.cta-inner{max-width:640px;margin:0 auto}
.cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:36px}

/* ── How It Works ── */
.step-item{display:flex;gap:20px}
.step-num{font-family:var(--font-display);font-size:42px;font-weight:800;color:var(--border);line-height:1}
.step-icon-wrap{width:44px;height:44px;border-radius:12px;background:var(--blue-light);
  display:flex;align-items:center;justify-content:center;margin-top:8px}
.step-icon-wrap svg{width:20px;height:20px;color:var(--blue)}
.step-content{padding-top:4px}
.step-title{font-size:17px;font-weight:600;color:var(--navy);margin-bottom:8px}
.step-desc{font-size:14px;color:var(--text-sub)}

/* ── Solution / Industry Detail ── */
.detail-hero{padding:72px 24px 80px}
.detail-hero-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.detail-stat-card{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);
  padding:20px 24px;display:flex;align-items:center;gap:20px;margin-bottom:16px}
.detail-stat-num{font-family:var(--font-display);font-size:36px;font-weight:800;line-height:1}
.detail-stat-label{font-size:15px;color:var(--text-sub)}
.kpi-card{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);
  padding:16px 12px;text-align:center}
.kpi-num{font-family:var(--font-display);font-size:26px;font-weight:800;line-height:1}
.kpi-label{font-size:12px;color:var(--text-sub);margin-top:4px}
.pain-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px}
.pain-icon{width:20px;height:20px;border-radius:50%;background:#FEF2F2;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.pain-icon svg{width:10px;height:10px;color:#DC2626}
.use-case-card{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);
  padding:16px 20px;display:flex;gap:12px;align-items:flex-start}
.use-case-icon{width:28px;height:28px;border-radius:8px;display:flex;align-items:center;
  justify-content:center;flex-shrink:0}
.use-case-icon svg{width:11px;height:11px}

/* ── Features Page ── */
.feature-group{margin-bottom:64px}
.feature-group-header{display:flex;align-items:center;gap:12px;margin-bottom:28px}
.feature-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}

/* ── About Page ── */
.team-card{text-align:center}
.team-avatar{width:80px;height:80px;border-radius:50%;margin:0 auto 12px;
  display:flex;align-items:center;justify-content:center;font-family:var(--font-display);
  font-weight:700;font-size:22px}
.contact-icon-row{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.contact-icon-box{width:36px;height:36px;border-radius:8px;background:var(--blue-light);
  display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-icon-box svg{width:16px;height:16px;color:var(--blue)}
.contact-text{font-size:15px;color:var(--text)}
.form-group{margin-bottom:16px}
.form-label{font-size:13px;font-weight:500;color:var(--navy);display:block;margin-bottom:6px}
.form-control{width:100%;padding:10px 14px;border-radius:8px;border:1px solid var(--border);
  font-family:var(--font-body);font-size:14px;color:var(--text);background:var(--bg);
  outline:none;transition:border-color 0.2s;resize:vertical}
.form-control:focus{border-color:var(--blue)}
.form-success{text-align:center;padding:48px}
.form-success-icon{width:56px;height:56px;border-radius:50%;background:var(--green-light);
  display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.form-success-icon svg{width:24px;height:24px;color:var(--green)}

/* ── Footer ── */
.footer{background:var(--navy);color:#fff;padding-top:60px;font-family:var(--font-body)}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 24px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.footer-logo-icon{width:36px;height:36px;border-radius:10px;background:var(--blue);
  display:flex;align-items:center;justify-content:center}
.footer-logo-icon svg{width:18px;height:18px;color:#fff}
.footer-logo-text{font-family:var(--font-display);font-weight:700;font-size:18px}
.footer-logo-text .accent{color:#60A5FA}
.footer-logo-text .muted{color:#64748B;font-weight:400}
.footer-desc{font-size:14px;line-height:1.7;color:#94A3B8;max-width:280px}
.footer-socials{display:flex;gap:10px;margin-top:20px}
.footer-social{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background 0.15s}
.footer-social:hover{background:rgba(255,255,255,0.15)}
.footer-social svg{width:15px;height:15px;color:#94A3B8}
.footer-col-title{font-family:var(--font-display);font-size:13px;font-weight:600;color:#E2E8F0;
  margin-bottom:16px;letter-spacing:0.06em;text-transform:uppercase}
.footer-link{font-size:14px;color:#94A3B8;margin-bottom:10px;cursor:pointer;
  display:block;transition:color 0.15s;text-decoration:none}
.footer-link:hover{color:#E2E8F0}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;
  padding:20px 0;font-size:13px;color:#475569;border-top:1px solid rgba(255,255,255,0.08)}
.status-dot{width:8px;height:8px;border-radius:50%;background:var(--green);display:inline-block;margin-right:6px}

/* ── Page Banner ── */
.page-banner{background:linear-gradient(160deg,var(--blue-light) 0%,var(--bg) 100%);
  padding:72px 24px 80px;text-align:center}
.page-banner h1{margin-bottom:16px}
.page-banner p{max-width:560px;margin:0 auto}

/* ── Responsive ── */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-7{grid-template-columns:repeat(4,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .stats-bar-inner{grid-template-columns:repeat(2,1fr)}
  .stats-bar-item:nth-child(2){border-right:none}
  .stats-bar-item:nth-child(3){border-right:1px solid rgba(255,255,255,0.12)}
}
@media(max-width:768px){
  h1{font-size:28px}
  h2{font-size:22px}
  .nav-links,.nav-cta{display:none}
  .mobile-menu-btn{display:block}
  .grid-2,.grid-3,.grid-half,.detail-hero-grid{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .grid-5{grid-template-columns:repeat(2,1fr)}
  .grid-7{grid-template-columns:repeat(3,1fr)}
  .section{padding:48px 0}
  .hero{padding:48px 24px 64px}
  .stats-bar-inner{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .step-item{flex-direction:column;gap:8px}
  .pricing-toggle{flex-wrap:wrap}
}
@media(max-width:480px){
  .grid-5,.grid-7{grid-template-columns:repeat(2,1fr)}
  .container,.container-sm,.container-md{padding:0 16px}
}

/* ── Utility ── */
.relative{position:relative}
.overflow-hidden{overflow:hidden}
.w-full{width:100%}
.inline-flex{display:inline-flex;align-items:center}
.hidden{display:none}

/* Solution color variants (used in JS-generated pages) */
.color-blue{color:var(--blue)}.bg-blue{background:var(--blue-light)}
.color-gold{color:var(--gold)}.bg-gold{background:var(--gold-light)}
.color-green{color:var(--green)}.bg-green{background:var(--green-light)}
.color-purple{color:var(--purple)}.bg-purple{background:var(--purple-light)}
.color-red{color:var(--red)}.bg-red{background:var(--red-light)}
.color-cyan{color:var(--cyan)}.bg-cyan{background:var(--cyan-light)}
.color-navy{color:var(--navy)}.bg-navy{background:var(--blue-light)}

/* ── Enhanced page additions (hero flows + logos) ── */
.flow-svg{width:100%;border-radius:16px;box-shadow:0 8px 40px rgba(10,37,64,0.10)}
.logo-grid{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.logo-tile{display:flex;flex-direction:column;align-items:center;gap:5px;
  padding:12px 10px;background:var(--surface);border:1px solid var(--border);
  border-radius:12px;min-width:68px;transition:all 0.15s;cursor:default}
.logo-tile:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.logo-tile-label{font-size:10px;font-weight:600;color:var(--text-sub);text-align:center;line-height:1.3}
.channel-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:0}
.channel-pill{display:flex;align-items:center;gap:7px;background:var(--surface);
  border:1px solid var(--border);border-radius:20px;padding:6px 12px;
  font-size:12px;font-weight:500;color:var(--text)}
@media(max-width:768px){
  .hero-page .grid-half,.hero-page [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important}
}
