/* ═══════════════════════════════════════
   ALTIN — v3 Design System
   Premium · Warm · Game-Room Vibe
   ═══════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { 
  font-family: 'DM Sans', system-ui, sans-serif; 
  color: #1a1a2e; 
  background-color: #f8fafc; 
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.6; 
  overflow-x: hidden; 
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'DM Sans', sans-serif; line-height: 1.12; letter-spacing: -0.02em; }

/* ── VARIABLES ── */
:root {
  --c-gold: #059669;
  --c-gold-dark: #047857;
  --c-gold-light: #d1fae5;
  --c-gold-bg: #ecfdf5;
  --c-emerald: #059669;
  --c-emerald-dark: #047857;
  --c-emerald-light: #d1fae5;
  --c-emerald-bg: #ecfdf5;
  --c-dark: #0a0a12;
  --c-dark-2: #14141f;
  --c-dark-3: #1f1f2e;
  --c-text: #1a1a2e;
  --c-text-2: #52525b;
  --c-text-3: #a1a1aa;
  --c-bg: #faf8f5;
  --c-bg-2: #f0ede8;
  --c-border: #e5e0d8;
  --c-border-2: #d4cdc0;
  --c-red: #dc2626;
  --c-red-dot: #ef4444;
  --c-shadow: 0 1px 2px rgba(0,0,0,.04);
  --c-shadow-md: 0 4px 12px rgba(0,0,0,.06);
  --c-shadow-lg: 0 12px 32px rgba(0,0,0,.08);
  --c-shadow-xl: 0 24px 48px rgba(0,0,0,.1);
  --c-glow-gold: 0 0 20px rgba(5,150,105,.15);
  --c-glow-emerald: 0 0 20px rgba(5,150,105,.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --max-w: 1200px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── UTILITY ── */
.v3-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   HEADER - Modern Floating Glassmorphism
   ═══════════════════════════════════════ */
.v3-header {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 0 20px; height: 64px;
  width: calc(100% - 32px); max-width: 1200px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.v3-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateX(-50%) translateY(4px);
}
.v3-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 1.1rem; color: var(--c-text);
  letter-spacing: -0.3px;
}
.v3-brand-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--c-emerald), #10b981);
  border-radius: 10px;
  font-size: 1.1rem; font-weight: 700; color: #0a0a12;
}
.v3-nav { display: flex; gap: 6px; flex: 1; justify-content: center; align-items: center; }
.v3-nav a {
  padding: 8px 16px; border-radius: var(--radius-xs);
  font-size: .86rem; font-weight: 500; color: var(--c-text-2);
  transition: all var(--transition);
  position: relative;
}
.v3-nav a:hover { color: var(--c-emerald-dark); background: var(--c-emerald-bg); }
.v3-nav a.active { color: var(--c-emerald-dark); background: var(--c-emerald-bg); font-weight: 600; }
.v3-header-right { display: flex; gap: 10px; align-items: center; }

/* ── BUTTONS ── */
.v3-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #34d399, #059669);
  color: #0a0a12; font-size: .88rem; font-weight: 700;
  border: none;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.v3-btn-primary:hover { transform: translateY(-1px); box-shadow: var(--c-glow-gold); }
.v3-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-sm);
  background: var(--c-bg-2); color: var(--c-text);
  font-size: .88rem; font-weight: 600;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.v3-btn-secondary:hover { border-color: var(--c-border-2); background: var(--c-border); }
.v3-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-xs);
  font-size: .86rem; font-weight: 600; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  transition: all var(--transition);
}
.v3-btn-ghost:hover { color: #fff; background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.v3-btn-lg { padding: 14px 32px; font-size: .95rem; border-radius: var(--radius); }
.v3-btn-full { width: 100%; }
.v3-btn-icon { padding: 8px; border-radius: var(--radius-xs); }
.v3-btn-icon:hover { background: rgba(255,255,255,.06); }
.v3-btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-sm);
  background: #25D366; color: #fff;
  font-size: .88rem; font-weight: 700;
  transition: all var(--transition);
}
.v3-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.v3-btn-wa.v3-btn-lg { padding: 14px 32px; font-size: .95rem; border-radius: var(--radius); }

/* ── BURGER ── */
.v3-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.v3-burger span { display: block; width: 20px; height: 2px; background: var(--c-text); border-radius: 2px; transition: .25s; }
.v3-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v3-burger.open span:nth-child(2) { opacity: 0; }
.v3-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE ── */
.v3-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,.3); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.v3-overlay.open { opacity: 1; pointer-events: all; }
.v3-mobile {
  position: absolute; top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  background: #fff; padding: 88px 28px 32px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.1);
}
.v3-overlay.open .v3-mobile { transform: translateX(0); }
.v3-mobile a {
  display: block; padding: 16px 0; font-size: 1.05rem; font-weight: 500;
  color: var(--c-text-2); border-bottom: 1px solid var(--c-border);
  transition: color var(--transition);
}
.v3-mobile a:hover { color: var(--c-emerald-dark); }


/* ── NAV DROPDOWN (Şehirler) ── */
.v3-nav-dropdown { position: relative; display: inline-block; }
.v3-nav-dropdown > a { padding: 6px 12px; cursor: pointer; }
.v3-nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-4px);
  background: #fff; border-radius: 14px; padding: 10px;
  border: 1px solid var(--c-border); box-shadow: 0 16px 40px rgba(0,0,0,.12);
  min-width: 200px; opacity: 0; visibility: hidden;
  transition: all .25s cubic-bezier(.4,0,.2,1); z-index: 100;
  display: flex; flex-direction: column; gap: 2px;
}
.v3-nav-dropdown:hover .v3-nav-dropdown-menu,
.v3-nav-dropdown:focus-within .v3-nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.v3-nav-dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 10px;
  font-size: .85rem; color: var(--c-text-2); white-space: nowrap;
  transition: all .15s ease; text-align: left;
}
.v3-nav-dropdown-menu a:hover { background: var(--c-emerald-bg); color: var(--c-emerald-dark); }
.v3-nav-dropdown-wide { width: 320px; max-height: 70vh; overflow-y: auto; }
@media (max-width: 768px) {
  .v3-nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; grid-template-columns: 1fr; opacity: 1; visibility: visible; display: none; }
  .v3-nav-dropdown:hover .v3-nav-dropdown-menu,
  .v3-nav-dropdown:focus-within .v3-nav-dropdown-menu { display: grid; }
  .v3-nav-dropdown-menu a { text-align: left; padding: 8px 12px; font-size: .85rem; }
}
/* ═══════════════════════════════════════
   HERO - Dramatic Dark Gradient
   ═══════════════════════════════════════ */
.v3-hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px;
  background: radial-gradient(circle at 50% -20%, #1e293b 0%, #0f172a 70%);
}
.v3-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(52, 211, 153, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}
.v3-hero-decor {
  position: absolute;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
.v3-decor-1 {
  width: 60px; height: 90px;
  top: 20%; left: 15%;
  transform: rotate(-15deg);
  animation-delay: 0s;
}
.v3-decor-2 {
  width: 80px; height: 120px;
  bottom: 25%; right: 10%;
  transform: rotate(25deg);
  background: linear-gradient(135deg, rgba(5,150,105,0.15) 0%, rgba(5,150,105,0.02) 100%);
  border: 1px solid rgba(5,150,105,0.2);
  animation-delay: -4s;
}
.v3-decor-3 {
  width: 50px; height: 75px;
  top: 30%; right: 20%;
  transform: rotate(10deg);
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 5deg)); }
}
.v3-decor-1 { --rot: -15deg; }
.v3-decor-2 { --rot: 25deg; }
.v3-decor-3 { --rot: 10deg; }
.v3-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 64px;
  align-items: center; justify-content: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.v3-hero-grid.v3-hero-center {
  display: flex; justify-content: center;
  text-align: center;
}
.v3-hero-text { max-width: 700px; }
.v3-hero-text-center {
  display: flex; flex-direction: column; align-items: center;
}
.v3-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(5,150,105,.15);
  color: #34d399;
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  border: 1px solid rgba(5,150,105,.3);
  backdrop-filter: blur(8px);
}
.v3-hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 10px rgba(52,211,153,.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(.9); }
}
.v3-hero-title {
  font-size: clamp(3rem, 7vw, 5rem); font-weight: 800;
  color: #fff; margin: 32px 0 20px;
  letter-spacing: -3px; line-height: 1.05;
}
.v3-hero-accent {
  display: inline-block;
  background: linear-gradient(135deg, #34d399 0%, #059669 50%, #047857 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.v3-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  max-width: 560px; line-height: 1.8; margin-bottom: 40px;
}
.v3-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.v3-hero-stats.v3-hero-stats-center { justify-content: center; }
.v3-hero-stats {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.v3-hero-stat { display: flex; align-items: center; gap: 12px; }
.v3-hero-stat-icon {
  width: 28px; height: 28px; color: #34d399;
  flex-shrink: 0;
}
.v3-hero-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -1px;
  line-height: 1;
}
.v3-hero-stat span { font-size: .76rem; color: rgba(255,255,255,.6); font-weight: 500; }
.v3-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ── HERO VISUAL ── */
.v3-hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  min-height: 460px;
}
.v3-table-felt {
  position: relative;
  width: 340px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.v3-table-felt-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 55%, #1a6b3c 0%, #14522e 40%, #0d3d22 100%);
  border-radius: 50%;
  box-shadow:
    0 20px 60px rgba(0,0,0,.2),
    inset 0 -4px 20px rgba(0,0,0,.15),
    inset 0 4px 20px rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.06);
}
.v3-tile-fan {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
  width: 280px; height: 250px;
  transform: translateY(20px);
}
.v3-otile {
  position: absolute; bottom: 0;
  width: 38px; height: 60px;
  background: linear-gradient(180deg,
    var(--c) 0%, var(--c) 10px,
    #fcf9f0 10px, #f5f0e6 100%
  );
  border-radius: 5px;
  box-shadow:
    0 3px 10px rgba(0,0,0,.15),
    inset 0 0 0 1px rgba(0,0,0,.03);
  transform-origin: bottom center;
  transform: rotate(var(--r));
  transition: transform .3s ease;
}
.v3-otile::after {
  content: attr(data-num);
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: .8rem;
  color: var(--c);
}
.v3-otile::before {
  content: '';
  position: absolute; top: 2px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 6px; border-radius: 2px;
  background: rgba(255,255,255,.25);
}
.v3-otile:nth-child(1) { left: calc(50% - 65px); }
.v3-otile:nth-child(2) { left: calc(50% - 56px); }
.v3-otile:nth-child(3) { left: calc(50% - 47px); }
.v3-otile:nth-child(4) { left: calc(50% - 38px); }
.v3-otile:nth-child(5) { left: calc(50% - 29px); }
.v3-otile:nth-child(6) { left: calc(50% - 20px); }
.v3-otile:nth-child(7) { left: calc(50% - 11px); }
.v3-otile:nth-child(8) { left: calc(50% - 2px); }
.v3-otile:nth-child(9) { left: calc(50% + 7px); }
.v3-otile:nth-child(10) { left: calc(50% + 16px); }
.v3-otile:nth-child(11) { left: calc(50% + 25px); }
.v3-otile:nth-child(12) { left: calc(50% + 34px); }
.v3-otile:nth-child(13) { left: calc(50% + 43px); }
.v3-otile:nth-child(14) { left: calc(50% + 52px); }

.v3-hero-card {
  position: absolute; z-index: 2;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 220px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .3s ease, box-shadow .3s ease;
}
.v3-hero-card:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.v3-hero-card-label {
  font-size: .65rem; font-weight: 700; color: #34d399;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
}
.v3-hero-card-steps { display: flex; flex-direction: column; gap: 8px; }
.v3-hero-card-step {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; color: rgba(255,255,255,.8); font-weight: 500;
}
.v3-hcs-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(5,150,105,.3); color: #34d399;
  font-size: .65rem; font-weight: 800;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════ */
.v3-social-proof {
  background: linear-gradient(90deg, #059669 0%, #10b981 50%, #059669 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.v3-social-proof::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.v3-social-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.v3-social-item {
  text-align: center; color: #fff;
}
.v3-social-item strong {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; margin-bottom: 4px;
}
.v3-social-item span { font-size: .85rem; opacity: .9; }

/* ═══════════════════════════════════════
   VALUE PROPS
   ═══════════════════════════════════════ */
.v3-values-section { padding: 100px 0; background: #faf8f5; }
.v3-values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.v3-value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--c-border);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.v3-value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #34d399);
  transform: scaleX(0); transition: transform .3s ease;
}
.v3-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border-color: rgba(5,150,105,.2);
}
.v3-value-card:hover::before { transform: scaleX(1); }
.v3-value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--c-emerald-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-emerald); margin-bottom: 20px;
}
.v3-value-card h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--c-text);
  margin-bottom: 8px;
}
.v3-value-card p {
  font-size: .9rem; color: var(--c-text-2); line-height: 1.6;
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.v3-section {
  padding: 96px 0;
  position: relative;
}
.v3-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 60% 1px at 50% 0%, rgba(5,150,105,.04) 0%, transparent 100%);
  pointer-events: none;
}
.v3-section-dark {
  padding: 96px 0;
  background: var(--c-bg-2);
  position: relative;
}
.v3-section-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 1px at 50% 0%, rgba(5,150,105,.06) 0%, transparent 100%),
    radial-gradient(ellipse 40% 1px at 50% 100%, rgba(5,150,105,.04) 0%, transparent 100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   CALCULATOR SECTION - Symmetric Layout
   ═══════════════════════════════════════ */
.v3-section-calc {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}
.v3-section-calc::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(5,150,105,.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: .02;
  pointer-events: none;
}
.v3-calc-header {
  text-align: center;
  margin-bottom: 48px;
}
.v3-calc-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.v3-calc-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto;
}
.v3-badge-calc {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(5,150,105,.2);
  color: #34d399;
  font-size: .8rem; font-weight: 600;
  border: 1px solid rgba(5,150,105,.3);
  margin-bottom: 16px;
}
.v3-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.v3-calc-panel {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px;
}
.v3-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v3-calc-results {
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-section-light { padding: 96px 0; background: var(--c-bg); }
.v3-section-warm {
  padding: 96px 0;
  background-color: #f1f5f9;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
}
.v3-section-white {
  padding: 96px 0;
  background: #fff;
}
.v3-section-header { text-align: center; margin-bottom: 56px; }
.v3-section-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 12px;
}
.v3-section-header p { font-size: 1.02rem; color: var(--c-text-2); max-width: 540px; margin: 0 auto; }
.v3-badge {
  display: inline-block; padding: 5px 12px; border-radius: 16px;
  background: linear-gradient(135deg, var(--c-emerald-bg), #fff);
  color: var(--c-emerald-dark);
  font-size: .73rem; font-weight: 600; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .04em;
  border: 1px solid rgba(5,150,105,.15);
  box-shadow: 0 1px 4px rgba(5,150,105,.06);
}
.v3-badge-dark {
  display: inline-block; padding: 5px 12px; border-radius: 16px;
  background: var(--c-emerald-bg); color: var(--c-emerald-dark);
  font-size: .73rem; font-weight: 600; margin-bottom: 12px;
  border: 1px solid rgba(5,150,105,.2);
  text-transform: uppercase; letter-spacing: .04em;
}

/* ═══════════════════════════════════════
   SPLIT LAYOUT
   ═══════════════════════════════════════ */
.v3-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.v3-split-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 16px;
}
.v3-split-text p { font-size: .95rem; color: var(--c-text-2); line-height: 1.7; margin-bottom: 12px; }


/* ═══════════════════════════════════════
   STEPS
   ═══════════════════════════════════════ */
.v3-steps { display: flex; flex-direction: column; gap: 12px; }
.v3-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.v3-step:hover { border-color: var(--c-emerald); box-shadow: var(--c-glow-gold); transform: translateY(-2px); }
.v3-step-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-emerald), #10b981);
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; font-weight: 800;
  box-shadow: 0 2px 8px rgba(5,150,105,.25);
}
.v3-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.v3-step p { font-size: .84rem; color: var(--c-text-2); line-height: 1.5; }


/* ═══════════════════════════════════════
   WHY GRID
   ═══════════════════════════════════════ */
.v3-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v3-why-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--c-border);
  transition: all var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.02);
  position: relative; overflow: hidden;
}
.v3-why-card:hover {
  border-color: var(--c-emerald); box-shadow: 0 12px 32px rgba(5,150,105,.08);
  transform: translateY(-3px);
}
.v3-why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--c-emerald-bg), #fff);
  color: var(--c-emerald);
  border: 1px solid rgba(5,150,105,.15);
}
.v3-why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.v3-why-card p { font-size: .84rem; color: var(--c-text-2); line-height: 1.55; }

/* ═══════════════════════════════════════
   FEATURE GRID - Okey Tile Design
   ═══════════════════════════════════════ */
.v3-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v3-feature-card {
  position: relative;
  padding: 0 0 24px 0; border-radius: 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}
.v3-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 56px;
  background: var(--tile-color, var(--c-emerald));
  border-radius: 14px 14px 0 0;
}
.v3-feature-card:hover {
  border-color: var(--tile-color, var(--c-emerald));
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  transform: translateY(-6px);
}
.v3-fc-icon {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; margin: 16px 20px 12px;
  background: #fff;
  color: var(--tile-color, var(--c-emerald));
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.v3-feature-card h3 {
  font-size: 1rem; font-weight: 700; margin: 0 20px 8px;
  color: var(--c-text);
}
.v3-feature-card p {
  font-size: .85rem; color: var(--c-text-2); line-height: 1.6;
  margin: 0 20px;
}

/* ═══════════════════════════════════════
   SERVICE TIMELINE
   ═══════════════════════════════════════ */
.service-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.service-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #059669, #34d399);
}
.timeline-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}
.timeline-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(5,150,105,.3);
}
.timeline-content {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  max-width: 400px;
}
.timeline-time {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   WARRANTY GRID
   ═══════════════════════════════════════ */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.warranty-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.05);
  transition: all .3s ease;
}
.warranty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.warranty-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.warranty-icon.green { background: linear-gradient(135deg, #059669, #047857); }
.warranty-icon.yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }
.warranty-icon.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.warranty-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.warranty-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 1024px) {
  .warranty-grid { grid-template-columns: repeat(2, 1fr); }
  .service-timeline::before { left: 28px; }
  .timeline-num { width: 56px; height: 56px; font-size: 1.25rem; }
}
@media (max-width: 640px) {
  .warranty-grid { grid-template-columns: 1fr; }
  .timeline-content { flex-direction: column; align-items: flex-start; }
  .timeline-time { align-self: flex-start; }
}

/* ═══════════════════════════════════════
   OBJECTIONS CARDS
   ═══════════════════════════════════════ */
.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.objection-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
  transition: all .3s ease;
}
.objection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.objection-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.objection-icon.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.objection-icon.yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }
.objection-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.objection-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.objection-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}
.objection-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
}

/* ═══════════════════════════════════════
   COMPARE CARDS
   ═══════════════════════════════════════ */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.compare-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  border: 2px solid rgba(0,0,0,.05);
}
.compare-card.royalokey {
  border-color: #059669;
  box-shadow: 0 4px 20px rgba(5,150,105,.15);
}
.compare-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.compare-card.others .compare-header {
  background: #f8fafc;
}
.compare-card.royalokey .compare-header {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}
.compare-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}
.compare-badge {
  padding: 4px 12px;
  background: #059669;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 12px;
}
.compare-list {
  list-style: none;
  padding: 24px;
  margin: 0;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: #334155;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.compare-list li:last-child {
  border-bottom: none;
}
.compare-list svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .objections-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   TEKLİF FORM
   ═══════════════════════════════════════ */
.teklif-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.teklif-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
}
.teklif-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.teklif-form input,
.teklif-form select,
.teklif-form textarea {
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: all .2s ease;
}
.teklif-form input:focus,
.teklif-form select:focus,
.teklif-form textarea:focus {
  outline: none;
  border-color: #059669;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5,150,105,.1);
}
.form-notice {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 16px;
}
.teklif-steps {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 100px;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #059669;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-content strong {
  font-size: 1rem;
  color: #0f172a;
}
.step-content span {
  font-size: 0.9rem;
  color: #64748b;
}
.teklif-guarantee {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.teklif-guarantee svg {
  flex-shrink: 0;
}
.teklif-guarantee strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}
.teklif-guarantee span {
  font-size: 0.85rem;
  color: #64748b;
}
@media (max-width: 1024px) {
  .teklif-grid { grid-template-columns: 1fr; }
  .teklif-steps { position: static; }
}
@media (max-width: 640px) {
  .form-row-2col { grid-template-columns: 1fr; }
  .teklif-form-wrap,
  .teklif-steps { padding: 24px; }
}

/* ═══════════════════════════════════════
   OKEY TILE CARDS - Realistic Design
   ═══════════════════════════════════════ */
.okey-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.okey-tile-card {
  position: relative;
  background: linear-gradient(145deg, #fff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.05),
    0 10px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 2px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.okey-tile-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 
    0 12px 24px rgba(0,0,0,0.1),
    0 20px 40px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
/* Okey tile rack (the wooden holder effect) */
.okey-tile-rack {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, 
    #8b5a2b 0%, 
    #a67c52 25%, 
    #8b5a2b 50%, 
    #a67c52 75%, 
    #8b5a2b 100%
  );
  border-radius: 0 0 14px 14px;
}
/* Colored tile variants */
.okey-tile-card.red {
  border-color: #fecaca;
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
}
.okey-tile-card.red .okey-number {
  background: #dc2626;
  color: #fff;
}
.okey-tile-card.yellow {
  border-color: #fde68a;
  background: linear-gradient(145deg, #fefce8 0%, #fef9c3 100%);
}
.okey-tile-card.yellow .okey-number {
  background: #d97706;
  color: #fff;
}
.okey-tile-card.green {
  border-color: #bbf7d0;
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
}
.okey-tile-card.green .okey-number {
  background: #059669;
  color: #fff;
}
.okey-tile-card.blue {
  border-color: #bfdbfe;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}
.okey-tile-card.blue .okey-number {
  background: #2563eb;
  color: #fff;
}
.okey-tile-card.black {
  border-color: #d1d5db;
  background: linear-gradient(145deg, #f9fafb 0%, #f3f4f6 100%);
}
.okey-tile-card.black .okey-number {
  background: #1f2937;
  color: #fff;
}
.okey-tile-card.special {
  border-color: #ddd6fe;
  background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
  border-style: dashed;
}
.okey-tile-card.special .okey-number {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}
.okey-tile-content {
  position: relative;
  z-index: 1;
}
.okey-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  border: 3px solid rgba(255,255,255,0.3);
}
.okey-tile-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1.3;
}
.okey-tile-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .okey-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.v3-pricing { display: flex; flex-direction: column; gap: 16px; }
.v3-pricing-card {
  position: relative;
  padding: 28px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--c-border);
  transition: all var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.02);
}
.v3-pricing-card:hover { border-color: var(--c-emerald); box-shadow: 0 12px 32px rgba(0,0,0,.04); transform: translateY(-3px); }
.v3-pricing-card.featured {
  border-color: var(--c-emerald);
  background: linear-gradient(135deg, var(--c-emerald-bg) 0%, #fff 50%);
  box-shadow: 0 4px 16px rgba(5,150,105,.08);
}
.v3-pricing-card.featured:hover { box-shadow: 0 12px 40px rgba(5,150,105,.12); transform: translateY(-4px); }
.v3-pricing-badge {
  position: absolute; top: -12px; right: 20px;
  padding: 4px 14px; border-radius: 20px;
  background: linear-gradient(135deg, var(--c-emerald), #10b981);
  color: #fff; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(5,150,105,.3);
}
.v3-pricing-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.v3-pricing-name { font-size: .78rem; font-weight: 700; color: var(--c-text-3); text-transform: uppercase; letter-spacing: .06em; }
.v3-pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--c-text); letter-spacing: -1.5px; }
.v3-pricing-price small { font-size: .85rem; font-weight: 500; color: var(--c-text-3); }
.v3-pricing-hours { font-size: .8rem; color: var(--c-text-3); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--c-border); }
.v3-pricing-list { margin: 0 0 20px; }
.v3-pricing-list li { font-size: .85rem; color: var(--c-text-2); padding: 6px 0 6px 24px; position: relative; }
.v3-pricing-list li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c-emerald-bg); color: var(--c-emerald-dark);
  font-size: .65rem; font-weight: 700; line-height: 1;
}
.v3-pricing-note { font-size: .74rem; color: var(--c-text-3); text-align: center; margin-top: 4px; }

/* ═══════════════════════════════════════
   CALCULATOR (dark)
   ═══════════════════════════════════════ */
.v3-calc { display: flex; flex-direction: column; gap: 24px; }
.v3-calc-row { display: flex; flex-direction: column; gap: 8px; }
.v3-calc-row label {
  font-size: .84rem; font-weight: 600; color: var(--c-text-2);
  display: flex; justify-content: space-between; align-items: center;
}
.v3-calc-row output { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--c-emerald-dark); font-size: .95rem; }
.v3-calc-row input[type="range"] {
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--c-border); outline: none;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.v3-calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--c-emerald);
  border: 3px solid #fff; cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  transition: transform .15s ease;
}
.v3-calc-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
/* ═══════════════════════════════════════
   CALC MODEL TOGGLE
   ═══════════════════════════════════════ */
.v3-calc-model {
  display: inline-flex; position: relative;
  padding: 4px; border-radius: 999px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 8px;
}
.v3-calc-model button {
  padding: 12px 32px; border-radius: 999px;
  background: transparent; color: rgba(255,255,255,.7);
  font-size: .9rem; font-weight: 600;
  border: none; cursor: pointer; transition: all .2s ease;
  position: relative; z-index: 2;
}
.v3-calc-model button.active {
  background: linear-gradient(135deg, #34d399, #059669);
  color: #0a0a12;
  box-shadow: 0 4px 16px rgba(52,211,153,.3);
  font-weight: 700;
}
.v3-calc-model button:not(.active):hover { color: #fff; }

/* ═══════════════════════════════════════
   CALC INPUTS
   ═══════════════════════════════════════ */
.v3-calc { display: flex; flex-direction: column; gap: 20px; }
.v3-calc-row { display: flex; flex-direction: column; gap: 10px; }
.v3-calc-row label {
  display: flex; justify-content: space-between;
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.85);
}
.v3-calc-row label output {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; color: #34d399;
}
.v3-calc-row input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.v3-calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #059669);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  border: 2px solid #fff;
}
.v3-calc-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #059669);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
/* ═══════════════════════════════════════
   CALC INPUT STATES
   ═══════════════════════════════════════ */
.v3-calc-row input[type="range"]:disabled {
  opacity: .4; cursor: not-allowed;
}
.v3-calc-row input[type="range"]:disabled::-webkit-slider-thumb { opacity: .5; }

.v3-pack-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.v3-pack-pills button {
  padding: 10px 20px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .88rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: all var(--transition);
  cursor: pointer;
}
.v3-pack-pills button.active {
  background: linear-gradient(135deg, #34d399, #059669);
  color: #0a0a12;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(52,211,153,.3);
  font-weight: 700;
}
.v3-pack-pills button:not(.active):hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.v3-calc-result {
  padding: 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-emerald-bg), #fff);
  border: 1.5px solid rgba(5,150,105,.2);
  text-align: center; position: relative; overflow: hidden;
}
.v3-calc-result span { display: block; font-size: .82rem; color: var(--c-emerald-dark); margin-bottom: 6px; position: relative; }
.v3-calc-result strong {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800;
  color: var(--c-emerald-dark); letter-spacing: -2px; position: relative;
  transition: color .3s ease;
}
.v3-calc-details {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 16px; position: relative;
}
.v3-calc-details span { font-size: .76rem; color: var(--c-text-3); display: inline; }
.v3-calc-details b { color: var(--c-text-2); font-weight: 600; }

/* ═══════════════════════════════════════
   BENTO FEATURES GRID
   ═══════════════════════════════════════ */
.features-header {
  text-align: center;
  margin-bottom: 56px;
}
.features-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 16px 0 12px;
  color: var(--c-dark);
}
.features-header p {
  color: var(--c-text-2);
  max-width: 600px;
  margin: 0 auto 8px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.fb-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border-color: rgba(5,150,105,0.2);
}
.fb-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}
.fb-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
  color: #0f172a;
}
.fb-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Span classes for Bento Layout */
.fb-span-3 { grid-column: span 3; }
.fb-span-2 { grid-column: span 2; }
.fb-span-4 { grid-column: span 4; }

/* Themes */
.fb-theme-emerald { background: linear-gradient(135deg, #059669 0%, #047857 100%); color: #fff; border: none; }
.fb-theme-emerald h3, .fb-theme-emerald p { color: #fff; }
.fb-theme-emerald p { opacity: 0.9; }
.fb-theme-emerald .fb-icon { background: rgba(255,255,255,0.15); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,0.2); }

.fb-theme-dark { background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%); color: #fff; border: none; }
.fb-theme-dark h3, .fb-theme-dark p { color: #fff; }
.fb-theme-dark p { opacity: 0.8; }
.fb-theme-dark .fb-icon { background: rgba(255,255,255,0.1); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,0.1); }

/* Regular Icon Colors */
.bg-emerald-light { background: #ecfdf5; color: #10b981; border: 1px solid #d1fae5; }
.bg-blue-light { background: #eff6ff; color: #3b82f6; border: 1px solid #dbeafe; }
.bg-amber-light { background: #fffbeb; color: #f59e0b; border: 1px solid #fef3c7; }
.bg-purple-light { background: #f5f3ff; color: #8b5cf6; border: 1px solid #ede9fe; }

/* ═══════════════════════════════════════
   COMPARE (dark)
   ═══════════════════════════════════════ */
.v3-compare { display: flex; flex-direction: column; gap: 0; }
.v3-compare-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--c-border);
  font-size: .86rem; align-items: center;
}
.v3-compare-head {
  font-weight: 700; color: var(--c-text-3); font-size: .75rem;
  text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 2px solid var(--c-border-2); padding-bottom: 12px;
}
.v3-compare-row span:first-child { color: var(--c-text); font-weight: 600; font-size: .82rem; }
.v3-compare-bad { color: #dc2626; display: flex; align-items: center; gap: 6px; font-size: .8rem; }
.v3-compare-good { color: #059669; font-weight: 600; display: flex; align-items: center; gap: 6px; font-size: .8rem; }
.v3-compare-bad::before { content: '✕'; font-size: .65rem; font-weight: 700; }
.v3-compare-good::before { content: '✓'; font-size: .8rem; font-weight: 700; }

.v3-compare-enhanced {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid #e2e8f0;
}
.v3-compare-enhanced .v3-compare-row {
  padding: 18px 16px;
  border-bottom: 1px solid #f1f5f9;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.v3-compare-enhanced .v3-compare-head {
  background: #f8fafc;
  margin: -32px -32px 0;
  padding: 20px 32px;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid #e2e8f0;
}
.v3-compare-col-bad, .v3-compare-col-good {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
}
.v3-compare-col-bad { color: #dc2626; }
.v3-compare-col-good { color: #059669; }
.v3-compare-enhanced .v3-compare-bad {
  background: #fef2f2; padding: 10px 14px; border-radius: 10px;
  color: #991b1b; font-size: .82rem; justify-content: center;
}
.v3-compare-enhanced .v3-compare-good {
  background: #f0fdf4; padding: 10px 14px; border-radius: 10px;
  color: #166534; font-size: .82rem; justify-content: center;
}
.v3-compare-enhanced .v3-compare-bad::before { display: none; }
.v3-compare-enhanced .v3-compare-good::before { display: none; }

/* ═══════════════════════════════════════
   TESTIMONIALS — MARQUEE
   ═══════════════════════════════════════ */
.v3-testimonials-wrap { overflow: hidden; position: relative; }
.v3-testimonials-wrap::before,
.v3-testimonials-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.v3-testimonials-wrap::before { left: 0; background: linear-gradient(to right, var(--c-bg-2), transparent); }
.v3-testimonials-wrap::after { right: 0; background: linear-gradient(to left, var(--c-bg-2), transparent); }
.v3-testimonial-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: v3Marquee 50s linear infinite;
}
@keyframes v3Marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v3-testimonial {
  flex: 0 0 340px;
  padding: 28px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--c-border);
  box-shadow: 0 1px 4px rgba(0,0,0,.02);
  transition: all var(--transition);
}
.v3-testimonial:hover {
  border-color: var(--c-emerald); box-shadow: 0 12px 32px rgba(0,0,0,.06);
  transform: translateY(-3px);
}
.v3-testimonial-stars { color: var(--c-emerald); font-size: .85rem; margin-bottom: 10px; letter-spacing: 2px; }
.v3-testimonial blockquote {
  font-size: .88rem; color: var(--c-text-2); line-height: 1.65;
  font-style: italic; margin-bottom: 14px;
}
.v3-testimonial-author { display: flex; align-items: center; gap: 12px; }
.v3-testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; color: #fff;
  flex-shrink: 0;
}
.v3-testimonial-author h4 { font-size: .84rem; font-weight: 600; }
.v3-testimonial-author span { font-size: .75rem; color: var(--c-text-3); display: block; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.v3-faq { display: flex; flex-direction: column; gap: 10px; }
.v3-faq-item {
  padding: 20px 24px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--c-border);
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.02);
}
.v3-faq-item:hover { border-color: var(--c-border-2); }
.v3-faq-item[open] {
  border-color: var(--c-emerald);
  box-shadow: 0 8px 24px rgba(5,150,105,.08);
}
.v3-faq-item summary {
  font-size: .93rem; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.v3-faq-item summary::-webkit-details-marker { display: none; }
.v3-faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--c-emerald); font-weight: 400;
  transition: transform .3s ease;
}
.v3-faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.v3-faq-item p {
  font-size: .88rem; color: var(--c-text-2); margin-top: 14px; line-height: 1.6;
  animation: v3FaqSlide .3s ease;
}
@keyframes v3FaqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   FORM
   ═══════════════════════════════════════ */
.v3-form { display: flex; flex-direction: column; gap: 16px; }
.v3-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v3-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--c-text-2);
}
.v3-form input, .v3-form select, .v3-form textarea {
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-border); background: #fff;
  font-size: .9rem; transition: all var(--transition);
}
.v3-form input:hover, .v3-form select:hover, .v3-form textarea:hover { border-color: var(--c-border-2); }
.v3-form input:focus, .v3-form select:focus, .v3-form textarea:focus {
  outline: none; border-color: var(--c-emerald);
  box-shadow: 0 0 0 4px rgba(5,150,105,.08);
}
.v3-form-msg { font-size: .85rem; text-align: center; padding: 12px; border-radius: var(--radius-sm); font-weight: 600; }
.v3-form-msg.success { background: var(--c-emerald-bg); color: var(--c-emerald-dark); border: 1px solid var(--c-emerald-light); }
.v3-form-msg.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.v3-cta {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--c-emerald-bg) 0%, #fff 50%, var(--c-emerald-bg) 100%);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.v3-cta::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(5,150,105,.03) 0%, transparent 60%);
  pointer-events: none;
}
.v3-cta .v3-container { position: relative; z-index: 1; }
.v3-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--c-text); margin-bottom: 12px; letter-spacing: -1px;
}
.v3-cta p { color: var(--c-text-2); font-size: 1.02rem; margin-bottom: 28px; }
.v3-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER - LIGHT THEME
   ═══════════════════════════════════════ */
.v3-footer {
  padding: 64px 0 32px;
  background: #f8fafc;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}
.v3-footer-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e2e8f0;
}
.v3-footer-brand .v3-brand {
  margin-bottom: 16px;
}
.v3-footer-brand .v3-brand span {
  color: #0f172a;
}
.v3-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  color: #64748b;
}
.v3-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v3-footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.v3-footer-col a {
  font-size: 0.9rem;
  color: #64748b;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.v3-footer-col a:hover {
  color: #059669;
  transform: translateX(4px);
}
.v3-footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ═══════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════ */
.v3-page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
  text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.v3-page-hero .v3-container { position: relative; z-index: 1; }
.v3-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 16px; letter-spacing: -1.5px;
  color: var(--c-text);
}
.v3-page-hero p { font-size: 1.05rem; color: var(--c-text-2); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.v3-page-content { padding: 72px 0; }
.v3-page-content h2 {
  font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px;
}
.v3-page-content h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.v3-page-content p {
  font-size: .92rem; color: var(--c-text-2); line-height: 1.7; margin-bottom: 14px;
}
.v3-page-content ul { margin-bottom: 16px; }
.v3-page-content ul li {
  font-size: .9rem; color: var(--c-text-2); padding: 6px 0 6px 20px; position: relative;
}
.v3-page-content ul li::before {
  content: '✓'; position: absolute; left: 0; color: var(--c-emerald); font-weight: 700;
}
.v3-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.v3-card {
  padding: 28px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--c-border);
  transition: all var(--transition);
}
.v3-card:hover { border-color: var(--c-emerald); box-shadow: var(--c-shadow-lg); transform: translateY(-3px); }
.v3-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--c-emerald-bg), #fff);
  border: 1.5px solid rgba(5,150,105,.2);
  color: var(--c-emerald-dark); font-size: 1.5rem; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.v3-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.v3-card p { font-size: .88rem; color: var(--c-text-2); line-height: 1.6; margin: 0; }
.v3-rate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.v3-rate-card {
  text-align: center;
}
.v3-rate-card p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-emerald-dark);
}

/* ═══════════════════════════════════════
   TABLE
   ═══════════════════════════════════════ */
.v3-table-wrap { overflow-x: auto; margin: 0 -24px; padding: 0 24px; }
.v3-table {
  width: 100%; border-collapse: collapse; font-size: .85rem;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--c-shadow);
}
.v3-table thead { background: var(--c-dark); color: #fff; }
.v3-table th { padding: 14px 18px; text-align: left; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.v3-table td { padding: 12px 18px; border-bottom: 1px solid var(--c-border); }
.v3-table tbody tr:last-child td { border-bottom: none; }
.v3-table tbody tr:hover { background: var(--c-emerald-bg); }

/* ═══════════════════════════════════════
   BLOG LISTING
   ═══════════════════════════════════════ */
.v3-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.v3-blog-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.02);
  display: flex; flex-direction: column;
}
.v3-blog-card:hover {
  border-color: var(--c-gold);
  box-shadow: 0 12px 32px rgba(0,0,0,.04);
  transform: translateY(-4px);
}
.v3-blog-card-top {
  padding: 24px 24px 0;
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px;
}
.v3-blog-card-cat {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em;
}
.v3-blog-card-date {
  font-size: .72rem; color: var(--c-text-3);
  margin-left: auto; white-space: nowrap; padding-top: 3px;
}
.v3-blog-card-body { padding: 0 24px 20px; flex: 1; }
.v3-blog-card-body h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 8px;
  line-height: 1.3; letter-spacing: -.3px;
  transition: color var(--transition);
}
.v3-blog-card:hover .v3-blog-card-body h3 { color: var(--c-gold-dark); }
.v3-blog-card-body p { font-size: .84rem; color: var(--c-text-2); line-height: 1.6; margin: 0; }
.v3-blog-card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center; gap: 8px;
}
.v3-blog-card-footer a {
  font-size: .78rem; font-weight: 600; color: var(--c-gold-dark);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.v3-blog-card-footer a:hover { gap: 10px; }
.v3-blog-card-footer a::after { content: '→'; }

/* ═══════════════════════════════════════
   BLOG POST
   ═══════════════════════════════════════ */
.v3-blog-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.v3-blog-toc {
  position: sticky; top: 88px;
  padding: 20px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--c-shadow); font-size: .8rem;
  border: 1px solid var(--c-border);
}
.v3-blog-toc h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--c-text-3); margin-bottom: 12px; }
.v3-blog-toc a {
  display: block; padding: 5px 0 5px 12px; border-left: 2px solid var(--c-border);
  color: var(--c-text-2); transition: all var(--transition); font-size: .78rem; line-height: 1.4;
}
.v3-blog-toc a:hover, .v3-blog-toc a.active { color: var(--c-emerald); border-left-color: var(--c-emerald); }
.v3-blog-toc .toc-h3 { padding-left: 24px; font-size: .74rem; }
.v3-blog-content { font-size: 1.02rem; line-height: 1.85; color: #1f1f2e; }
.v3-blog-content h2 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--c-dark); padding-bottom: 8px; border-bottom: 1px solid var(--c-border); }
.v3-blog-content h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--c-dark-3); }
.v3-blog-content p { margin-bottom: 16px; }
.v3-blog-content ul, .v3-blog-content ol { margin: 0 0 16px 20px; }
.v3-blog-content li { margin-bottom: 6px; list-style: disc; }
.v3-blog-content ol li { list-style: decimal; }
.v3-blog-content strong { color: var(--c-dark); }
.v3-blog-content a { color: var(--c-emerald-dark); text-decoration: underline; text-underline-offset: 2px; }
.v3-blog-content a:hover { color: var(--c-emerald); }
.v3-blog-content hr { margin: 32px 0; border: none; border-top: 1px solid var(--c-border); }
.v3-blog-content blockquote {
  margin: 20px 0; padding: 16px 20px; background: var(--c-emerald-bg);
  border-left: 4px solid var(--c-emerald); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--c-dark-3);
}
.v3-blog-meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: .82rem; color: var(--c-text-3); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--c-border);
}
.v3-blog-meta span { display: flex; align-items: center; gap: 4px; }
.v3-blog-meta .v3-blog-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-text-3); display: inline-block; }
.v3-blog-related {
  margin: 32px 0; padding: 24px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--c-shadow); border: 1px solid var(--c-border);
}
.v3-blog-related h3 { font-size: 1rem; margin-bottom: 16px; }
.v3-blog-related-item { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--c-border); }
.v3-blog-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.v3-blog-related-item .r-date { font-size: .72rem; color: var(--c-text-3); white-space: nowrap; min-width: 70px; }
.v3-blog-related-item a { font-size: .85rem; font-weight: 500; color: var(--c-dark-3); }
.v3-blog-related-item a:hover { color: var(--c-emerald); }
.v3-blog-author {
  display: flex; align-items: center; gap: 14px; padding: 20px;
  background: var(--c-bg-2); border-radius: var(--radius-sm); margin: 24px 0;
}
.v3-blog-author-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--c-emerald);
  display: flex; align-items: center; justify-content: center; color: #0a0a12; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.v3-blog-author h4 { font-size: .88rem; color: var(--c-dark); }
.v3-blog-author p { font-size: .78rem; color: var(--c-text-2); margin: 0 !important; }
.v3-blog-cta-box {
  padding: 24px; background: var(--c-emerald-bg); border-radius: var(--radius-sm);
  border: 1px solid rgba(5,150,105,.2); margin: 28px 0;
}
.v3-blog-share {
  display: flex; gap: 8px; align-items: center; margin: 24px 0;
  padding: 16px 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.v3-blog-share span { font-size: .76rem; color: var(--c-text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.v3-blog-share a {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  border-radius: var(--radius-xs); font-size: .78rem; font-weight: 500; transition: all var(--transition);
}
.v3-blog-share .share-twitter { background: #e8f5fd; color: #1da1f2; }
.v3-blog-share .share-twitter:hover { background: #1da1f2; color: #fff; }
.v3-blog-share .share-whatsapp { background: #e5f7ed; color: #25d366; }
.v3-blog-share .share-whatsapp:hover { background: #25d366; color: #fff; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .v3-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .v3-hero-text { max-width: 100%; }
  .v3-hero-visual { display: none; }
  .v3-split { grid-template-columns: 1fr; gap: 36px; }
  .v3-why-grid { grid-template-columns: 1fr; }
  .v3-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-footer-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .v3-values-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-social-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .v3-calc-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .v3-header { top: 12px; width: calc(100% - 24px); padding: 0 16px; height: 56px; }
  .v3-nav, .v3-header-right { display: none; }
  .v3-burger { display: flex; }
  .v3-hero { min-height: auto; padding: 100px 0 60px; }
  .v3-hero-title { font-size: 2.2rem; letter-spacing: -1.5px; line-height: 1.15; }
  .v3-hero-sub { font-size: .95rem; }
  .v3-hero-stats { gap: 14px; flex-direction: column; align-items: flex-start; }
  .v3-stat-sep { display: none; }
  .v3-calc-panel { padding: 24px; border-radius: 16px; }
  .v3-calc-model button { padding: 10px 20px; font-size: .85rem; }
  .v3-pack-pills button { padding: 8px 14px; font-size: .8rem; }
  .v3-hero-stat strong { font-size: 1.2rem; }
  .v3-section, .v3-section-dark, .v3-section-light, .v3-section-warm { padding: 56px 0; }
  .v3-split-text h2 { font-size: 1.3rem; }
  .v3-form-2col { grid-template-columns: 1fr; }
  .v3-footer-row { grid-template-columns: 1fr; gap: 20px; }
  .v3-page-hero { padding: 100px 0 40px; }
  .v3-page-hero h1 { font-size: 1.6rem; }
  .v3-values-section { padding: 60px 0; }
  .v3-values-grid { grid-template-columns: 1fr; gap: 16px; }
  .v3-value-card { padding: 24px 20px; }
  .v3-social-proof { padding: 16px 0; }
  .v3-social-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .v3-social-item strong { font-size: 1.5rem; }
  .v3-page-content { padding: 40px 0; }
  .v3-card-grid { grid-template-columns: 1fr; }
  .v3-compare-row { grid-template-columns: 1fr 1fr; gap: 8px; font-size: .78rem; padding: 12px 0; }
  .v3-compare-row span:first-child { grid-column: 1 / -1; font-weight: 700; color: var(--c-text); margin-bottom: 4px; font-size: .82rem; }
  .v3-compare-head span:first-child { display: none; }
  .v3-compare-bad::before, .v3-compare-good::before { display: none; }
  .v3-compare-enhanced { padding: 16px; }
  .v3-compare-enhanced .v3-compare-head { margin: -16px -16px 0; padding: 16px; }
  .v3-compare-enhanced .v3-compare-row { grid-template-columns: 1fr 1fr; padding: 14px 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-card { padding: 28px 20px; }
  .features-header { margin-bottom: 36px; }
  .v3-blog-wrap { grid-template-columns: 1fr; }
  .v3-blog-toc { position: relative; top: 0; display: none; }
  .v3-blog-content { font-size: .95rem; }
  .v3-blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
  .v3-blog-card-top { padding: 16px 16px 0; }
  .v3-blog-card-body { padding: 0 16px 16px; }
  .v3-blog-card-body h3 { font-size: .9rem; }
  .v3-blog-card-footer { padding: 10px 16px; }
  .v3-page-hero { padding: 48px 0; }
}
@media (max-width: 480px) {
  .v3-hero-title { font-size: 1.5rem; }
  .v3-hero-actions { flex-direction: column; }
  .v3-hero-actions .v3-btn-lg { width: 100%; }
  .v3-hero-stats { flex-direction: column; gap: 8px; align-items: flex-start; }
  .v3-stat-sep { display: none; }
  .v3-hero-decor { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .v3-cta-actions { flex-direction: column; }
  .v3-cta-actions .v3-btn-lg { width: 100%; }
  .v3-blog-grid { grid-template-columns: 1fr; }
  .v3-card-grid { grid-template-columns: 1fr; }
}

/* ── ACTIVE NAV ── */

/* ── SCROLL REVEAL ── */
.v3-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.v3-reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   EARNINGS STRIP
   ═══════════════════════════════════════ */
.v3-earnings-strip {
  position: relative; overflow: hidden;
  padding: 56px 0;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 35%, #059669 100%);
  color: #fff;
}
.v3-earnings-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(16,185,129,.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(52,211,153,.08) 0%, transparent 40%);
  pointer-events: none;
}
.v3-earnings-grid {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 48px;
  justify-content: space-between; flex-wrap: wrap;
}
.v3-earnings-main { text-align: left; }
.v3-earnings-label {
  display: block; font-size: .82rem; opacity: .75;
  margin-bottom: 6px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
}
.v3-earnings-value {
  font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800;
  letter-spacing: -2.5px; line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.v3-earnings-items {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.v3-earnings-item { text-align: center; }
.v3-earnings-item span {
  display: block; font-size: .75rem; opacity: .65;
  margin-bottom: 4px; letter-spacing: .03em;
}
.v3-earnings-item strong {
  font-size: 1.15rem; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -.5px;
}

/* ═══════════════════════════════════════
   MODEL GRID (Satın Alma / Kiralama / Ortaklık)
   ═══════════════════════════════════════ */
.v3-model-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 720px; margin: 0 auto;
}
.v3-model-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--c-border);
  transition: all var(--transition);
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.02);
}
.v3-model-card:hover {
  border-color: var(--c-emerald);
  box-shadow: 0 12px 32px rgba(5,150,105,.08);
  transform: translateY(-3px);
}
.v3-model-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--c-emerald-bg), #fff);
  border: 1.5px solid rgba(5,150,105,.18);
  color: var(--c-emerald);
}
.v3-model-card h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
}
.v3-model-card p {
  font-size: .88rem; color: var(--c-text-2); line-height: 1.6; margin: 0;
}

/* ═══════════════════════════════════════
   BIG RESULT CARD (Calculator)
   ═══════════════════════════════════════ */
.v3-big-result {
  width: 100%;
  padding: 48px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 35%, #059669 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(5,150,105,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.v3-big-result::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(16,185,129,.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(52,211,153,.08) 0%, transparent 40%);
  pointer-events: none;
}
.v3-big-result-label {
  position: relative; z-index: 1;
  display: block;
  font-size: .82rem; opacity: .75;
  margin-bottom: 10px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
}
.v3-big-result-value {
  position: relative; z-index: 1;
  font-size: clamp(3.2rem, 6vw, 5rem); font-weight: 800;
  letter-spacing: -3px; line-height: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
  margin-bottom: 32px;
}
.v3-big-result-items {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  width: 100%;
}
.v3-big-result-items div { text-align: center; }
.v3-big-result-items span {
  display: block; font-size: .78rem; opacity: .7;
  margin-bottom: 6px; letter-spacing: .04em;
  text-transform: uppercase;
}
.v3-big-result-items strong {
  font-size: 1.25rem; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -.5px;
}


/* ── NEARBY CITIES & BLOG LINKS ── */
.v3-nearby-cities { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.v3-nearby-cities h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.v3-city-links { display: flex; flex-wrap: wrap; gap: 8px; }
.v3-city-links a {
  padding: 6px 16px; border-radius: 20px;
  background: #fff; border: 1px solid var(--c-border);
  font-size: .82rem; font-weight: 500; color: var(--c-text-2);
  transition: all var(--transition);
}
.v3-city-links a:hover { border-color: var(--c-gold); color: var(--c-gold-dark); background: var(--c-warm-bg); }
.v3-nearby-cities ul { list-style: disc; padding-left: 20px; }
.v3-nearby-cities ul li { margin-bottom: 6px; font-size: .92rem; }
.v3-nearby-cities ul a { color: var(--c-text-2); transition: color var(--transition); }
.v3-nearby-cities ul a:hover { color: var(--c-gold-dark); }

@media (max-width: 768px) {
  .v3-earnings-grid { flex-direction: column; gap: 28px; align-items: flex-start; }
  .v3-earnings-main { text-align: left; }
  .v3-earnings-items { gap: 24px; }
  .v3-earnings-item { text-align: left; }
  .v3-model-grid { grid-template-columns: 1fr; }
  .v3-section-calc { padding: 60px 0; }
  .v3-big-result { padding: 32px 24px; }
  .v3-big-result-value { font-size: 2.6rem; letter-spacing: -2px; }
  .v3-big-result-items { gap: 12px 20px; }
  .v3-big-result-items strong { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════
   MODERN STEPS — Card Grid
   ═══════════════════════════════════════ */
.v3-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.v3-step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #e2e8f0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.v3-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  border-color: #059669;
}
.v3-step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(5,150,105,.25);
}
.v3-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.v3-step p {
  font-size: .86rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════
   MODERN PRICING CARDS
   ═══════════════════════════════════════ */
.v3-pricing-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.v3-price-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1.5px solid #e2e8f0;
  text-align: center;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.v3-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,.08);
}
.v3-price-card.featured {
  border-color: #059669;
  box-shadow: 0 8px 32px rgba(5,150,105,.12);
  transform: scale(1.03);
}
.v3-price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 24px 48px rgba(5,150,105,.15);
}
.v3-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 4px 12px rgba(5,150,105,.3);
}
.v3-price-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.v3-price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1.5px;
  line-height: 1;
}
.v3-price-amount small {
  font-size: .9rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: normal;
}
.v3-price-hours {
  display: inline-block;
  margin: 12px 0 20px;
  padding: 6px 16px;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: #475569;
}
.v3-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.v3-price-features li {
  padding: 8px 0;
  font-size: .88rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}
.v3-price-features li:last-child { border-bottom: none; }
.v3-price-features li::before {
  content: '✓';
  color: #059669;
  font-weight: 700;
  margin-right: 8px;
}
.v3-price-note {
  text-align: center;
  font-size: .82rem;
  color: #94a3b8;
  margin-top: 24px;
}
.v3-price-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
  transition: all .2s ease;
}
.v3-price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5,150,105,.3);
}

@media (max-width: 768px) {
  .v3-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .v3-step { padding: 24px 16px; }
  .v3-step-num { width: 44px; height: 44px; font-size: 1rem; }
  .v3-pricing-modern { grid-template-columns: 1fr; max-width: 400px; }
  .v3-price-card.featured { transform: none; }
  .v3-price-card.featured:hover { transform: translateY(-8px); }
}
@media (max-width: 480px) {
  .v3-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   MOBILE LAYOUT POLISH
   ═══════════════════════════════════════ */
.v3-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.v3-step {
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.v3-calc-model {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v3-calc-model button {
  width: 100%;
  min-height: 44px;
}
.v3-pack-pills {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.v3-pack-pills button {
  width: 100%;
  padding-inline: 10px;
}

@media (max-width: 900px) {
  .feature-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .fb-span-2,
  .fb-span-3,
  .fb-span-4 {
    grid-column: auto;
  }
  .feature-bento .fb-card:nth-child(4) {
    order: 5;
    grid-column: span 2;
  }
  .feature-bento .fb-card:nth-child(4) {
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .feature-bento .fb-card:nth-child(5) {
    order: 4;
  }
}

@media (max-width: 768px) {
  .v3-section,
  .v3-section-dark,
  .v3-section-light,
  .v3-section-warm,
  .v3-section-calc,
  .v3-values-section {
    padding: 48px 0;
  }
  .v3-section-header,
  .features-header,
  .v3-calc-header {
    margin-bottom: 28px;
  }
  .v3-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .v3-value-card {
    padding: 16px 14px;
    border-radius: 16px;
  }
  .v3-value-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    margin-bottom: 12px;
  }
  .v3-value-icon svg {
    width: 20px;
    height: 20px;
  }
  .v3-value-card h3 {
    font-size: .88rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .v3-value-card p {
    font-size: .76rem;
    line-height: 1.45;
  }
  .features-header h2,
  .v3-section-header h2,
  .v3-calc-header h2 {
    font-size: 1.35rem;
    letter-spacing: -.4px;
  }
  .features-header p,
  .v3-section-header p,
  .v3-calc-header p {
    font-size: .86rem;
    line-height: 1.55;
  }
  .fb-card {
    padding: 18px 14px;
    border-radius: 18px;
  }
  .fb-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .feature-bento .fb-card:nth-child(4) .fb-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.35rem !important;
  }
  .fb-card h3 {
    font-size: .92rem;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 0;
  }
  .fb-card p {
    font-size: .76rem;
    line-height: 1.45;
  }
  .v3-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .v3-model-card {
    padding: 18px 14px;
    border-radius: 16px;
  }
  .v3-model-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .v3-model-icon svg {
    width: 22px;
    height: 22px;
  }
  .v3-model-card h3 {
    font-size: .92rem;
  }
  .v3-model-card p {
    font-size: .76rem;
    line-height: 1.45;
  }
  .v3-calc-grid {
    gap: 14px;
  }
  .v3-calc-panel {
    padding: 18px;
  }
  .v3-calc {
    gap: 16px;
  }
  .v3-calc-model {
    margin-bottom: 0;
  }
  .v3-calc-model button {
    padding: 10px 8px;
    font-size: .82rem;
  }
  .v3-pack-pills {
    gap: 6px;
  }
  .v3-pack-pills button {
    padding: 9px 4px;
    border-radius: 10px;
    font-size: .76rem;
  }
  .v3-big-result {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .v3-big-result-value {
    font-size: 2.35rem;
  }
  .v3-big-result-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .v3-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .v3-step {
    padding: 16px 14px;
    border-radius: 16px;
    gap: 10px;
  }
  .v3-step-num {
    width: 34px;
    height: 34px;
    font-size: .82rem;
  }
  .v3-step h3 {
    font-size: .88rem;
  }
  .v3-step p {
    font-size: .74rem;
    line-height: 1.45;
  }
  .v3-compare-enhanced {
    border-radius: 16px;
  }
  .v3-compare-enhanced .v3-compare-bad,
  .v3-compare-enhanced .v3-compare-good {
    padding: 9px 8px;
    font-size: .73rem;
    line-height: 1.25;
    text-align: center;
  }
  .v3-rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .v3-rate-card {
    padding: 18px 14px;
  }
  .v3-rate-card h3 {
    font-size: .9rem;
  }
  .v3-rate-card p {
    font-size: 1.05rem;
  }
  .v3-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .v3-card-grid:has(> .v3-card:only-child) {
    grid-template-columns: 1fr;
  }
  .v3-card {
    padding: 16px 14px;
    border-radius: 16px;
  }
  .v3-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .v3-card h3 {
    font-size: .88rem;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 0;
  }
  .v3-card p {
    font-size: .74rem;
    line-height: 1.45;
  }
  .warranty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .warranty-card {
    padding: 18px 12px;
    border-radius: 16px;
  }
  .warranty-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .warranty-card h3 {
    font-size: .88rem;
  }
  .warranty-card p {
    font-size: .72rem;
    line-height: 1.4;
  }
  .v3-testimonials-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .v3-testimonials-wrap::before,
  .v3-testimonials-wrap::after {
    display: none;
  }
  .v3-testimonial-track {
    animation: none;
    gap: 12px;
    padding: 0 24px 4px;
  }
  .v3-testimonial {
    flex-basis: calc(100vw - 72px);
    padding: 18px;
    scroll-snap-align: center;
  }
  .v3-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .v3-hero {
    padding-bottom: 44px;
  }
  .v3-social-grid {
    gap: 12px;
  }
  .v3-social-item strong {
    font-size: 1.35rem;
  }
  .v3-social-item span {
    font-size: .76rem;
  }
  .v3-values-grid,
  .feature-bento,
  .v3-model-grid,
  .v3-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-bento .fb-card:nth-child(4) {
    grid-column: span 2;
  }
  .v3-cta {
    padding: 52px 0;
  }
}

@media (max-width: 340px) {
  .v3-values-grid,
  .feature-bento,
  .v3-model-grid,
  .v3-steps {
    grid-template-columns: 1fr;
  }
  .feature-bento .fb-card:nth-child(4) {
    grid-column: auto;
    order: initial;
  }
  .feature-bento .fb-card:nth-child(5) {
    order: initial;
  }
  .warranty-grid {
    grid-template-columns: 1fr;
  }
}

.v3-reveal {
  opacity: 1;
  transform: none;
}
