/* ============================================================
   AdvisorEdge — Complete Stylesheet
   ============================================================ */

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

:root {
  --navy:    #0B1120;
  --navy2:   #0F1A2E;
  --navy3:   #162038;
  --navy4:   #1C2A45;
  --gold:    #C9A84C;
  --gold2:   #E8C96A;
  --gold3:   #F5E0A0;
  --slate:   #8899B4;
  --dim:     #3A4A6B;
  --white:   #F0F4FF;
  --muted:   #5B6F8F;
  --text:    #D0DCFF;
  --border:  rgba(201,168,76,0.15);
  --border2: rgba(58,74,107,0.5);
  --radius:  12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; letter-spacing: -0.02em; }
h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; }
a { color: var(--gold2); text-decoration: none; }
img { max-width: 100%; }

/* ── Utilities ──────────────────────────────────────────── */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.w-full      { width: 100%; }
.section     { padding: 5rem 0; }
.section-dark { background: var(--navy2); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.12;
}
.section-title em { color: var(--gold2); font-style: italic; }
.section-sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: #0B1120;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover  { opacity: 0.9; transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 15px 36px; font-size: 16px; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover  { border-color: var(--gold); background: rgba(201,168,76,0.07); }
.btn-outline.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ── Announcement Bar ───────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #C9A84C, #E8C96A);
  color: #0B1120;
  text-align: center;
  padding: 10px 1rem;
  font-size: 13px;
  font-weight: 600;
}
.announcement-bar a { color: #0B1120; text-decoration: underline; }

/* ── Navigation ─────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,17,32,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg,#C9A84C,#E8C96A);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 15px; color: #0B1120; font-weight: bold;
}
.nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--white); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--slate); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg,#C9A84C,#E8C96A);
  color: #0B1120; border: none;
  padding: 9px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  white-space: nowrap; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }
.hamburger {
  display: none; background: transparent; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
}
.mobile-menu {
  display: none; flex-direction: column;
  padding: 1rem 1.5rem; gap: 1rem;
  border-top: 1px solid var(--border2);
}
.mobile-menu a { color: var(--slate); font-size: 15px; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute;
  top: 15%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 6px 18px;
  font-size: 13px; color: var(--gold2); margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold2);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

h1.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1; color: var(--white); margin-bottom: 1.5rem;
}
h1.hero-title em { color: var(--gold2); font-style: italic; }
.hero-sub {
  font-size: 1.15rem; color: var(--slate);
  max-width: 600px; margin: 0 auto 2.5rem;
  font-weight: 300; line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 4rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; color: var(--gold2);
}
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hero-chips {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-top: 2.5rem;
}
.chip {
  background: rgba(22,32,56,0.8);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 6px 16px; font-size: 13px; color: var(--slate);
  backdrop-filter: blur(8px);
}

/* ── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--navy3);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 1rem 1.5rem;
  overflow: hidden;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
}
.trust-item { font-size: 13px; color: var(--slate); font-weight: 500; white-space: nowrap; }

/* ── Problem ────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.problem-card {
  background: var(--navy2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color 0.3s, transform 0.2s;
}
.problem-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-2px); }
.problem-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 1.25rem;
}
.problem-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.6rem; }
.problem-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; font-weight: 300; }

/* ── Solution ───────────────────────────────────────────── */
.solution-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-top: 3rem;
}
.solution-features { display: flex; flex-direction: column; gap: 1rem; }
.feature-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--navy3);
  border: 1px solid var(--border2);
  border-radius: 12px; transition: all 0.2s;
}
.feature-row:hover { border-color: rgba(201,168,76,0.35); background: rgba(28,42,69,0.9); }
.feature-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 11px; color: var(--gold2);
}
.feature-text h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 3px; }
.feature-text p  { font-size: 0.85rem; color: var(--slate); font-weight: 300; }

.solution-visual {
  background: var(--navy3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.sv-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1.25rem;
}
.sv-dot { width: 10px; height: 10px; border-radius: 50%; }
.sv-dot.red   { background: #FF5F57; }
.sv-dot.amber { background: #FFBD2E; }
.sv-dot.green { background: #28CA41; }
.sv-title { font-size: 12px; color: var(--muted); margin-left: 4px; }
.sv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sv-card {
  aspect-ratio: 1; border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 0.5rem; text-align: center;
  transition: transform 0.2s;
}
.sv-card:hover { transform: scale(1.04); }
.sv-card-icon { font-size: 22px; }
.sv-card-label { font-size: 10px; font-weight: 500; }
.c-gold   { background: rgba(201,168,76,0.12);  border: 1px solid rgba(201,168,76,0.25); color: rgba(201,168,76,0.9); }
.c-blue   { background: rgba(55,138,221,0.1);   border: 1px solid rgba(55,138,221,0.2);  color: rgba(120,180,240,0.9); }
.c-teal   { background: rgba(29,158,117,0.1);   border: 1px solid rgba(29,158,117,0.2);  color: rgba(80,200,160,0.9); }
.c-purple { background: rgba(127,119,221,0.1);  border: 1px solid rgba(127,119,221,0.2); color: rgba(160,140,240,0.9); }
.c-rose   { background: rgba(212,83,126,0.1);   border: 1px solid rgba(212,83,126,0.2);  color: rgba(230,120,160,0.9); }
.c-slate  { background: rgba(136,153,180,0.1);  border: 1px solid rgba(136,153,180,0.2); color: rgba(180,200,230,0.9); }
.sv-footer { font-size: 11px; color: var(--dim); text-align: center; margin-top: 1rem; }

/* ── Steps ──────────────────────────────────────────────── */
.steps-row {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-top: 3rem; flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 220px; max-width: 300px;
  background: var(--navy2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 2rem;
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--gold);
  opacity: 0.5; margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.6rem; }
.step-card p  { font-size: 0.9rem; color: var(--slate); font-weight: 300; line-height: 1.7; }
.step-arrow { font-size: 1.5rem; color: var(--dim); padding-top: 2.5rem; align-self: flex-start; }

/* ── Categories ─────────────────────────────────────────── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem; margin-top: 1rem;
}
.cat-card {
  background: var(--navy3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 1.5rem;
  cursor: pointer; transition: all 0.25s; text-align: center;
}
.cat-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-3px); }
.cat-emoji { font-size: 28px; margin-bottom: 0.75rem; display: block; }
.cat-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.4rem; }
.cat-meta { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 0.4rem; }
.cat-count   { font-size: 12px; color: var(--gold); font-weight: 600; }
.cat-bundles { font-size: 12px; color: var(--muted); }
.cat-preview { font-size: 11px; color: var(--dim); }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-track { overflow: hidden; margin: 0 -1.5rem; padding: 0 1.5rem; }
.gallery-strip {
  display: flex; gap: 14px;
  overflow-x: auto; padding: 1.5rem 0 1rem;
  scrollbar-width: thin; scrollbar-color: var(--dim) transparent;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: transparent; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 4px; }

.gcard {
  flex: 0 0 160px; aspect-ratio: 0.8;
  border-radius: 14px;
  border: 1px solid var(--border2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  position: relative; overflow: hidden;
  padding: 1rem;
}
.gcard:hover { border-color: rgba(201,168,76,0.5); transform: scale(1.04); }
.gcard-watermark {
  position: absolute; top: 10px; right: -18px;
  background: rgba(201,168,76,0.9); color: #0B1120;
  font-size: 10px; font-weight: 700; padding: 3px 24px;
  transform: rotate(30deg); letter-spacing: 0.05em;
}
.gcard-content { position: relative; z-index: 1; text-align: center; }
.gcard-icon  { font-size: 28px; display: block; margin-bottom: 0.6rem; }
.gcard-title { font-size: 12px; font-weight: 600; color: var(--white); }
.gcard-sub   { font-size: 10px; color: var(--muted); margin-top: 3px; }
.gallery-more { text-align: center; font-size: 13px; color: var(--muted); margin-top: 0.75rem; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: var(--navy3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.testi-stars { color: var(--gold2); font-size: 16px; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text  { font-size: 0.9rem; color: var(--slate); line-height: 1.75; font-weight: 300; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,#C9A84C,#E8C96A);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #0B1120;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 1rem; align-items: start;
}
.price-card {
  background: var(--navy2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; transition: all 0.2s;
}
.price-card.featured { border-color: rgba(201,168,76,0.5); background: var(--navy3); }
.price-card.premium  { border-color: rgba(201,168,76,0.35); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,#C9A84C,#E8C96A);
  color: #0B1120; font-size: 11px; font-weight: 700;
  padding: 4px 18px; border-radius: 100px;
  letter-spacing: 0.06em; white-space: nowrap;
}
.price-badge.gold { background: linear-gradient(135deg,#E8C96A,#F5E0A0); }
.price-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.3rem; }
.price-tagline { font-size: 13px; color: var(--muted); font-weight: 300; margin-bottom: 1.25rem; }
.price-amount  { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.3rem; }
.price-rs  { font-size: 1.2rem; color: var(--gold); font-weight: 500; }
.price-num { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--white); line-height: 1; }
.price-per { font-size: 12px; color: var(--muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--slate); }
.pf-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 9px; color: var(--gold2);
}

/* Value Compare */
.value-compare { margin-top: 4rem; }
.value-compare h3 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; text-align: center; }
.compare-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.compare-item {
  background: var(--navy2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
}
.compare-item.best { border-color: rgba(201,168,76,0.5); background: var(--navy3); }
.compare-label { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.compare-cost  { font-size: 1.2rem; font-weight: 700; color: var(--gold2); }
.compare-cost span { font-size: 12px; color: var(--muted); font-weight: 400; }
.compare-note  { font-size: 12px; color: var(--muted); margin-top: 0.4rem; }
.compare-item.alt .compare-cost { color: #E24B4A; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--navy3); border: 1px solid var(--border2);
  border-radius: var(--radius);
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-size: 15px; font-weight: 500; color: var(--white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold2); }
.faq-arrow { font-size: 18px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--slate); font-weight: 300; line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}
.faq-a.open { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ── Checkout ────────────────────────────────────────────── */
.checkout-wrap {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 3rem; margin-top: 2.5rem; align-items: start;
}
.checkout-section-head {
  font-size: 14px; font-weight: 600; color: var(--white);
  margin-bottom: 1.25rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border2);
}
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--slate); margin-bottom: 6px; }
.req { color: var(--gold); }
.form-input {
  width: 100%; background: rgba(11,17,32,0.7);
  border: 1px solid var(--border2); border-radius: 10px;
  padding: 12px 16px; font-size: 15px; color: var(--white);
  font-family: 'DM Sans', sans-serif; transition: border-color 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus { border-color: rgba(201,168,76,0.5); }
.form-input::placeholder { color: var(--dim); }
select.form-input { cursor: pointer; }
.field-hint { font-size: 11px; color: var(--dim); display: block; margin-top: 4px; }
.field-error { font-size: 12px; color: #E24B4A; display: none; margin-top: 4px; }
.form-input.error { border-color: #E24B4A; }

.bundle-options { display: flex; flex-direction: column; gap: 10px; }
.bundle-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border2); border-radius: 12px;
  cursor: pointer; transition: all 0.2s;
}
.bundle-opt:hover, .bundle-opt.selected {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.06);
}
.bundle-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--dim); flex-shrink: 0; transition: all 0.2s;
}
.bundle-radio.selected {
  border-color: var(--gold); background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.bundle-opt-name { font-size: 14px; font-weight: 500; color: var(--white); }
.bundle-opt-meta { font-size: 12px; color: var(--muted); font-weight: 400; }
.bundle-opt-price { font-size: 14px; color: var(--gold); font-weight: 600; margin-top: 2px; }
.bundle-saving {
  font-size: 11px; background: rgba(201,168,76,0.15);
  color: var(--gold2); padding: 2px 8px; border-radius: 100px; margin-left: 6px;
}

.multi-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 0.75rem; }
.multi-cat-opt {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate); cursor: pointer;
  padding: 8px 10px; border-radius: 8px;
  border: 1px solid var(--border2); transition: all 0.2s;
}
.multi-cat-opt:hover { border-color: rgba(201,168,76,0.3); color: var(--white); }
.multi-cat-opt input { accent-color: var(--gold); }

/* Order Summary */
.order-summary-box {
  background: var(--navy3); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.25rem;
}
.order-summary-head { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; }
.order-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--slate); margin-bottom: 10px; }
.order-line.muted { opacity: 0.7; }
.order-line.total { color: var(--gold2); font-size: 16px; font-weight: 700; border-top: 1px solid var(--border2); padding-top: 12px; margin-top: 4px; }
.order-divider { height: 1px; background: var(--border2); margin: 6px 0; }

.delivery-info { margin: 1.25rem 0; display: flex; flex-direction: column; gap: 8px; }
.delivery-row { font-size: 13px; color: var(--slate); font-weight: 300; }

.pay-btn {
  width: 100%; background: linear-gradient(135deg,#C9A84C,#E8C96A);
  color: #0B1120; border: none;
  padding: 16px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  margin-top: 0.5rem; transition: opacity 0.2s, transform 0.15s;
}
.pay-btn:hover   { opacity: 0.9; transform: translateY(-1px); }
.pay-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.pay-security { font-size: 12px; color: var(--muted); text-align: center; margin-top: 0.75rem; }
.pay-methods  { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 0.75rem; }
.pay-method   {
  font-size: 11px; font-weight: 600; color: var(--muted);
  background: var(--navy2); border: 1px solid var(--border2);
  padding: 4px 10px; border-radius: 6px;
}
.razorpay-note { text-align: center; font-size: 12px; color: var(--dim); margin-top: 0.6rem; }

.guarantee-box {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1.25rem; background: var(--navy3);
  border: 1px solid rgba(29,158,117,0.25);
  border-radius: var(--radius);
}
.guarantee-icon { font-size: 24px; flex-shrink: 0; }
.guarantee-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.guarantee-text  { font-size: 13px; color: var(--slate); font-weight: 300; line-height: 1.6; }

/* Success State */
.success-box {
  background: var(--navy2); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg); padding: 3rem; text-align: center;
  max-width: 600px; margin: 0 auto;
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg,#C9A84C,#E8C96A);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 1.5rem; color: #0B1120;
}
.success-box h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 0.75rem; }
.success-box > p { color: var(--slate); font-weight: 300; max-width: 440px; margin: 0 auto 1.5rem; }
.success-details {
  background: var(--navy3); border-radius: 12px;
  padding: 1.25rem; margin: 1.5rem 0; text-align: left;
}
.success-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border2);
  font-size: 14px;
}
.success-row:last-child { border-bottom: none; }
.success-row span  { color: var(--muted); }
.success-row strong { color: var(--white); }
.success-note { font-size: 13px; color: var(--slate); line-height: 1.7; }

/* ── Disclaimer ─────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--navy3); border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2); padding: 1.5rem 1.5rem;
}
.disclaimer-bar .container { font-size: 12px; color: var(--muted); line-height: 1.7; text-align: center; max-width: 900px; }
.disclaimer-bar strong { color: var(--slate); }

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--navy2); border-top: 1px solid rgba(201,168,76,0.15); padding: 4rem 1.5rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--white); margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 340px; font-weight: 300; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col-head { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--dim);
  border-top: 1px solid var(--border2); padding-top: 1.5rem;
  flex-wrap: wrap; gap: 0.5rem;
}

/* ── Modals ─────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.82); z-index: 999;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy2); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 460px; width: 100%; position: relative;
  text-align: center; max-height: 90vh; overflow-y: auto;
}
.modal-box.modal-wide { max-width: 700px; text-align: left; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: transparent; border: 1px solid var(--border2);
  color: var(--muted); font-size: 18px; cursor: pointer;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--gold); color: var(--white); }
.modal-cat-icon { font-size: 48px; margin-bottom: 1rem; }
.modal-box h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem; }
.modal-box p  { color: var(--slate); font-size: 14px; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.modal-meta { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.modal-meta-item {
  text-align: center; padding: 0.75rem 1.5rem;
  background: var(--navy3); border-radius: 10px;
}
.modal-meta-item span { display: block; font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--gold2); }
.modal-meta-item small { font-size: 12px; color: var(--muted); }
.modal-branding-note {
  font-size: 13px; color: var(--slate); margin-bottom: 1.25rem;
  background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; padding: 0.75rem 1rem; font-weight: 400;
}

.modal-sample-preview {
  width: 100%; aspect-ratio: 1; max-width: 200px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg,rgba(201,168,76,0.15),rgba(22,32,56,0.8));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; border: 1px solid var(--border2);
}

.gallery-modal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.gmg-card {
  aspect-ratio: 0.85; border-radius: 12px; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--border2); overflow: hidden; cursor: pointer;
  transition: transform 0.2s;
}
.gmg-card:hover { transform: scale(1.03); }
.gmg-watermark {
  position: absolute; top: 8px; right: -16px;
  background: rgba(201,168,76,0.9); color: #0B1120;
  font-size: 9px; font-weight: 700; padding: 2px 22px;
  transform: rotate(30deg);
}
.gmg-icon  { font-size: 28px; position: relative; z-index: 1; }
.gmg-label { font-size: 11px; color: var(--white); font-weight: 500; text-align: center; position: relative; z-index: 1; padding: 0 0.5rem; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: block; }
  .solution-row   { grid-template-columns: 1fr; gap: 2rem; }
  .checkout-wrap  { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links   { grid-template-columns: repeat(2, 1fr); }
  .steps-row      { flex-direction: column; align-items: stretch; }
  .step-arrow     { display: none; }
  .gallery-modal-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .hero-stats    { gap: 1.5rem; }
  .footer-links  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .multi-cats    { grid-template-columns: 1fr; }
  .compare-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .gallery-modal-grid { grid-template-columns: repeat(2,1fr); }
}
