/* ═══════════════════════════════════════════════
   AAPNA VYAPAR — MODERN 3D REDESIGN
   ═══════════════════════════════════════════════ */

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

:root {
  --primary:   #9a3b2e;
  --primary-d: #7a2d22;
  --primary-l: #c0392b;
  --accent:    #e8c4b8;
  --gold:      #d4a017;
  --gold-l:    #f59e0b;
  --dark:      #060402;
  --dark-2:    #0d0705;
  --dark-card: #120906;
  --mid:       #3d2218;
  --text:      #1c1c1e;
  --text-2:    #4a4a4a;
  --text-3:    #7a7a7a;
  --bg:        #fffdf9;
  --bg-2:      #fdf5f0;
  --white:     #ffffff;
  --border:    #ede0d8;
  --glass:     rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 4px 24px rgba(154,59,46,.10);
  --shadow-lg: 0 24px 80px rgba(154,59,46,.22);
  --glow:      0 0 40px rgba(154,59,46,.40);
  --font:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Utilities ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--text);
  line-height: 1.15; margin-bottom: 18px;
}
.section-sub { font-size: 1.05rem; color: var(--text-2); max-width: 600px; margin-bottom: 64px; line-height: 1.75; }

/* ── Scroll-reveal ── */
.reveal, .reveal-delay {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal-delay { transition-delay: .2s; }
.reveal.visible, .reveal-delay.visible { opacity: 1; transform: translateY(0); }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #c0392b 0%, var(--primary) 40%, #d4691e 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Blob bg shapes ── */
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
  opacity: .15; pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: var(--primary); top: -150px; left: -150px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: #c0392b; top: 200px; right: -100px; animation-delay: 2.5s; }
.blob-3 { width: 300px; height: 300px; background: #e74c3c; bottom: 80px; left: 42%; animation-delay: 5s; }
.blob-4 { width: 450px; height: 450px; background: var(--primary); top: 50%; left: 55%; animation-delay: 1s; }
.blob-5 { width: 700px; height: 700px; background: #fff; top: -50%; left: 25%; animation-delay: 0s; opacity: .06; }

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,-25px) scale(1.08); }
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(255,253,249,.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(154,59,46,.08), 0 4px 24px rgba(154,59,46,.07);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
  transition: padding .3s;
}
.navbar.scrolled .nav-inner { padding: 10px 24px; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 72px; width: auto; object-fit: contain; display: block; }

.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--text-2); font-size: .88rem; font-weight: 500;
  padding: 6px 14px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--primary); background: rgba(154,59,46,.06); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn-ghost {
  text-decoration: none; color: var(--text-2); font-size: .88rem; font-weight: 600;
  padding: 8px 18px; border-radius: 10px; border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: rgba(154,59,46,.04); }

.btn-primary {
  text-decoration: none; background: var(--primary); color: #fff;
  font-size: .88rem; font-weight: 700; padding: 9px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(154,59,46,.35);
  transition: transform .2s, box-shadow .2s, background .2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.25) 50%, transparent 65%);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-primary:hover { background: var(--primary-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(154,59,46,.45); }
.btn-primary:hover::after { transform: translateX(100%); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding: 120px 12% 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 15% 60%, rgba(154,59,46,.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(192,57,43,.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 90%, rgba(231,76,60,.07) 0%, transparent 50%),
    var(--bg);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(154,59,46,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154,59,46,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(154,59,46,.08);
  border: 1px solid rgba(154,59,46,.22);
  color: var(--primary); font-size: .8rem; font-weight: 700;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 30px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(154,59,46,.5);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(154,59,46,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(154,59,46,0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.12;
  color: var(--text); margin-bottom: 22px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.1rem; color: var(--text-2); line-height: 1.75;
  max-width: 520px; margin-bottom: 38px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-hero-primary {
  text-decoration: none; color: #fff;
  font-size: .95rem; font-weight: 700; padding: 15px 32px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-l) 0%, var(--primary) 50%, var(--primary-d) 100%);
  background-size: 200% 200%;
  box-shadow: 0 8px 28px rgba(154,59,46,.40), 0 0 0 0 rgba(154,59,46,.3);
  transition: transform .25s, box-shadow .25s, background-position .4s;
  position: relative; overflow: hidden;
}
.btn-hero-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.3) 50%, transparent 65%);
  transform: translateX(-100%);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(154,59,46,.5), 0 0 0 6px rgba(154,59,46,.10);
  background-position: right center;
}
.btn-hero-primary:hover::after { transition: transform .6s; transform: translateX(100%); }

.btn-hero-ghost {
  text-decoration: none; color: var(--text); background: rgba(255,255,255,.8);
  font-size: .95rem; font-weight: 600; padding: 15px 26px; border-radius: 14px;
  display: flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.btn-hero-ghost:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(154,59,46,.12); }
.play-icon { font-size: .75rem; color: var(--primary); }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding: 20px 24px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(154,59,46,.12);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(154,59,46,.06);
  width: fit-content;
}
.stat-divider { width: 1px; height: 44px; background: var(--border); }
.stat-num {
  display: block; font-size: 1.7rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { display: block; font-size: .76rem; color: var(--text-3); font-weight: 600; margin-top: 2px; }

/* ── Dashboard Card ── */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  perspective: 1200px;
}
.dashboard-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow:
    0 32px 80px rgba(154,59,46,.20),
    0 8px 32px rgba(0,0,0,.10),
    0 0 0 1px rgba(154,59,46,.06);
  width: 100%; max-width: 420px;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.175,.885,.32,1.275), box-shadow .4s;
  animation: floatSlow 6s ease-in-out infinite;
}
.dashboard-card:hover {
  box-shadow:
    0 48px 100px rgba(154,59,46,.28),
    0 16px 48px rgba(0,0,0,.14),
    0 0 0 1px rgba(154,59,46,.10);
}
@keyframes floatSlow {
  0%,100% { transform: translateY(0) rotateX(2deg) rotateY(-3deg); }
  50%      { transform: translateY(-14px) rotateX(2deg) rotateY(-3deg); }
}

.dc-header {
  background: linear-gradient(90deg, #f5f5f7, #f0f0f2);
  padding: 13px 16px; display: flex; align-items: center; gap: 6px;
}
.dc-dot { width: 11px; height: 11px; border-radius: 50%; }
.dc-dot.red { background: #ff5f57; }
.dc-dot.yellow { background: #ffbd2e; }
.dc-dot.green { background: #28c840; }
.dc-title { margin-left: 8px; font-size: .78rem; color: #888; font-weight: 600; }

.dc-body { padding: 20px; }
.dc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.dc-metric {
  background: linear-gradient(135deg, var(--bg-2), rgba(154,59,46,.03));
  border-radius: 14px; padding: 14px;
  border: 1px solid rgba(154,59,46,.08);
}
.dc-metric-label { display: block; font-size: .68rem; color: var(--text-3); font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.dc-metric-value { display: block; font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.dc-metric-trend { font-size: .72rem; font-weight: 700; }
.dc-metric-trend.up { color: #16a34a; }
.dc-metric-trend.down { color: #e74c3c; }

.dc-chart { height: 80px; display: flex; align-items: flex-end; gap: 5px; padding: 0 4px; margin-bottom: 20px; }
.dc-bar {
  flex: 1; border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, rgba(154,59,46,.08), rgba(154,59,46,.18));
  transition: background .3s;
}
.dc-bar.active { background: linear-gradient(to top, var(--primary-d), var(--primary-l)); box-shadow: 0 -4px 12px rgba(154,59,46,.3); }

.dc-orders { display: flex; flex-direction: column; gap: 10px; }
.dc-order-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.dc-party { flex: 1; font-size: .82rem; font-weight: 600; color: var(--text); }
.dc-amount { font-size: .82rem; color: var(--text-2); font-weight: 600; }
.badge-status { font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.badge-status.completed { background: #dcfce7; color: #15803d; }
.badge-status.pending   { background: #fef9c3; color: #854d0e; }
.badge-status.partial   { background: #dbeafe; color: #1e40af; }

/* ── Floating cards ── */
.floating-card {
  position: absolute; background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(154,59,46,.12);
  border-radius: 16px; padding: 12px 18px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: 0 12px 36px rgba(0,0,0,.12), 0 2px 8px rgba(154,59,46,.08);
  white-space: nowrap;
}
.fc-1 { bottom: 40px; left: -40px; animation: floatSlow 7s 1.2s ease-in-out infinite; }
.fc-2 { top: 40px; right: -30px; animation: floatSlow 7s 2.4s ease-in-out infinite; }
.fc-icon { font-size: 1.6rem; }
.fc-title { font-size: .82rem; font-weight: 800; color: var(--text); }
.fc-sub { font-size: .72rem; color: var(--text-3); margin-top: 1px; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-3); font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .3; transform: scaleY(.7); } }

/* ══════════════════════════════════════════
   LOGO STRIP
══════════════════════════════════════════ */
.logo-strip {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 50%, var(--primary-l) 100%);
  padding: 18px 0; overflow: hidden;
  box-shadow: 0 4px 24px rgba(154,59,46,.25);
}
.logo-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.strip-label { color: rgba(255,255,255,.65); font-size: .78rem; font-weight: 600; white-space: nowrap; letter-spacing: .06em; text-transform: uppercase; }
.strip-cities { display: flex; gap: 0; overflow: hidden; flex: 1; }
.strip-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.strip-cities span, .strip-track span {
  color: rgba(255,255,255,.92); font-size: .9rem; font-weight: 700;
  padding: 0 4px; letter-spacing: .03em;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   FEATURES — DARK SECTION
══════════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, #080402 0%, #0f0605 50%, #080402 100%);
  position: relative; overflow: hidden;
}
.features::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(154,59,46,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154,59,46,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.features .section-label { color: #e8c4b8; }
.features .section-title { color: #ffffff; }
.features .section-sub   { color: rgba(255,255,255,.55); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 20px;
  position: relative; z-index: 1;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 34px 28px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.175,.885,.32,1.2), box-shadow .45s, border-color .3s;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(154,59,46,.12) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.feature-card:hover {
  transform: perspective(900px) rotateX(-4deg) rotateY(7deg) translateZ(12px);
  border-color: rgba(154,59,46,.45);
  box-shadow: 24px 36px 72px rgba(0,0,0,.5), 0 0 40px rgba(154,59,46,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
.feature-card:hover::before { opacity: 1; }

.feat-icon-wrap {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--c) 25%, #1a0908), color-mix(in srgb, var(--c) 12%, #0d0504));
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--c); margin-bottom: 22px;
  box-shadow: 0 0 20px color-mix(in srgb, var(--c) 20%, transparent);
}
.feat-icon-wrap svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 11px; color: #fff; }
.feature-card p  { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-it-works { position: relative; padding: 120px 0; background: var(--bg-2); overflow: hidden; }
.hiw-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.steps { display: flex; gap: 0; align-items: flex-start; position: relative; }
.steps::before {
  content: '';
  position: absolute; top: 60px; left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-l), var(--primary));
  background-size: 200% 100%;
  animation: gradientLine 3s linear infinite;
  opacity: .25;
  z-index: 0;
}
@keyframes gradientLine { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }

.step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; padding: 0 20px; z-index: 1; }
.step-number {
  font-size: 5rem; font-weight: 900; color: rgba(154,59,46,.07);
  font-family: 'Playfair Display', serif;
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  pointer-events: none; user-select: none;
  background: linear-gradient(135deg, rgba(154,59,46,.12), rgba(154,59,46,.03));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-arrow { position: absolute; right: -24px; top: 52px; font-size: 1.4rem; color: rgba(154,59,46,.3); display: flex; align-items: center; }
.step-content {
  background: var(--white); border-radius: var(--radius);
  padding: 38px 28px; text-align: center;
  border: 1px solid var(--border); width: 100%;
  box-shadow: 0 4px 24px rgba(154,59,46,.07);
  position: relative; z-index: 1;
  transition: transform .35s cubic-bezier(.175,.885,.32,1.2), box-shadow .35s, border-color .3s;
}
.step-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(154,59,46,.16);
  border-color: rgba(154,59,46,.2);
}
.step-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.step-content h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.step-content p { font-size: .88rem; color: var(--text-2); line-height: 1.7; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { padding: 120px 0; background: var(--bg); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; align-items: start;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 28px;
  transition: transform .35s, box-shadow .35s, border-color .3s;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-size: 5rem; font-family: 'Playfair Display', serif;
  color: rgba(154,59,46,.07); line-height: 1; pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(154,59,46,.14);
  border-color: rgba(154,59,46,.18);
}
.testimonial-card.featured {
  background: linear-gradient(145deg, #7a1f14 0%, #9a3b2e 55%, #b54a3c 100%);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(154,59,46,.35);
}
.testimonial-card.featured::before { color: rgba(255,255,255,.12); }
.testimonial-card.featured p,
.testimonial-card.featured .testi-name,
.testimonial-card.featured .testi-firm { color: #fff; }
.testimonial-card.featured .stars { color: #fbbf24; }
.testimonial-card.featured .testi-avatar { background: rgba(255,255,255,.18); color: #fff; border: 2px solid rgba(255,255,255,.25); }

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-card p { font-size: .93rem; color: var(--text-2); line-height: 1.75; margin-bottom: 26px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(154,59,46,.1); color: var(--primary);
  font-weight: 800; font-size: .8rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.testi-firm { font-size: .77rem; color: var(--text-3); }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing { padding: 120px 0; background: var(--bg-2); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
  perspective: 1200px;
}
.pricing-card {
  background: #fff; border-radius: 22px; padding: 38px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1.5px solid transparent;
  position: relative; display: flex; flex-direction: column;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.175,.885,.32,1.2), box-shadow .4s, border-color .3s;
}
.pricing-card:hover {
  transform: perspective(1000px) translateZ(12px) rotateX(-2deg);
  box-shadow: 0 24px 64px rgba(154,59,46,.14);
  border-color: rgba(154,59,46,.2);
}
.pricing-card.popular {
  background: linear-gradient(145deg, #150806 0%, #7a2d22 50%, #9a3b2e 100%);
  border-color: transparent;
  box-shadow: 0 16px 56px rgba(154,59,46,.40);
  transform: translateY(-8px);
}
.pricing-card.popular:hover {
  transform: perspective(1000px) translateY(-8px) translateZ(16px) rotateX(-2deg);
  box-shadow: 0 32px 80px rgba(154,59,46,.50);
}
.pricing-card.popular .plan-badge { color: #e8c4b8; }
.pricing-card.popular .plan-price { color: #fff; }
.pricing-card.popular .plan-per   { color: rgba(255,255,255,.65); }
.pricing-card.popular .plan-desc  { color: rgba(255,255,255,.6); }
.pricing-card.popular .plan-features li { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.1); }
.pricing-card.popular .plan-features li::before { color: #fbbf24; }

.popular-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 20px; border-radius: 20px;
  letter-spacing: .08em; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,160,23,.5);
}
.plan-badge { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); margin-bottom: 14px; }
.plan-price { font-size: 44px; font-weight: 900; color: #1a1a2e; line-height: 1; margin-bottom: 8px; letter-spacing: -.02em; }
.plan-per { font-size: 15px; font-weight: 500; color: #6b7280; }
.plan-desc { font-size: 13px; color: #6b7280; margin-bottom: 28px; min-height: 38px; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 32px; flex: 1; }
.plan-features li {
  font-size: 13.5px; color: #374151; padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex; align-items: center; gap: 10px;
}
.plan-features li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.btn-plan {
  width: 100%; padding: 14px; border-radius: 12px;
  border: 2px solid var(--primary); background: transparent;
  color: var(--primary); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .25s;
  position: relative; overflow: hidden;
}
.btn-plan::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.3) 50%, transparent 65%);
  transform: translateX(-100%);
}
.btn-plan:hover { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(154,59,46,.3); }
.btn-plan:hover::after { transition: transform .5s; transform: translateX(100%); }
.btn-plan-primary { background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.12)); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-plan-primary:hover { background: rgba(255,255,255,.9); color: var(--primary); border-color: transparent; box-shadow: 0 8px 24px rgba(0,0,0,.15); }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 56px auto 0; } }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  position: relative; padding: 120px 24px;
  text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #060201 0%, #2a0e07 25%, #7a2d22 50%, #2a0e07 75%, #060201 100%);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff; margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(154,59,46,.4);
}
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,.65); margin-bottom: 44px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-white {
  text-decoration: none; color: rgba(255,255,255,.85);
  font-size: .95rem; font-weight: 600; padding: 15px 28px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { padding: 120px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }

.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px;
  box-shadow: 0 8px 40px rgba(154,59,46,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 7px; letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem;
  background: var(--bg); color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(154,59,46,.10);
}
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--primary-l), var(--primary-d));
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 20px rgba(154,59,46,.35);
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn-submit::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.25) 50%, transparent 65%);
  transform: translateX(-100%);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(154,59,46,.45); }
.btn-submit:hover::after { transition: transform .5s; transform: translateX(100%); }
.form-success { display: none; margin-top: 16px; color: #15803d; background: #dcfce7; padding: 13px 16px; border-radius: 10px; font-weight: 600; font-size: .9rem; }
.form-success.show { display: block; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 24px; display: flex; align-items: center; gap: 16px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.info-card:hover {
  border-color: rgba(154,59,46,.25);
  box-shadow: 0 8px 28px rgba(154,59,46,.09);
  transform: translateX(4px);
}
.info-icon { font-size: 1.5rem; }
.info-label { font-size: .72rem; color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.info-value { font-size: .93rem; font-weight: 700; color: var(--text); }
.info-note {
  background: linear-gradient(135deg, rgba(154,59,46,.06), rgba(154,59,46,.02));
  border: 1px solid rgba(154,59,46,.15); border-radius: var(--radius);
  padding: 20px 24px; font-size: .88rem; color: var(--text-2); line-height: 1.6;
}
.info-note strong { color: var(--primary); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: linear-gradient(180deg, #060201 0%, #0d0403 100%); padding: 80px 0 0; position: relative; }
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,59,46,.4), transparent);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 56px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; display: block; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 300px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.28);
}

/* ══════════════════════════════════════════
   PAYMENT / REGISTER MODALS
══════════════════════════════════════════ */
.pay-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
}
.pay-modal {
  background: #fff; border-radius: 22px; padding: 38px;
  width: 100%; max-width: 460px;
  position: relative; box-shadow: 0 32px 80px rgba(0,0,0,.3);
  max-height: 90vh; overflow-y: auto;
}
.pay-close {
  position: absolute; top: 16px; right: 16px;
  background: #f3f4f6; border: none; font-size: 15px; color: #6b7280;
  cursor: pointer; line-height: 1; padding: 6px 10px; border-radius: 8px;
  transition: background .15s, color .15s;
}
.pay-close:hover { background: #e5e7eb; color: #374151; }
.pay-header { margin-bottom: 28px; }
.pay-title { font-size: 22px; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; }
.pay-subtitle { font-size: 14px; color: var(--primary); font-weight: 600; }
.pay-field { margin-bottom: 16px; }
.pay-field label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.pay-field input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 10px; font-size: 14px;
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.pay-field input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(154,59,46,.10); }
.btn-pay {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--primary-l), var(--primary-d));
  color: #fff; border: none; border-radius: 11px;
  font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 8px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(154,59,46,.3);
}
.btn-pay:hover:not(:disabled) { opacity: .92; transform: translateY(-1px); }
.btn-pay:disabled { opacity: .6; cursor: not-allowed; }
.pay-secure { font-size: 12px; color: #9ca3af; text-align: center; margin-top: 10px; }
.pay-success { text-align: center; padding: 16px 0; }
.pay-success-icon { font-size: 48px; margin-bottom: 12px; }
.pay-success-title { font-size: 22px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.pay-success-body { font-size: 14px; color: #6b7280; margin-bottom: 16px; }
.pay-creds { background: #f9f5f4; border: 1px solid #f0e8e7; border-radius: 10px; padding: 16px; font-size: 13px; text-align: left; line-height: 2; font-family: monospace; }
.pay-creds strong { color: var(--primary); }
.reg-error { font-size: 13px; color: #dc2626; min-height: 20px; margin-top: 4px; }

/* ═══════════════════════════════════════════════
   ACCOUNT DASHBOARD MODAL
═══════════════════════════════════════════════ */
.acc-modal { max-width: 560px; width: 96%; padding: 0; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; }
.acc-dashboard { display: flex; flex-direction: column; height: 100%; }

.acc-dash-header {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 28px 20px;
  background: linear-gradient(135deg, #7a1f14 0%, #9a3b2e 100%);
  border-radius: 22px 22px 0 0; flex-shrink: 0;
}
.acc-avatar-lg {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.18); color: #fff;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 2px solid rgba(255,255,255,.3);
}
.acc-dash-info { flex: 1; min-width: 0; }
.acc-dash-name  { font-size: 18px; font-weight: 800; color: #fff; }
.acc-dash-biz   { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acc-dash-email { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.acc-signout-btn {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: 7px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background .15s; white-space: nowrap; flex-shrink: 0;
}
.acc-signout-btn:hover { background: rgba(255,255,255,.25); }

.acc-tabs-bar { display: flex; gap: 0; background: #f8f5f4; border-bottom: 1px solid #ede0d8; padding: 0 28px; flex-shrink: 0; }
.acc-tab-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 16px; font-size: 13px; font-weight: 600;
  color: #6b7280; background: none; border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer; transition: color .15s, border-color .15s; white-space: nowrap;
}
.acc-tab-btn:hover { color: var(--primary); }
.acc-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.acc-tab-btn svg { opacity: .7; }
.acc-tab-btn.active svg { opacity: 1; }

.acc-tab-body { padding: 24px 28px 28px; overflow-y: auto; flex: 1; }
.acc-tab-section-title { font-size: 11px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }

.acc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.acc-detail-item { background: #fafaf9; border: 1px solid #ede0d8; border-radius: 10px; padding: 14px 16px; }
.acc-detail-item.full { grid-column: 1 / -1; }
.acc-detail-label { font-size: 11px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px; }
.acc-detail-value { font-size: 14px; font-weight: 600; color: #1a1a2e; }
.acc-verified-tag { display: inline-block; background: #dcfce7; color: #16a34a; font-size: 10px; font-weight: 700; border-radius: 20px; padding: 2px 8px; margin-left: 6px; }
.acc-erp-info-card { background: #faf5f4; border: 1.5px solid #f0e0db; border-radius: 12px; overflow: hidden; }
.acc-erp-info-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; font-size: 13px; border-bottom: 1px solid #f0e0db; }
.acc-erp-info-row:last-child { border-bottom: none; }
.acc-erp-info-label { font-weight: 600; color: #6b7280; }
.acc-erp-link { color: var(--primary); font-weight: 700; text-decoration: none; }
.acc-erp-link:hover { text-decoration: underline; }

.acc-status-card { border-radius: 14px; padding: 20px; margin-bottom: 6px; }
.acc-status-card.active  { background: #f0fdf4; border: 1.5px solid #86efac; }
.acc-status-card.expired { background: #fef2f2; border: 1.5px solid #fca5a5; }
.acc-status-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.acc-status-label { font-size: 11px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.acc-status-plan  { font-size: 18px; font-weight: 800; color: #1a1a2e; }
.acc-status-price { font-size: 13px; font-weight: 500; color: #6b7280; }
.acc-status-badge { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.acc-status-badge.active  { background: #dcfce7; color: #16a34a; }
.acc-status-badge.expired { background: #fee2e2; color: #dc2626; }
.acc-status-badge.none    { background: #f3f4f6; color: #6b7280; }
.acc-status-meta { font-size: 13px; color: #6b7280; margin-bottom: 14px; }
.acc-status-meta.lifetime { color: #16a34a; font-weight: 600; }
.acc-progress-bar { background: #e5e7eb; border-radius: 99px; height: 6px; margin-bottom: 16px; }
.acc-progress-fill { background: var(--primary); border-radius: 99px; height: 6px; transition: width .3s; }
.acc-erp-access-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 11px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; transition: background .2s;
}
.acc-erp-access-btn:hover:not(:disabled) { background: var(--primary-d); }
.acc-erp-access-btn:disabled { opacity: .7; cursor: not-allowed; }

.acc-no-sub { text-align: center; padding: 20px 0 24px; }
.acc-no-sub-icon { font-size: 38px; margin-bottom: 10px; }
.acc-no-sub-title { font-size: 17px; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; }
.acc-no-sub-desc  { font-size: 13px; color: #6b7280; margin-bottom: 20px; }

.acc-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.acc-plan-card2 {
  border: 1.5px solid #e5e7eb; border-radius: 14px;
  padding: 16px 14px; text-align: center;
  background: #fff; position: relative; transition: border-color .15s, box-shadow .15s;
}
.acc-plan-card2:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(154,59,46,.10); }
.acc-plan-card2.popular { border-color: var(--primary); background: #fff9f8; }
.acc-popular-tag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 20px; padding: 3px 10px; white-space: nowrap;
}
.acc-plan-badge  { font-size: 10px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.acc-plan-name   { font-size: 12px; font-weight: 600; color: #6b7280; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.acc-plan-price2 { font-size: 22px; font-weight: 800; color: #1a1a2e; margin-bottom: 2px; }
.acc-plan-period { font-size: 12px; font-weight: 500; color: #9ca3af; }
.acc-plan-features { list-style: none; margin: 10px 0 14px; text-align: left; }
.acc-plan-features li { font-size: 11px; color: #6b7280; padding: 2px 0; padding-left: 14px; position: relative; }
.acc-plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.acc-plan-btn2 {
  width: 100%; padding: 9px 0; border-radius: 8px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  border: 1.5px solid var(--primary); color: var(--primary); background: #fff;
  transition: background .15s, color .15s;
}
.acc-plan-btn2:hover:not(:disabled) { background: var(--primary); color: #fff; }
.acc-plan-btn2.primary { background: var(--primary); color: #fff; }
.acc-plan-btn2.primary:hover:not(:disabled) { background: var(--primary-d); }
.acc-plan-btn2:disabled { opacity: .6; cursor: not-allowed; }

.acc-security-form { max-width: 380px; }
.acc-sec-field { margin-bottom: 14px; }
.acc-sec-field label { display: block; font-size: 12px; font-weight: 700; color: #374151; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.acc-sec-field input { width: 100%; padding: 11px 14px; border: 1.5px solid #e5e7eb; border-radius: 9px; font-size: 14px; outline: none; transition: border-color .15s; }
.acc-sec-field input:focus { border-color: var(--primary); }
.acc-sec-err { font-size: 13px; min-height: 18px; margin-bottom: 12px; }
.acc-sec-btn { padding: 12px 28px; background: var(--primary); color: #fff; border: none; border-radius: 9px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; }
.acc-sec-btn:hover:not(:disabled) { background: var(--primary-d); }
.acc-sec-btn:disabled { opacity: .6; cursor: not-allowed; }

.login-modal { max-width: 400px; width: 94%; }
.login-header { margin-bottom: 24px; }
.login-title  { font-size: 22px; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; }
.login-sub    { font-size: 13px; color: #6b7280; }
.login-field  { margin-bottom: 16px; }
.login-field label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.login-field input { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 10px; font-size: 14px; outline: none; transition: border-color .15s; }
.login-field input:focus { border-color: var(--primary); }
.btn-login { width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-login:hover:not(:disabled) { background: var(--primary-d); }
.btn-login:disabled { opacity: .6; cursor: not-allowed; }
.login-err { font-size: 13px; color: #dc2626; min-height: 18px; margin-bottom: 10px; }
.login-footer { font-size: 13px; color: #6b7280; text-align: center; margin-top: 14px; }
.login-footer a { color: var(--primary); font-weight: 600; text-decoration: none; }

.acc-close-btn {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255,255,255,.2); border: none;
  color: #fff; font-size: 16px; font-weight: 700;
  width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background .15s;
}
.acc-close-btn:hover { background: rgba(255,255,255,.35); }

.nav-user-chip {
  display: inline-flex; align-items: center;
  background: var(--accent); color: var(--primary);
  border-radius: 20px; padding: 4px 12px;
  font-size: 13px; font-weight: 700;
}
.btn-outline-sm {
  padding: 7px 16px; border-radius: 8px;
  border: 1.5px solid var(--primary); color: var(--primary);
  background: transparent; font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-outline-sm:hover { background: var(--primary); color: #fff; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 80px; gap: 48px; }
  .hero-visual { order: -1; }
  .dashboard-card { max-width: 480px; }
  .fc-1, .fc-2 { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(255,253,249,.98); backdrop-filter: blur(16px);
    padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.1); z-index: 999;
  }

  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stat-divider { display: none; }

  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .step { padding: 0; margin-bottom: 16px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .section-sub { max-width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
}

@media (max-width: 600px) {
  .acc-plan-grid { grid-template-columns: 1fr; }
  .acc-detail-grid { grid-template-columns: 1fr; }
  .acc-detail-item.full { grid-column: 1; }
  .acc-tab-body { padding: 18px 18px 24px; }
  .acc-tabs-bar { padding: 0 18px; }
  .acc-dash-header { padding: 20px 18px 16px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
}
