/* ============================================================
   KADIYA.IN — Design System
   Brand: #250c77 (purple) | #ed642b (orange)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fafafa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── CSS VARIABLES ─────────────────────────────────── */
:root {
  --purple:  #250c77;
  --purple2: #3d1a9e;
  --purple3: #5a2fd4;
  --orange:  #ed642b;
  --orange2: #f57c45;
  --dark:    #1a1a2e;
  --gray:    #64748b;
  --gray-lt: #94a3b8;
  --border:  #e2e8f0;
  --surface: #ffffff;
  --bg:      #f8fafc;
  --shadow:  0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius:  12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar {
  background: var(--purple);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  padding: .45rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: .75rem; align-items: center; }
.topbar-left .sep { opacity: .4; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.topbar-right a { color: rgba(255,255,255,.8); transition: color var(--transition); font-size: .75rem; }
.topbar-right a:hover { color: #fff; }
.topbar-cta {
  background: var(--orange);
  color: #fff !important;
  padding: .3rem .85rem;
  border-radius: 20px;
  font-weight: 600;
}
.topbar-cta:hover { background: var(--orange2) !important; }

/* ── HEADER / NAV ─────────────────────────────────── */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .9rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* LOGO */
.logo { display: flex; align-items: center; white-space: nowrap; }
.logo-img { height: 38px; width: auto; display: block; object-fit: contain; flex-shrink: 0; }
.logo-img-footer { height: 44px; width: auto; object-fit: contain; flex-shrink: 0; }
/* legacy text spans kept in case any other view still uses them */
.logo-k { font-size: 1.6rem; font-weight: 800; color: var(--purple); }
.logo-rest { font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.logo-dot { font-size: 1.6rem; font-weight: 800; color: var(--orange); }

/* SEARCH */
.nav-search { flex: 1; position: relative; max-width: 580px; }
.search-wrap { display: flex; align-items: stretch; border: 2px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color var(--transition); background: var(--surface); }
.search-wrap:focus-within { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(37,12,119,.08); }
.search-type-select {
  border: none; background: #f1f5f9; color: var(--gray); font-size: .8rem; padding: 0 .6rem; outline: none;
  border-right: 1px solid var(--border); cursor: pointer; font-family: inherit;
}
.nav-search input[type=text] {
  flex: 1; border: none; outline: none; padding: .65rem 1rem; font-size: .88rem; background: transparent;
}
.search-btn {
  background: var(--purple); color: #fff; border: none; padding: 0 1.2rem; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition); white-space: nowrap;
}
.search-btn:hover { background: var(--purple2); }

/* AUTOCOMPLETE */
.autocomplete-box {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); z-index: 500; display: none; max-height: 360px; overflow-y: auto;
}
.autocomplete-box.show { display: block; }
.ac-item { display: flex; align-items: center; gap: .75rem; padding: .7rem 1rem; cursor: pointer; transition: background var(--transition); font-size: .85rem; }
.ac-item:hover { background: var(--bg); }
.ac-label { font-size: .7rem; color: var(--gray-lt); margin-left: auto; text-transform: uppercase; letter-spacing: .04em; }

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links > a, .nav-item > a {
  font-size: .85rem; font-weight: 500; padding: .5rem .75rem; border-radius: 8px;
  color: var(--dark); transition: all var(--transition); white-space: nowrap;
}
.nav-links > a:hover, .nav-item > a:hover { background: var(--bg); color: var(--purple); }
.nav-ai-badge { color: var(--purple) !important; font-weight: 700 !important; }
.compare-nav-link { position: relative; }
.compare-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--orange); color: #fff; font-size: .65rem;
  width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* DROPDOWN */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 200px; z-index: 500;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); padding: .5rem 0;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: .6rem 1.1rem; font-size: .85rem; color: var(--dark);
  transition: all var(--transition); border-radius: 0;
}
.nav-dropdown a:hover { background: var(--bg); color: var(--purple); padding-left: 1.4rem; }

/* MEGA DROPDOWN */
.nav-dropdown.mega {
  min-width: 680px;
  left: 50%; transform: translateX(-50%) translateY(-8px);
}
.nav-item:hover .nav-dropdown.mega { transform: translateX(-50%) translateY(0); }
.mega-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 1rem; }
.mega-col h5 { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-lt); padding: 0 .5rem .5rem; border-bottom: 1px solid var(--border); margin-bottom: .5rem; }
.mega-col a { padding: .45rem .5rem; border-radius: 6px; font-size: .82rem; }
.mega-footer { border-top: 1px solid var(--border); padding: .75rem 1.5rem; }
.mega-footer a { font-size: .82rem; font-weight: 600; color: var(--purple); }

/* CAT BAR */
.cat-bar { background: var(--bg); border-top: 1px solid var(--border); }
.cat-bar-inner {
  display: flex; align-items: center; gap: .15rem;
  overflow-x: auto; padding: .5rem 1.5rem;
  scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-bar-inner a {
  font-size: .78rem; font-weight: 500; color: var(--gray); white-space: nowrap;
  padding: .35rem .75rem; border-radius: 20px; transition: all var(--transition);
}
.cat-bar-inner a:hover { background: var(--purple); color: #fff; }
.cat-all { color: var(--orange) !important; font-weight: 700 !important; }
.menu-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: .4rem .65rem; font-size: 1.1rem; color: var(--dark); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--purple) 0%, #1a0a55 40%, #2d0d77 70%, #3d1a9e 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(237,100,43,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(90,47,212,.2) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,.03) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(237,100,43,.2); border: 1px solid rgba(237,100,43,.4);
  color: #ffb99a; font-size: .78rem; font-weight: 700;
  padding: .4rem .9rem; border-radius: 30px; margin-bottom: 1.2rem;
  letter-spacing: .04em;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-title-accent {
  background: linear-gradient(90deg, #ed642b, #f5a623);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }

/* HERO SEARCH */
.hero-search-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
}
.hero-search-inner { background: #fff; border-radius: 10px; overflow: hidden; }
.hs-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  background: #f8fafc;
}
.hs-tab {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: .6rem 1rem; font-size: .8rem; font-weight: 600; cursor: pointer;
  color: var(--gray); transition: all var(--transition); gap: .4rem;
}
.hs-tab.active, .hs-tab:has(input:checked) {
  color: var(--purple); background: #fff; border-bottom: 2px solid var(--purple);
}
.hs-tab input[type=radio] { display: none; }
.hs-input-row { display: flex; }
.hs-input { flex: 1; border: none; outline: none; padding: .9rem 1.2rem; font-size: .95rem; }
.hs-btn {
  background: var(--orange); color: #fff; font-weight: 700; font-size: .9rem;
  padding: 0 1.75rem; border-radius: 0 10px 10px 0; transition: background var(--transition);
  border: none; cursor: pointer;
}
.hs-btn:hover { background: var(--orange2); }
.hero-trending { padding: .75rem .25rem 0; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.hero-trending span { font-size: .75rem; color: rgba(255,255,255,.55); }
.hero-trending a { font-size: .75rem; color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); padding: .25rem .65rem; border-radius: 20px; transition: all var(--transition); }
.hero-trending a:hover { background: rgba(255,255,255,.2); color: #fff; }

/* HERO STAT CARDS */
.hero-stats-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.hsc-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.25rem;
  text-align: center; transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.hsc-card:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.hsc-card.purple { background: rgba(90,47,212,.3); border-color: rgba(90,47,212,.4); }
.hsc-card.orange { background: rgba(237,100,43,.25); border-color: rgba(237,100,43,.4); }
.hsc-num { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 800; color: #fff; }
.hsc-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .2rem; font-weight: 500; }

/* ── AI STRIP ────────────────────────────────────────── */
.ai-strip {
  background: linear-gradient(90deg, #1a0a55 0%, var(--purple) 100%);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--orange);
}
.ai-strip-inner { display: flex; align-items: center; gap: 1.5rem; }
.ai-strip-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); white-space: nowrap; }
.ai-tools-row { display: flex; gap: 1rem; flex: 1; overflow-x: auto; scrollbar-width: none; }
.ai-tools-row::-webkit-scrollbar { display: none; }
.ai-tool-card {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: .75rem 1rem; border-radius: 10px; min-width: 220px;
  transition: all var(--transition); cursor: pointer; color: #fff;
}
.ai-tool-card:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); border-color: var(--orange); }
.ai-tool-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800;
}
.ai-icon-boq  { background: rgba(237,100,43,.3); }
.ai-icon-ris  { background: rgba(14,165,233,.3); }
.ai-icon-mb   { background: rgba(236,72,153,.3); }
.ai-icon-af   { background: rgba(90,47,212,.4); }
.ai-icon-rb   { background: rgba(16,185,129,.3); }
.ai-icon-boq::after  { content: 'BOQ'; color: #f97316; }
.ai-icon-ris::after  { content: 'RIS'; color: #0ea5e9; }
.ai-icon-mb::after   { content: 'MB'; color: #ec4899; }
.ai-icon-af::after   { content: 'AI'; color: #a78bfa; }
.ai-icon-rb::after   { content: 'RB'; color: #10b981; }
.ai-tool-info strong { display: block; font-size: .82rem; font-weight: 700; }
.ai-tool-info span   { font-size: .72rem; color: rgba(255,255,255,.6); }

/* ── SECTIONS ────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.section-header.center { flex-direction: column; align-items: center; text-align: center; }
.section-title { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--dark); }
.section-sub { color: var(--gray); font-size: .9rem; margin-top: .3rem; max-width: 540px; }
.section-header.center .section-sub { text-align: center; }
.btn-link { font-size: .85rem; font-weight: 600; color: var(--purple); border: 1px solid var(--border); padding: .5rem 1rem; border-radius: 8px; transition: all var(--transition); white-space: nowrap; }
.btn-link:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ── CATEGORY GRID ─────────────────────────────────── */
.cat-section { background: var(--surface); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .75rem; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.25rem .75rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--transition); cursor: pointer;
}
.cat-card:hover { border-color: var(--purple); box-shadow: 0 4px 20px rgba(37,12,119,.1); transform: translateY(-3px); }
.cat-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; margin-bottom: .75rem;
  transition: transform var(--transition);
}
.cat-card:hover .cat-card-icon { transform: scale(1.1); }
.cat-card-name { font-size: .8rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: .25rem; }
.cat-card-count { font-size: .7rem; color: var(--gray-lt); }

/* ── HOW IT WORKS ──────────────────────────────────── */
.hiw-section { background: linear-gradient(135deg, #f8f7ff 0%, #fff 100%); }
.hiw-steps {
  display: flex; align-items: flex-start; gap: 0;
  padding: 2rem 0;
}
.hiw-step {
  flex: 1; text-align: center; padding: 2rem 1.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative;
  transition: all var(--transition);
}
.hiw-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--purple); }
.hiw-step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: #fff; font-size: .7rem; font-weight: 800;
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.hiw-step-icon {
  width: 60px; height: 60px; background: #f0eeff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  color: var(--purple); transition: all var(--transition);
}
.hiw-step:hover .hiw-step-icon { background: var(--purple); color: #fff; }
.hiw-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; color: var(--dark); }
.hiw-step p { font-size: .82rem; color: var(--gray); line-height: 1.6; }
.hiw-connector {
  flex: 0 0 40px; height: 2px; background: linear-gradient(90deg, var(--border), var(--purple)); margin-top: 2.5rem;
  position: relative;
}
.hiw-connector::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--purple);
}

/* ── PRODUCTS GRID ──────────────────────────────────── */
.products-section { background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.product-card-img {
  background: linear-gradient(135deg, #f0eeff, #e8f4ff);
  height: 160px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card-img-placeholder {
  font-size: 2rem; font-weight: 800; color: var(--purple); opacity: .3;
  font-family: 'Poppins', sans-serif;
}
.product-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--orange); color: #fff; font-size: .65rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: 4px;
}
.product-compare-btn {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(37,12,119,.9); color: #fff; font-size: .7rem; font-weight: 600;
  padding: .3rem .65rem; border-radius: 6px; opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-compare-btn { opacity: 1; }
.product-card-body { padding: 1rem; }
.product-card-cat { font-size: .68rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.product-card-name { font-size: .9rem; font-weight: 600; color: var(--dark); margin-bottom: .5rem; line-height: 1.4; }
.product-card-name a:hover { color: var(--purple); }
.product-card-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .5rem; }
.ptag { font-size: .65rem; font-weight: 600; padding: .2rem .5rem; border-radius: 4px; }
.ptag-fire { background: #fef2f2; color: #dc2626; }
.ptag-green { background: #f0fdf4; color: #16a34a; }
.product-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: .75rem; border-top: 1px solid var(--border); }
.product-rating { display: flex; align-items: center; gap: .3rem; font-size: .78rem; color: var(--gray); }
.stars { color: #f59e0b; font-size: .75rem; }
.product-view-btn {
  font-size: .75rem; font-weight: 700; color: var(--purple);
  border: 1px solid var(--purple); padding: .3rem .75rem; border-radius: 6px;
  transition: all var(--transition);
}
.product-view-btn:hover { background: var(--purple); color: #fff; }

/* ── ROOM SECTION ──────────────────────────────────── */
.room-section { background: var(--surface); }
.room-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.room-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; transition: all var(--transition); display: block;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.room-card-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: #fff;
}
.room-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.room-card p { font-size: .78rem; color: var(--gray); margin-bottom: .75rem; }
.room-cta { font-size: .78rem; font-weight: 700; color: var(--purple); }

/* ── COMPARE BANNER ──────────────────────────────────── */
.compare-banner {
  background: linear-gradient(135deg, var(--purple) 0%, #1a0a55 100%);
  padding: 4rem 0;
}
.cmp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cmp-text h3 { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.cmp-text p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.btn-white {
  background: #fff; color: var(--purple); font-weight: 700; font-size: .9rem;
  padding: .75rem 1.75rem; border-radius: 10px; display: inline-block; transition: all var(--transition);
}
.btn-white:hover { background: var(--orange); color: #fff; }

/* COMPARE DEMO */
.cmp-card-demo {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(6px);
}
.cmp-demo-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 0; }
.cmp-demo-row > div { padding: .75rem 1rem; font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
.cmp-demo-row.hdr > div { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); background: rgba(0,0,0,.15); }
.cmp-demo-row .win { color: #4ade80; font-weight: 700; }
.cmp-demo-row .score-row { border-bottom: none; }
.score-win { background: rgba(74,222,128,.15); color: #4ade80 !important; font-size: 1.1rem !important; font-weight: 800 !important; border-radius: 8px; }
.score-num { color: rgba(255,255,255,.5) !important; font-size: 1rem !important; font-weight: 700 !important; }

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-section { background: var(--bg); padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: .75rem; padding: .5rem 1rem; flex: 1; min-width: 180px; }
.trust-icon { width: 42px; height: 42px; background: #f0eeff; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--purple); }
.trust-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--dark); }
.trust-item span { font-size: .75rem; color: var(--gray); }
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── CTA SECTION ────────────────────────────────────── */
.cta-section { background: var(--surface); padding: 5rem 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cta-left h2 { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.cta-left p { color: var(--gray); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-cta-primary { background: var(--purple); color: #fff; font-weight: 700; padding: .8rem 1.75rem; border-radius: 10px; font-size: .9rem; transition: all var(--transition); }
.btn-cta-primary:hover { background: var(--purple2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-cta-secondary { background: transparent; color: var(--purple); font-weight: 600; padding: .8rem 1.5rem; border: 2px solid var(--border); border-radius: 10px; font-size: .9rem; transition: all var(--transition); }
.btn-cta-secondary:hover { border-color: var(--purple); background: #f0eeff; }

/* PLAN CARDS */
.cta-plan-cards { display: flex; gap: .75rem; align-items: flex-end; }
.cta-plan { flex: 1; padding: 1.25rem; border: 2px solid var(--border); border-radius: var(--radius); text-align: center; transition: all var(--transition); position: relative; }
.cta-plan:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.featured-plan { border-color: var(--orange); background: #fff8f5; transform: scale(1.04); }
.plan-badge { font-size: .65rem; font-weight: 700; background: var(--orange); color: #fff; padding: .2rem .6rem; border-radius: 20px; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.plan-name { font-size: .75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.plan-price { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.plan-price span { font-size: .8rem; color: var(--gray); font-weight: 400; }
.plan-desc { font-size: .72rem; color: var(--gray); margin-top: .3rem; line-height: 1.4; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: #0f0a2a; color: rgba(255,255,255,.6); }
.footer-top { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; max-width: 260px; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.6); transition: all var(--transition);
}
.footer-social a:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.footer-col h5 { font-size: .75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .82rem; color: rgba(255,255,255,.5); padding: .3rem 0; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; }
.footer-bottom-inner div { display: flex; gap: 1.5rem; }
.footer-bottom-inner a { color: rgba(255,255,255,.4); }
.footer-bottom-inner a:hover { color: rgba(255,255,255,.8); }

/* ── UTILITIES ───────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .55rem 1.1rem; border-radius: 8px; font-size: .82rem; font-weight: 600; cursor: pointer; transition: all var(--transition); border: 1px solid transparent; font-family: inherit; }
.btn-primary   { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple2); }
.btn-orange    { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange2); }
.btn-outline   { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { background: var(--bg); border-color: var(--gray-lt); }
.btn-danger    { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-success   { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.btn-success:hover { background: #16a34a; color: #fff; }
.btn-sm        { padding: .3rem .7rem; font-size: .75rem; }

/* BADGE */
.badge { display: inline-flex; align-items: center; font-size: .68rem; font-weight: 700; padding: .2rem .55rem; border-radius: 20px; }
.badge-purple { background: #f0eeff; color: var(--purple); }
.badge-orange { background: #fff3ee; color: var(--orange); }
.badge-green  { background: #f0fdf4; color: #16a34a; }
.badge-red    { background: #fef2f2; color: #dc2626; }
.badge-blue   { background: #eff6ff; color: #2563eb; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-cards { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .cta-inner, .cmp-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-search { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-title { font-size: 1.75rem; }
  .hiw-steps { flex-direction: column; }
  .hiw-connector { width: 2px; height: 30px; margin: 0 auto; }
  .hiw-connector::after { display: none; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); }
  .trust-divider { display: none; }
  .trust-item { min-width: 48%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-left { display: none; }
  .cta-plan-cards { flex-direction: column; }
}
