:root {
  --bg: #060f1b;
  --bg2: #0a1626;
  --surface: rgba(255,255,255,0.035);
  --surface2: rgba(255,255,255,0.062);
  --border: rgba(255,255,255,0.09);
  --border2: rgba(255,255,255,0.16);
  --green: #12d87a;
  --green-dim: rgba(18,216,122,0.12);
  --green-glow: rgba(18,216,122,0.28);
  --gold: #d9ab57;
  --gold-dim: rgba(217,171,87,0.13);
  --white: #ffffff;
  --text: rgba(255,255,255,0.9);
  --muted: rgba(255,255,255,0.57);
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --base-font-size: 16px;
  --header-height: 68px;
  --container-max-width: 1060px;
  --section-pad-y: 100px;
  --luxury-gold-intensity: 1;
  --luxury-shadow-depth: 1;
  --luxury-cta-glow: 1;
  --r-md: 18px;
  --r-lg: 26px;
  --shadow-soft: 0 16px 34px rgba(0,0,0,0.22);
  --shadow-card: 0 14px 36px rgba(0,0,0,0.24);
  --ease: cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:var(--base-font-size); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
::selection { background: var(--green); color: #000; }

.icon-svg {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  line-height: 1;
  flex: 0 0 auto;
}
.icon-svg svg {
  width: 100%;
  height: 100%;
}

#cursor {
  width: 12px; height: 12px; background: var(--green); border-radius: 50%;
  position: fixed; top:0; left:0; pointer-events: none; z-index:9999;
  transform: translate(-50%,-50%); transition: transform .1s, width .25s var(--ease), height .25s var(--ease);
  mix-blend-mode: screen;
}
#cursor-ring {
  width: 36px; height: 36px; border: 1.5px solid rgba(0,213,99,0.5); border-radius: 50%;
  position: fixed; top:0; left:0; pointer-events: none; z-index:9998;
  transform: translate(-50%,-50%); transition: transform .18s var(--ease), width .3s, height .3s, opacity .3s;
}

body::before {
  content:''; position:fixed; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022; pointer-events: none; z-index:0;
}

.site-header,
header {
  --mx: 0;
  --my: 0;
  position: fixed; top:0; left:0; right:0; z-index: 800;
  padding: 0 clamp(20px,5vw,60px); height: var(--header-height);
  display: flex; align-items:center; justify-content: space-between;
  background: linear-gradient(120deg, rgba(9,22,40,0.78), rgba(7,16,30,0.68));
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease), border-color .3s var(--ease), height .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,213,99,0.42), rgba(245,166,35,0.28), transparent);
  opacity: .65;
  pointer-events: none;
}
.site-header.is-scrolled {
  background: linear-gradient(120deg, rgba(9,22,40,0.92), rgba(7,16,30,0.9));
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.34);
}

body.header-style-classic-glass .site-header,
body.header-style-classic-glass header {
  background: rgba(7,16,30,0.74);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
body.header-style-classic-glass .site-header::after,
body.header-style-classic-glass header::after {
  opacity: .28;
}
body.header-style-classic-glass .site-nav,
body.header-style-classic-glass nav {
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
body.header-style-classic-glass .site-nav::before,
body.header-style-classic-glass nav::before {
  opacity: .45;
  height: 1px;
  box-shadow: none;
}
body.header-style-classic-glass .site-nav .nav-link,
body.header-style-classic-glass nav .nav-link {
  border: 1px solid transparent;
}
body.header-style-classic-glass .site-nav .nav-link:hover,
body.header-style-classic-glass .site-nav .nav-link.active,
body.header-style-classic-glass nav .nav-link:hover,
body.header-style-classic-glass nav .nav-link.active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: none;
}
body.header-style-classic-glass .site-nav .nav-link::after,
body.header-style-classic-glass nav .nav-link::after {
  opacity: .35;
}
body.header-style-classic-glass .nav-cta {
  box-shadow: 0 6px 16px rgba(0,213,99,0.22);
}

body.header-style-luxury-dark .site-header,
body.header-style-luxury-dark header {
  background: linear-gradient(120deg, rgba(5,11,20,0.95), rgba(11,20,34,0.94));
  border-bottom-color: rgba(245,166,35,calc(0.24 * var(--luxury-gold-intensity)));
  box-shadow: 0 calc(14px * var(--luxury-shadow-depth)) calc(40px * var(--luxury-shadow-depth)) rgba(0,0,0,0.42);
}
body.header-style-luxury-dark .site-header::after,
body.header-style-luxury-dark header::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245,166,35,calc(0.55 * var(--luxury-gold-intensity))),
    rgba(245,166,35,calc(0.25 * var(--luxury-gold-intensity))),
    transparent
  );
  opacity: .85;
}
body.header-style-luxury-dark .site-nav,
body.header-style-luxury-dark nav {
  border-color: rgba(245,166,35,calc(0.22 * var(--luxury-gold-intensity)));
  background: linear-gradient(135deg, rgba(245,166,35,calc(0.1 * var(--luxury-gold-intensity))), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 calc(8px * var(--luxury-shadow-depth)) calc(24px * var(--luxury-shadow-depth)) rgba(0,0,0,0.35);
}
body.header-style-luxury-dark .site-nav::before,
body.header-style-luxury-dark nav::before {
  background: linear-gradient(90deg, rgba(245,166,35,calc(0.88 * var(--luxury-gold-intensity))), rgba(255,205,115,1));
  box-shadow: 0 0 calc(18px * var(--luxury-gold-intensity)) rgba(245,166,35,calc(0.42 * var(--luxury-gold-intensity)));
}
body.header-style-luxury-dark .site-nav .nav-link:hover,
body.header-style-luxury-dark .site-nav .nav-link.active,
body.header-style-luxury-dark nav .nav-link:hover,
body.header-style-luxury-dark nav .nav-link.active {
  color: #fff6e8;
  background: rgba(245,166,35,calc(0.14 * var(--luxury-gold-intensity)));
}
body.header-style-luxury-dark .nav-cta {
  background: linear-gradient(135deg, var(--gold), #ffcf73);
  box-shadow:
    0 calc(10px * var(--luxury-cta-glow)) calc(26px * var(--luxury-cta-glow)) rgba(245,166,35,calc(0.38 * var(--luxury-cta-glow))),
    inset 0 1px 0 rgba(255,255,255,0.32);
}
body.header-style-luxury-dark .logo-name em {
  color: #ffd087;
}

body.theme-preset-light-clean {
  background: linear-gradient(180deg, var(--bg), #eef3f9 45%, var(--bg2));
}
body.theme-preset-light-clean::before {
  opacity: 0.016;
}
body.theme-preset-light-clean .site-header,
body.theme-preset-light-clean header {
  background: linear-gradient(120deg, rgba(255,255,255,0.9), rgba(247,250,255,0.88));
  border-bottom-color: rgba(23,36,53,0.14);
}
body.theme-preset-light-clean .site-header::after,
body.theme-preset-light-clean header::after {
  background: linear-gradient(90deg, transparent, rgba(13,167,104,0.4), rgba(194,138,47,0.25), transparent);
}
body.theme-preset-light-clean .site-nav,
body.theme-preset-light-clean nav {
  border-color: rgba(23,36,53,0.14);
  background: linear-gradient(135deg, rgba(23,36,53,0.08), rgba(23,36,53,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62), 0 8px 20px rgba(15,26,40,0.12);
}
body.theme-preset-light-clean .site-nav a,
body.theme-preset-light-clean nav a {
  color: rgba(23,36,53,0.72);
}
body.theme-preset-light-clean .site-nav .nav-link:hover,
body.theme-preset-light-clean .site-nav .nav-link.active,
body.theme-preset-light-clean nav .nav-link:hover,
body.theme-preset-light-clean nav .nav-link.active {
  color: #101828;
  background: rgba(23,36,53,0.1);
}
body.theme-preset-light-clean .hero-grid {
  background-image: linear-gradient(rgba(15,26,40,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15,26,40,0.05) 1px, transparent 1px);
}
body.theme-preset-light-clean .hero-tag {
  background: rgba(13,167,104,0.1);
  border-color: rgba(13,167,104,0.36);
}
body.theme-preset-light-clean .card,
body.theme-preset-light-clean .price-card,
body.theme-preset-light-clean .benefit,
body.theme-preset-light-clean .process-step,
body.theme-preset-light-clean .contact-box,
body.theme-preset-light-clean .extra-widget-card {
  box-shadow: 0 12px 30px rgba(15,26,40,0.1);
}

body.theme-preset-midnight-gold .site-header,
body.theme-preset-midnight-gold header {
  border-bottom-color: rgba(226,184,102,0.22);
}
body.theme-preset-midnight-gold .site-header::after,
body.theme-preset-midnight-gold header::after {
  background: linear-gradient(90deg, transparent, rgba(226,184,102,0.56), rgba(226,184,102,0.24), transparent);
}
body.theme-preset-midnight-gold .hero-tag {
  color: #ffe1ac;
  border-color: rgba(226,184,102,0.34);
  background: rgba(226,184,102,0.09);
}
body.theme-preset-midnight-gold .btn-ghost {
  border-color: rgba(226,184,102,0.35);
}

body.theme-preset-corporate-blue .site-header,
body.theme-preset-corporate-blue header {
  background: linear-gradient(120deg, rgba(8,26,47,0.92), rgba(14,39,68,0.9));
  border-bottom-color: rgba(111,177,255,0.24);
}
body.theme-preset-corporate-blue .site-header::after,
body.theme-preset-corporate-blue header::after {
  background: linear-gradient(90deg, transparent, rgba(111,177,255,0.58), rgba(44,200,161,0.32), transparent);
}
body.theme-preset-corporate-blue .hero-tag {
  border-color: rgba(111,177,255,0.45);
  color: #bcd9ff;
  background: rgba(111,177,255,0.12);
}
body.theme-preset-corporate-blue .nav-cta {
  background: linear-gradient(135deg, #66abff, #2cc8a1);
  box-shadow: 0 10px 26px rgba(102,171,255,0.33), inset 0 1px 0 rgba(255,255,255,0.34);
}

body.theme-preset-minimal-monochrome .site-header,
body.theme-preset-minimal-monochrome header {
  background: rgba(15,17,21,0.86);
  border-bottom-color: rgba(255,255,255,0.12);
}
body.theme-preset-minimal-monochrome .site-header::after,
body.theme-preset-minimal-monochrome header::after {
  background: linear-gradient(90deg, transparent, rgba(230,236,244,0.38), transparent);
}
body.theme-preset-minimal-monochrome .orb-1,
body.theme-preset-minimal-monochrome .orb-2,
body.theme-preset-minimal-monochrome .orb-3 {
  filter: blur(90px) saturate(0.65);
}
body.theme-preset-minimal-monochrome .nav-cta {
  background: linear-gradient(135deg, #d8e0ea, #f2f4f7);
  box-shadow: 0 8px 22px rgba(220,227,236,0.22), inset 0 1px 0 rgba(255,255,255,0.55);
}
body.theme-preset-minimal-monochrome .btn-ghost {
  border-color: rgba(255,255,255,0.24);
}

@media(min-width:1024px) {
  body.header-style-classic-glass .site-header:hover .logo-wrap,
  body.header-style-classic-glass .site-header:hover .site-nav,
  body.header-style-classic-glass .site-header:hover nav {
    transform: none;
  }
  body.header-style-luxury-dark .site-header:hover .logo-wrap {
    transform: translate3d(calc(var(--mx) * -0.22px), calc(var(--my) * -0.22px), 0);
  }
  body.header-style-luxury-dark .site-header:hover .site-nav,
  body.header-style-luxury-dark .site-header:hover nav {
    transform: translate3d(calc(var(--mx) * 0.16px), calc(var(--my) * 0.16px), 0);
  }
}
.logo-wrap { display:flex; align-items:center; gap:10px; }
.logo-wrap { transition: transform .35s var(--ease), opacity .2s; }
/* <a> olarak render edildiğinde sıfırla */
a.logo-wrap { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
a.logo-wrap:hover { opacity: .85; }
.logo-wrap.logo-desktop-only .logo-name { display: none; }
.logo-wrap-has-image { gap: 12px; }
.site-brand-logo {
  max-height: 40px;
  width: auto;
  border-radius: 8px;
  display: block;
}
.logo-badge {
  width: 36px; height: 36px; border-radius: 8px; display:flex; align-items:center; justify-content:center;
  font-size: 18px; background: linear-gradient(135deg, var(--green) 0%, #00a847 100%);
  box-shadow: 0 0 18px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}
.logo-name { font-family: var(--font-heading); font-size: 22px; letter-spacing: 1px; color: var(--white); }
.logo-name em { color: var(--green); font-style:normal; }
.site-nav,
nav {
  position: relative;
  --indicator-x: 0px;
  --indicator-w: 0px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 10px 26px rgba(0,0,0,0.26);
  transition: transform .35s var(--ease);
}
.site-nav::before,
nav::before {
  content: '';
  position: absolute;
  left: var(--indicator-x);
  width: var(--indicator-w);
  height: 2px;
  bottom: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,213,99,0.95), rgba(91,255,164,1));
  box-shadow: 0 0 16px rgba(0,213,99,0.55), 0 0 24px rgba(0,213,99,0.25);
  transition: left .3s var(--ease), width .3s var(--ease), opacity .25s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.site-nav.has-indicator::before,
nav.has-indicator::before {
  opacity: 1;
}
.site-nav a,
nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .35px;
  color: var(--muted);
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.site-nav .nav-link,
nav .nav-link {
  position: relative;
  overflow: hidden;
  padding: 10px 15px;
  border-radius: 999px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.site-nav .nav-link::after,
nav .nav-link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.85), rgba(255,255,255,0));
  transform: scaleX(0);
  transform-origin: right;
  opacity: .75;
  transition: transform .3s var(--ease);
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active,
nav .nav-link:hover,
nav .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after,
nav .nav-link:hover::after,
nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  background: linear-gradient(135deg, var(--green), #47e89c);
  color: #000 !important;
  font-weight: 800 !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px !important;
  box-shadow: 0 10px 26px rgba(18,216,122,0.3), inset 0 1px 0 rgba(255,255,255,0.34);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(18,216,122,0.36), inset 0 1px 0 rgba(255,255,255,0.34);
}
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.14);
  width:44px;
  height:44px;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  padding:0;
}
.hamburger span {
  display:block;
  width:20px;
  height:2px;
  background: var(--white);
  border-radius:2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.hamburger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-height) + 18px) clamp(20px,6vw,80px) 60px;
  position: relative;
  overflow: hidden;
}

.hero.style-classic {
  background: var(--bg2);
}

.hero.style-classic .hero-grid,
.hero.style-classic .orb {
  display: none;
}

.hero.style-classic .hero-tag {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  color: var(--white);
  box-shadow: none;
}

.hero.style-classic .hero-title .accent {
  text-shadow: none;
}

.hero.style-classic .hero-stats {
  border-top-color: var(--border);
}

.hero.style-editorial {
  background:
    linear-gradient(180deg, rgba(8,16,28,0.96), rgba(6,14,24,0.98));
}

.hero.style-editorial .hero-grid {
  opacity: .5;
}

.hero.style-editorial .orb {
  filter: blur(96px);
  opacity: .55;
}

.hero.style-editorial .hero-inner {
  max-width: 980px;
  text-align: left;
}

.hero.style-editorial .hero-actions,
.hero.style-editorial .hero-stats {
  justify-content: flex-start;
}

.hero.style-editorial .hero-title {
  align-items: flex-start;
}

.hero.style-editorial .hero-title-main {
  justify-content: flex-start;
}

.hero.style-editorial .hero-sub {
  margin-left: 0;
  margin-right: 0;
}

.hero.style-editorial .scroll-hint {
  left: clamp(24px, 6vw, 80px);
  transform: none;
  align-items: flex-start;
}

.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: drift 12s ease-in-out infinite alternate; }
.orb-1 { width:560px; height:560px; background: radial-gradient(circle, rgba(0,213,99,0.18) 0%, transparent 70%); top:-120px; right:-80px; }
.orb-2 { width:440px; height:440px; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); bottom:-60px; left:-60px; animation-delay:-5s; }
.orb-3 { width:300px; height:300px; background: radial-gradient(circle, rgba(0,100,200,0.15) 0%, transparent 70%); top:40%; left:40%; animation-delay:-8s; }
@keyframes drift { from{transform:translate(0,0) scale(1)} to{transform:translate(30px,20px) scale(1.05)} }
.hero-grid {
  position: absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  max-width: 920px;
  width:100%;
  text-align: center;
  position:relative;
  z-index:2;
  margin: 0 auto;
  margin-top: clamp(2px, 1vh, 14px);
}
.hero-tag {
  display: inline-flex; align-items:center; gap: 8px; border: 1px solid rgba(0,213,99,0.3);
  background: rgba(0,213,99,0.07); color: var(--green); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 18px; border-radius: 40px;
  margin-bottom: 16px; animation: fadeUp .8s var(--ease) both;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 12px 28px rgba(0,0,0,0.24);
}
.hero-tag .dot { width:6px; height:6px; background:var(--green); border-radius:50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9vw, 108px);
  color: var(--white);
  margin: 0 0 18px;
  animation: fadeUp .9s var(--ease) .1s both;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-title-lead {
  display: block;
  font-size: clamp(28px, 4.1vw, 42px);
  letter-spacing: .8px;
  line-height: 1.03;
  margin: 0;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 8px 24px rgba(0,0,0,0.32);
}
.hero-title-main {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  line-height: .96;
  margin: 0;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--green) 0%, #a8ffd4 45%, var(--gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentShimmer 4s ease-in-out infinite;
  text-shadow: none;
}
@keyframes accentShimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero-title .line2 {
  display: inline-block;
  color: rgba(255,255,255,0.98);
  letter-spacing: 1.5px;
}
.hero-sub {
  font-size: clamp(16px,2.2vw,20px); color: var(--muted); max-width: 660px; margin: 0 auto 34px; line-height: 1.74;
  animation: fadeUp 1s var(--ease) .2s both;
}
.hero-actions { display: flex; gap:14px; justify-content:center; flex-wrap:wrap; animation: fadeUp 1s var(--ease) .35s both; }
.hero-variant-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .2px;
  animation: fadeUp 1s var(--ease) .42s both;
}
.btn-green, .btn-ghost {
  font-size:15px; padding: 15px 32px; border-radius: 12px; display:inline-flex; align-items:center; gap:8px;
  transition: all .25s var(--ease);
  touch-action: manipulation; /* remove 300ms tap delay on mobile */
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.btn-green { background: linear-gradient(135deg, var(--green), #47e89c); color: #001208; font-weight: 800; border:none; box-shadow: 0 10px 28px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.34); }
.btn-ghost { background: var(--surface2); color: var(--white); font-weight: 600; border: 1px solid var(--border2); backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.24); transform: translateY(-1px); }
.hero-stats {
  display:flex; justify-content:center; gap:48px; flex-wrap:wrap; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--border); animation: fadeUp 1s var(--ease) .5s both;
}
.stat-item { text-align:center; }
.stat-num { font-family:var(--font-heading); font-size: 44px; letter-spacing:1px; color: var(--white); line-height:1; }
.stat-num .unit { color: var(--green); }
.stat-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-top:4px; }
.scroll-hint {
  /* min-height:auto sonrası normal akışa alındı — hero-inner içinde en altta */
  position: relative;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
}
.scroll-line { width:1px; height:40px; background: linear-gradient(to bottom, var(--green), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%{opacity:0;transform:scaleY(0)} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0)} }

.section { padding: var(--section-pad-y) clamp(20px,6vw,80px); position:relative; z-index:1; }
.uka-sections-stack { display: flex; flex-direction: column; }
.uka-sections-stack > section { width: 100%; }
.container { max-width: var(--container-max-width); margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight:700; letter-spacing:2.8px; text-transform:uppercase;
  color: var(--green); margin-bottom:14px; display:flex; align-items:center; gap:10px;
}
.eyebrow::before { content:''; display:block; width:28px; height:1.5px; background:var(--green); }
.section-h { font-family:var(--font-heading); font-size: clamp(38px,5.2vw,62px); letter-spacing:1.1px; line-height:1.02; color: var(--white); margin-bottom:18px; }
.section-h .g { color: var(--green); }
.section-p { color:var(--muted); font-size:16px; line-height:1.82; max-width:620px; }

.section + .section { border-top: 1px solid rgba(255,255,255,0.04); }

.benefits-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(0,213,99,0.12), transparent 45%),
    radial-gradient(circle at 92% 100%, rgba(245,166,35,0.1), transparent 46%),
    linear-gradient(180deg, rgba(9,20,34,0.6), rgba(6,15,26,0.9));
}
.benefits-layout {
  display:grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: start;
}
.benefits-lead {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 16% -10%, rgba(0,213,99,0.15), transparent 48%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  box-shadow: 0 16px 36px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  padding: clamp(20px, 3vw, 30px);
}
.benefits-lead .section-h {
  font-size: clamp(36px, 4.2vw, 52px);
  margin-bottom: 14px;
}
.benefits-lead .section-p {
  max-width: none;
  font-size: 15px;
  line-height: 1.72;
}
.benefits-lead-actions {
  margin-top: 18px;
}
.benefits-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap: 16px;
}
.benefit-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,213,99,0.13), transparent 40%),
    linear-gradient(155deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  padding: 18px 17px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.11);
  min-height: 178px;
}
.bc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.bc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,213,99,0.12);
  border: 1px solid rgba(0,213,99,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
}
.bc-icon .icon-svg { width: 20px; height: 20px; }
.bc-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 4px 8px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: .8px;
  line-height: 1;
  color: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
}
.bc-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
}
.bc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.66;
}

.benefits-section.icon-style-line .bc-icon {
  background: rgba(0,213,99,0.12);
  border-color: rgba(0,213,99,0.3);
}

.benefits-section.icon-style-bold .bc-icon {
  background: linear-gradient(135deg, rgba(0,213,99,0.22), rgba(0,213,99,0.08));
  border-color: rgba(0,213,99,0.42);
  box-shadow: 0 10px 22px rgba(0,213,99,0.2);
}
.benefits-section.icon-style-bold .bc-icon svg * {
  stroke-width: 2.2px !important;
}

.benefits-section.icon-style-minimal .bc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.2);
}
.benefits-section.icon-style-minimal .bc-icon svg * {
  stroke-width: 1.6px !important;
}
.benefits-section.icon-style-minimal .bc-index {
  color: rgba(255,255,255,0.62);
  border-color: rgba(255,255,255,0.17);
  background: rgba(255,255,255,0.03);
}

@media (hover: hover) and (pointer: fine) {
  .benefits-section.motion-style-soft .benefit-card {
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  }
  .benefits-section.motion-style-soft .benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,213,99,0.5);
    box-shadow:
      0 22px 44px rgba(0,0,0,0.32),
      0 0 0 1px rgba(0,213,99,0.2) inset,
      0 0 48px rgba(0,213,99,0.14),
      0 0 18px rgba(0,213,99,0.1);
  }

  .benefits-section.motion-style-bouncy .benefit-card {
    transition: transform .26s cubic-bezier(.2,.8,.2,1.15), border-color .26s var(--ease), box-shadow .26s var(--ease);
  }
  .benefits-section.motion-style-bouncy .benefit-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(0,213,99,0.55);
    box-shadow:
      0 24px 48px rgba(0,0,0,0.34),
      0 0 0 1px rgba(0,213,99,0.24) inset,
      0 0 54px rgba(0,213,99,0.18),
      0 0 20px rgba(0,213,99,0.12);
  }

  .benefits-section.motion-style-off .benefit-card {
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
  }
  .benefits-section.motion-style-off .benefit-card:hover {
    transform: none;
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 14px 30px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.11);
  }
}

.social-proof-section {
  position: relative;
  background: linear-gradient(180deg, rgba(9,20,34,0.72), rgba(6,15,26,0.92));
  padding-bottom: 40px;
}
.social-proof-section.style-classic {
  background: var(--bg2);
}

.social-proof-section.style-classic .proof-card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.social-proof-section.style-editorial {
  background: linear-gradient(180deg, rgba(7,15,26,0.82), rgba(7,15,26,0.98));
}

.social-proof-section.style-editorial .proof-card {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.social-proof-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(860px, calc(100% - 56px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.36), rgba(0,213,99,0.3), transparent);
  box-shadow: 0 0 20px rgba(245,166,35,0.12);
  pointer-events: none;
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.proof-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.proof-card p { color: var(--text); font-size: 14px; line-height: 1.72; margin-bottom: 14px; }
.proof-meta { display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:12px; color:var(--muted); }
.proof-meta strong { color: var(--white); font-size: 13px; }

@media (hover: hover) and (pointer: fine) {
  .social-proof-section.motion-style-soft .proof-card {
    transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
  }
  .social-proof-section.motion-style-soft .proof-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217,171,87,0.26);
    box-shadow: var(--shadow-card);
  }

  .social-proof-section.motion-style-bouncy .proof-card {
    transition: transform .24s cubic-bezier(.2,.8,.2,1.15), border-color .24s var(--ease), box-shadow .24s var(--ease);
  }
  .social-proof-section.motion-style-bouncy .proof-card:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(217,171,87,0.34);
    box-shadow: 0 18px 38px rgba(0,0,0,0.3), 0 0 0 1px rgba(245,166,35,0.16) inset;
  }

  .social-proof-section.motion-style-off .proof-card {
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
  }
  .social-proof-section.motion-style-off .proof-card:hover {
    transform: none;
    border-color: rgba(255,255,255,0.14);
    box-shadow: var(--shadow-soft);
  }

  .contact-section.motion-style-soft .contact-channel,
  .contact-section.motion-style-soft .quick-lead-card,
  .contact-section.motion-style-soft .form-wrap,
  .contact-section.motion-style-soft .lead-summary {
    transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
  }
  .contact-section.motion-style-soft .contact-channel:hover,
  .contact-section.motion-style-soft .quick-lead-card:hover,
  .contact-section.motion-style-soft .form-wrap:hover,
  .contact-section.motion-style-soft .lead-summary:hover {
    transform: translateY(-4px);
  }

  .contact-section.motion-style-bouncy .contact-channel,
  .contact-section.motion-style-bouncy .quick-lead-card,
  .contact-section.motion-style-bouncy .form-wrap,
  .contact-section.motion-style-bouncy .lead-summary {
    transition: transform .22s cubic-bezier(.2,.8,.2,1.15), border-color .22s var(--ease), box-shadow .22s var(--ease);
  }
  .contact-section.motion-style-bouncy .contact-channel:hover,
  .contact-section.motion-style-bouncy .quick-lead-card:hover,
  .contact-section.motion-style-bouncy .form-wrap:hover,
  .contact-section.motion-style-bouncy .lead-summary:hover {
    transform: translateY(-7px) scale(1.01);
  }

  .contact-section.motion-style-off .contact-channel,
  .contact-section.motion-style-off .quick-lead-card,
  .contact-section.motion-style-off .form-wrap,
  .contact-section.motion-style-off .lead-summary {
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
  }
  .contact-section.motion-style-off .contact-channel:hover,
  .contact-section.motion-style-off .quick-lead-card:hover,
  .contact-section.motion-style-off .form-wrap:hover,
  .contact-section.motion-style-off .lead-summary:hover {
    transform: none;
  }

  body.card-motion-soft .benefits-section .benefit-card,
  body.card-motion-soft .social-proof-section .proof-card,
  body.card-motion-soft .process-step.visible,
  body.card-motion-soft .contact-section .contact-channel,
  body.card-motion-soft .contact-section .quick-lead-card,
  body.card-motion-soft .contact-section .form-wrap,
  body.card-motion-soft .contact-section .lead-summary {
    transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
  }
  body.card-motion-soft .benefits-section .benefit-card:hover,
  body.card-motion-soft .social-proof-section .proof-card:hover,
  body.card-motion-soft .process-step.visible:hover,
  body.card-motion-soft .contact-section .contact-channel:hover,
  body.card-motion-soft .contact-section .quick-lead-card:hover,
  body.card-motion-soft .contact-section .form-wrap:hover,
  body.card-motion-soft .contact-section .lead-summary:hover {
    transform: translateY(-4px);
  }

  body.card-motion-bouncy .benefits-section .benefit-card,
  body.card-motion-bouncy .social-proof-section .proof-card,
  body.card-motion-bouncy .process-step.visible,
  body.card-motion-bouncy .contact-section .contact-channel,
  body.card-motion-bouncy .contact-section .quick-lead-card,
  body.card-motion-bouncy .contact-section .form-wrap,
  body.card-motion-bouncy .contact-section .lead-summary {
    transition: transform .22s cubic-bezier(.2,.8,.2,1.15), border-color .22s var(--ease), box-shadow .22s var(--ease);
  }
  body.card-motion-bouncy .benefits-section .benefit-card:hover,
  body.card-motion-bouncy .social-proof-section .proof-card:hover,
  body.card-motion-bouncy .process-step.visible:hover,
  body.card-motion-bouncy .contact-section .contact-channel:hover,
  body.card-motion-bouncy .contact-section .quick-lead-card:hover,
  body.card-motion-bouncy .contact-section .form-wrap:hover,
  body.card-motion-bouncy .contact-section .lead-summary:hover {
    transform: translateY(-7px) scale(1.01);
  }

  body.card-motion-off .benefits-section .benefit-card,
  body.card-motion-off .social-proof-section .proof-card,
  body.card-motion-off .process-step.visible,
  body.card-motion-off .contact-section .contact-channel,
  body.card-motion-off .contact-section .quick-lead-card,
  body.card-motion-off .contact-section .form-wrap,
  body.card-motion-off .contact-section .lead-summary {
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease) !important;
  }
  body.card-motion-off .benefits-section .benefit-card:hover,
  body.card-motion-off .social-proof-section .proof-card:hover,
  body.card-motion-off .process-step.visible:hover,
  body.card-motion-off .contact-section .contact-channel:hover,
  body.card-motion-off .contact-section .quick-lead-card:hover,
  body.card-motion-off .contact-section .form-wrap:hover,
  body.card-motion-off .contact-section .lead-summary:hover {
    transform: none !important;
  }
  body.card-motion-off .process-step.visible:hover .step-media img {
    transform: none;
    filter: none;
  }
}

.trust-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.hero-trust-section {
  position: relative;
  padding-top: 36px;
  padding-bottom: 44px;
  background: linear-gradient(180deg, rgba(6,15,27,0.22), rgba(6,15,27,0));
}
.hero-trust-section.style-classic {
  background: var(--bg2);
}

.hero-trust-section.style-classic .trust-item {
  border-color: rgba(255,255,255,0.12);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-trust-section.style-editorial {
  background: linear-gradient(180deg, rgba(8,16,28,0.65), rgba(8,16,28,0.05));
}

.hero-trust-section.style-editorial .trust-item {
  border-radius: 10px;
  border-color: rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.hero-trust-section .trust-strip {
  margin-top: 0;
}
.hero-trust-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,15,27,0), rgba(6,15,27,0.42));
}
body.hero-variant-price .hero-variant-note {
  color: rgba(217,171,87,0.9);
}
body.hero-variant-price .hero-trust-section .trust-item {
  border-color: rgba(217,171,87,0.26);
  background: linear-gradient(135deg, rgba(217,171,87,0.1), rgba(255,255,255,0.03));
}
.trust-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.trust-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% -25%, rgba(0,213,99,0.16), transparent 58%);
  pointer-events: none;
}
.trust-item strong { display:block; font-family: var(--font-heading); letter-spacing: .8px; font-size: 30px; color: var(--white); line-height:1; }
.trust-item span { display:block; margin-top: 6px; font-size: 12px; color: var(--muted); }

@keyframes trustGlowPulse {
  0%,100% { box-shadow: 0 12px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.16); }
  50%      { box-shadow: 0 12px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 22px rgba(0,213,99,0.15); border-color: rgba(0,213,99,0.3); }
}
.trust-strip .trust-item:nth-child(1) { animation: trustGlowPulse 4s ease-in-out 0s infinite; }
.trust-strip .trust-item:nth-child(2) { animation: trustGlowPulse 4s ease-in-out 1s infinite; }
.trust-strip .trust-item:nth-child(3) { animation: trustGlowPulse 4s ease-in-out 2s infinite; }
.trust-strip .trust-item:nth-child(4) { animation: trustGlowPulse 4s ease-in-out 3s infinite; }

@media (hover: hover) and (pointer: fine) {
  .hero-trust-section .trust-item {
    transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
  }
  .hero-trust-section .trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0,213,99,0.34);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28), 0 0 0 1px rgba(0,213,99,0.16) inset;
  }
}

.final-conversion-section {
  padding-top: 20px;
  padding-bottom: 70px;
}
.final-conversion-section.style-classic .final-conversion-card {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.final-conversion-section.style-classic .final-conversion-card::after {
  opacity: .35;
}

.final-conversion-section.style-editorial .final-conversion-card {
  border-radius: 14px;
  border-color: rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.final-conversion-section.style-editorial .final-conversion-eyebrow {
  color: var(--gold);
}

.final-conversion-section.style-editorial .final-conversion-eyebrow::before,
.final-conversion-section.style-editorial .final-conversion-eyebrow::after {
  background: rgba(245,166,35,0.58);
}

.final-conversion-card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,213,99,0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,213,99,0.2), transparent 46%),
    radial-gradient(circle at 88% 100%, rgba(245,166,35,0.16), transparent 46%),
    linear-gradient(135deg, rgba(9,20,34,0.94), rgba(6,15,26,0.96));
  box-shadow: 0 18px 42px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
  overflow: hidden;
}
.final-conversion-card::after {
  content: '';
  position: absolute;
  inset: auto 6% 0 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,213,99,0.44), rgba(245,166,35,0.4), transparent);
  opacity: .85;
}
.final-conversion-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: var(--green);
}
.final-conversion-eyebrow::before,
.final-conversion-eyebrow::after {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(0,213,99,0.65);
}
.final-conversion-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 1px;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 12px;
}
.final-conversion-card p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 auto;
  max-width: 700px;
}
.final-conversion-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}


.extra-content-section { background: var(--bg2); }
.extra-content-section.style-classic {
  background: var(--bg2);
}

.extra-content-section.style-classic .extra-widget-card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.extra-content-section.style-premium-card {
  background:
    radial-gradient(circle at 12% 0%, rgba(0,213,99,0.08), transparent 44%),
    radial-gradient(circle at 88% 100%, rgba(245,166,35,0.06), transparent 46%),
    var(--bg2);
}

.extra-content-section.style-premium-card .extra-widget-card {
  background: linear-gradient(150deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 14px 32px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
}

.extra-content-section.style-editorial {
  background: linear-gradient(180deg, rgba(7,15,26,0.84), rgba(7,15,26,0.98));
}

.extra-content-section.style-editorial .extra-widget-card {
  border-radius: 12px;
  border-color: rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.extra-content-section.style-editorial .extra-widget-title {
  letter-spacing: .3px;
}

.extra-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.extra-widget-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.extra-widget-title {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
}
.extra-widget-card p,
.extra-widget-card li,
.extra-widget-card span,
.extra-widget-card div {
  color: var(--text);
}

/* Ready block styles for widget/custom HTML content */
.extra-widget-card.info-card {
  border-color: rgba(0, 213, 99, 0.26);
  background: linear-gradient(135deg, rgba(0,213,99,0.10), rgba(255,255,255,0.03));
}

.extra-widget-card.highlight-box {
  border-color: rgba(245,166,35,0.28);
  background: linear-gradient(135deg, rgba(245,166,35,0.14), rgba(255,255,255,0.03));
}

.extra-widget-card.cta-box {
  border-color: rgba(0,213,99,0.34);
  box-shadow: 0 10px 30px rgba(0, 213, 99, 0.18);
}

.extra-widget-card.cta-box .btn,
.extra-widget-card.cta-box .button,
.extra-widget-card.cta-box a.btn,
.extra-widget-card.cta-box a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), #00a847);
  color: #001005;
  font-weight: 800;
  text-decoration: none;
}

.process-section { background: var(--bg2); }
.process-track { position:relative; margin-top:50px; }
.process-line { display: none; }
.process-steps { display:grid; grid-template-columns:1fr; gap:16px; }
.process-step {
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 16px;
  position:relative;
  background: linear-gradient(145deg, var(--surface), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  opacity:0; transform:translateY(30px); transition: opacity .6s var(--ease), transform .6s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.process-step.visible { opacity:1; transform:none; }
.step-head {
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.step-badge {
  display:inline-flex;
  align-items:center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,213,99,0.12);
  border: 1px solid rgba(0,213,99,0.32);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.step-content {
  display:grid;
  grid-template-columns: 1fr 112px;
  gap: 12px;
  align-items: start;
}
.step-copy {
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.step-title { font-weight:700; font-size:16px; color:var(--white); line-height:1.25; }
.step-desc { font-size:13px; color:var(--muted); line-height:1.6; max-width:none; }
.step-media {
  align-self: stretch;
  margin: 0;
  width: 112px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.22);
}
.step-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .process-step.visible:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 10px 22px rgba(0,0,0,0.24), 0 0 0 1px rgba(0,213,99,0.08) inset;
  }

  .process-step.visible:hover .step-media img {
    transform: scale(1.02);
    filter: saturate(1.02) contrast(1.01);
  }
}

.process-section.style-classic {
  background: var(--bg2);
}

.process-section.style-classic .process-step {
  background: linear-gradient(145deg, var(--surface), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.process-section.style-classic .step-badge {
  background: rgba(0,213,99,0.12);
  border: 1px solid rgba(0,213,99,0.32);
  color: var(--green);
}

.process-section.style-premium-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(0,213,99,0.08), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(245,166,35,0.06), transparent 50%),
    var(--bg2);
}

.process-section.style-premium-card .process-step {
  background: linear-gradient(155deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

.process-section.style-premium-card .step-badge {
  background: linear-gradient(135deg, rgba(0,213,99,0.2), rgba(245,166,35,0.14));
  border-color: rgba(0,213,99,0.45);
  color: #eafff4;
}

.process-section.style-premium-card .step-media {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

.process-section.style-editorial {
  background: linear-gradient(180deg, rgba(6,14,24,0.98), rgba(8,18,31,0.98));
}

.process-section.style-editorial .process-steps {
  gap: 12px;
}

.process-section.style-editorial .process-step {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.process-section.style-editorial .step-content {
  grid-template-columns: 1fr 96px;
}

.process-section.style-editorial .step-media {
  width: 96px;
  border-radius: 10px;
}

.process-section.style-editorial .step-media img {
  min-height: 92px;
  filter: saturate(0.92) contrast(1.03);
}

.process-section.style-editorial .step-badge {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.34);
  color: #ffd28a;
}

.process-section.style-editorial .step-title {
  font-size: 15px;
}

.process-section.style-editorial .step-desc {
  font-size: 12.5px;
}

.result-pill {
  display:inline-flex; align-items:center; gap:12px; background: linear-gradient(135deg, rgba(0,213,99,0.12), rgba(245,166,35,0.08));
  border: 1px solid rgba(0,213,99,0.25); border-radius: 16px; padding: 18px 28px; margin-top:40px;
}
.result-pill .arrow { color:var(--green); font-size:20px; }

.pricing-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(0,213,99,0.1), transparent 42%),
    radial-gradient(circle at 90% 100%, rgba(245,166,35,0.08), transparent 44%),
    linear-gradient(180deg, rgba(7,17,30,0.92), rgba(6,15,26,0.98));
}
.price-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:42px;
}
.price-box {
  position: relative;
  background: linear-gradient(150deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border:1px solid rgba(255,255,255,0.14);
  border-radius:22px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.price-box::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.07), transparent 42%);
}
.price-private { border-color: rgba(0,213,99,0.3); }
@keyframes priceBorderGlow {
  0%,100% { border-color: rgba(0,213,99,0.3); box-shadow: 0 18px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12); }
  50%      { border-color: rgba(0,213,99,0.7); box-shadow: 0 18px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 40px rgba(0,213,99,0.22), 0 0 0 1px rgba(0,213,99,0.12); }
}
.price-private { animation: priceBorderGlow 3.5s ease-in-out infinite; }
.price-business { border-color: rgba(245,166,35,0.3); }
.price-top { height:4px; }
.price-top.private { background:linear-gradient(90deg,var(--green),#00a847); }
.price-top.business { background:linear-gradient(90deg,var(--gold),#d47d00); }
.price-pad {
  position: relative;
  z-index: 1;
  padding:32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-badge {
  display:inline-flex;
  align-items:center;
  width: fit-content;
  border-radius:999px;
  padding:6px 11px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--green);
  background:rgba(0,213,99,0.12);
  border:1px solid rgba(0,213,99,0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13);
}
.price-chip {
  display:inline-flex;
  align-items:center;
  width: fit-content;
  gap:8px;
  border-radius:999px;
  padding:7px 14px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.1px;
  text-transform:uppercase;
  margin-bottom:2px;
}
.price-chip .icon-svg,
.business-btn .icon-svg,
.price-extra .icon-svg { width: 16px; height: 16px; }
.chip-private { background:var(--green-dim); border:1px solid rgba(0,213,99,0.3); color:var(--green); }
.chip-business { background:var(--gold-dim); border:1px solid rgba(245,166,35,0.32); color:var(--gold); }
.price-line {
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin-bottom: 2px;
}
.price-main {
  font-family:var(--font-heading);
  font-size: clamp(58px, 6.4vw, 74px);
  color:var(--green);
  line-height:.92;
  letter-spacing:.6px;
}
.price-main.business {
  font-size: clamp(42px, 5vw, 56px);
  color:var(--gold);
  line-height:1;
}
.price-unit { font-size:19px; color:var(--muted); margin-bottom: 8px; }
.price-desc { font-size:14px; color:var(--muted); line-height:1.7; margin-bottom: 0; }
.price-note {
  font-size:12px;
  color:rgba(255,255,255,0.42);
  margin-bottom: 2px;
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 10px;
}
.price-list {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom: 4px;
}
.price-list li {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--text);
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
}
.price-list li span { color:var(--green); }
.price-list.business li span { color:var(--gold); }
.price-compare {
  list-style: none;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.price-compare li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
}
.price-compare li:last-child { border-bottom: 0; }
.price-compare li strong {
  color: var(--green);
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: 1px solid rgba(0,213,99,0.34);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(0,213,99,0.11);
}
.price-compare.business li strong {
  color: var(--gold);
  border-color: rgba(245,166,35,0.36);
  background: rgba(245,166,35,0.12);
}
.price-extra {
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius:12px;
  padding:12px 14px;
  font-size:13px;
  color:var(--muted);
}
.business-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(135deg,var(--gold),#d47d00);
  color:#000;
  font-weight:800;
  font-size:14px;
  padding:13px;
  border-radius:12px;
  margin-top: 8px;
  box-shadow: 0 12px 26px rgba(245,166,35,0.28), inset 0 1px 0 rgba(255,255,255,0.28);
}

.pricing-section.style-classic {
  background: var(--bg);
}
.pricing-section.style-classic .price-box {
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.pricing-section.style-classic .price-box::before {
  display: none;
}
.pricing-section.style-classic .price-pad {
  padding: 30px 26px;
}
.pricing-section.style-classic .price-list li,
.pricing-section.style-classic .price-compare li,
.pricing-section.style-classic .price-extra {
  background: rgba(0,0,0,0.18);
}

.pricing-section.style-luxury-gold {
  background:
    radial-gradient(circle at 10% 0%, rgba(245,166,35,0.16), transparent 46%),
    radial-gradient(circle at 90% 100%, rgba(245,166,35,0.1), transparent 44%),
    linear-gradient(180deg, rgba(10,12,18,0.95), rgba(6,8,14,0.98));
}
.pricing-section.style-luxury-gold .price-box {
  border-color: rgba(245,166,35,0.34);
  box-shadow: 0 20px 44px rgba(0,0,0,0.34), 0 0 0 1px rgba(245,166,35,0.12) inset;
}
.pricing-section.style-luxury-gold .price-private {
  border-color: rgba(245,166,35,0.3);
}
.pricing-section.style-luxury-gold .price-main,
.pricing-section.style-luxury-gold .price-badge,
.pricing-section.style-luxury-gold .chip-private,
.pricing-section.style-luxury-gold .price-list li span,
.pricing-section.style-luxury-gold .price-compare li strong {
  color: var(--gold);
}
.pricing-section.style-luxury-gold .price-badge,
.pricing-section.style-luxury-gold .chip-private,
.pricing-section.style-luxury-gold .price-compare li strong {
  border-color: rgba(245,166,35,0.36);
  background: rgba(245,166,35,0.12);
}
.pricing-section.style-luxury-gold .price-top.private,
.pricing-section.style-luxury-gold .price-top.business {
  background: linear-gradient(90deg, var(--gold), #ffd08b);
}

@media (hover: hover) and (pointer: fine) {
  .price-box {
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  }
  .price-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.08) inset;
  }
  .business-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(245,166,35,0.34), inset 0 1px 0 rgba(255,255,255,0.3);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION — Premium Centered Wizard
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(18,216,122,0.07), transparent),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(217,171,87,0.05), transparent);
  pointer-events: none;
}

/* ── Centered text header ────────────────────────────────────────────────── */
.contact-section .section-header { text-align: center; }
.contact-section .section-p     { text-align: center; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Wizard Wrap ─────────────────────────────────────────────────────────── */
.wizard-wrap {
  position: relative;
  max-width: 560px;
  margin: 48px auto 0;
}
.wiz-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.wiz-orb--1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(18,216,122,0.13), transparent 70%);
  top: -80px; left: -100px;
}
.wiz-orb--2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(217,171,87,0.09), transparent 70%);
  bottom: -60px; right: -80px;
}

/* ── Step Dots ───────────────────────────────────────────────────────────── */
.wiz-steps-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.wiz-step-connector {
  flex: 1; max-width: 72px; height: 2px;
  background: var(--border); border-radius: 2px;
  transition: background .4s var(--ease);
}
.wiz-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
  min-width: 88px;
}
.wiz-step-dot .wsd-num,
.wiz-step-dot .wsd-check {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  transition: all .3s var(--ease);
}
.wiz-step-dot .wsd-check { display: none; }
.wiz-step-dot .wsd-label {
  font-size: 11.5px; color: var(--muted); letter-spacing: .3px;
  white-space: nowrap; transition: color .3s;
  line-height: 1.2;
  text-align: center;
}
.wiz-step-dot.is-active .wsd-num {
  border-color: var(--green);
  background: var(--green-dim);
  color: var(--green);
  box-shadow: 0 0 0 4px rgba(18,216,122,0.12);
}
.wiz-step-dot.is-active .wsd-label { color: var(--green); }
.wiz-step-dot.is-done .wsd-num  { display: none; }
.wiz-step-dot.is-done .wsd-check {
  display: flex;
  border-color: var(--green); background: var(--green); color: #000;
}
.wiz-step-dot.is-done .wsd-label { color: var(--white); }
.wiz-step-dot.is-done + .wiz-step-connector { background: var(--green); }

/* ── Wizard Card ─────────────────────────────────────────────────────────── */
.wiz-card {
  position: relative; z-index: 1;
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.wiz-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: .7;
}

/* Live estimate badge */
.wiz-estimate-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, rgba(18,216,122,0.18), rgba(18,216,122,0.08));
  border: 1px solid rgba(18,216,122,0.35);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  display: flex; align-items: center; gap: 5px;
  animation: badge-pop .25s var(--ease) both;
}
@keyframes badge-pop {
  from { transform: scale(.8); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.wiz-estimate-label { font-size: 10px; color: var(--muted); }
.wiz-estimate-badge strong { font-size: 13px; font-weight: 800; color: var(--green); }

/* ── Step Header ─────────────────────────────────────────────────────────── */
.wiz-step-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.wiz-step-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--green-dim);
  border: 1px solid var(--green-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.wiz-step-icon svg { width: 18px; height: 18px; }
.wiz-step-title {
  font-family: var(--font-heading);
  font-size: 20px; letter-spacing: .5px;
  color: var(--white);
}
.wiz-step-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── Step Fields ─────────────────────────────────────────────────────────── */
.wiz-step { display: none; }
.wiz-step.is-active {
  display: block;
  animation: wiz-step-in .3s var(--ease) both;
}
@keyframes wiz-step-in {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.wiz-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wiz-field  { display: flex; flex-direction: column; gap: 6px; }
.wiz-field label {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .8px;
  color: var(--muted); font-weight: 600;
}
.wiz-input-wrap { position: relative; display: flex; align-items: center; }
.wiz-input-wrap input { padding-right: 36px !important; width: 100%; }
.wiz-input-unit {
  position: absolute; right: 12px;
  font-size: 12px; color: var(--muted); font-weight: 600;
  pointer-events: none;
}
.wiz-field input,
.wiz-field select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none; -webkit-appearance: none;
}
.wiz-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.wiz-field input:focus,
.wiz-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18,216,122,0.12);
}
.wiz-field input::placeholder { color: rgba(255,255,255,0.3); }
.wiz-field select option { background: #0d1f33; color: var(--white); }

/* ── Nav Buttons ─────────────────────────────────────────────────────────── */
.wiz-nav {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.wiz-btn-back,
.wiz-btn-next {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 20px; border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 700;
  cursor: pointer; border: none;
  transition: all .22s var(--ease);
}
.wiz-btn-back {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--muted);
}
.wiz-btn-back:hover:not(:disabled) { border-color: rgba(255,255,255,0.25); color: var(--white); }
.wiz-btn-back:disabled { opacity: .35; cursor: not-allowed; }
.wiz-btn-back svg, .wiz-btn-next svg { flex-shrink: 0; stroke: currentColor; }
.wiz-btn-next {
  flex: 1; justify-content: center;
  background: linear-gradient(135deg, var(--green), #00c96e);
  color: #000;
  box-shadow: 0 4px 18px rgba(18,216,122,0.3);
}
.wiz-btn-next:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(18,216,122,0.4); }
.wiz-btn-next:active { transform: translateY(0); }

/* ── Finish Screen ───────────────────────────────────────────────────────── */
.wiz-finish { animation: wiz-step-in .35s var(--ease) both; }

/* Summary */
.wiz-summary {
  margin-bottom: 18px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
}
.wiz-summary-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
}
.wiz-summary-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green-glow); flex-shrink: 0;
}
.wiz-summary-header strong { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .5px; }
.wiz-summary-grid { display: grid; grid-template-columns: 1fr 1fr; }
.wiz-summary-item {
  padding: 11px 14px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.wiz-summary-item:nth-child(even)      { border-right: none; }
.wiz-summary-item:nth-last-child(-n+2) { border-bottom: none; }
.wiz-summary-item span   { font-size: 10px; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); line-height: 1.15; }
.wiz-summary-item strong { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3; word-break: break-word; }
.wiz-summary-item.is-highlight {
  grid-column: 1 / -1;
  flex-direction: row; justify-content: space-between; align-items: center;
  background: linear-gradient(90deg, rgba(18,216,122,0.10), rgba(18,216,122,0.03));
  border-right: none;
  border-bottom: 1px solid rgba(18,216,122,0.18);
  padding: 12px 14px;
}
.wiz-summary-item.is-highlight span   { font-size: 11px; color: rgba(18,216,122,0.7); }
.wiz-summary-item.is-highlight strong { font-size: 17px; color: var(--green); text-shadow: 0 0 16px var(--green-glow); }

/* Finish action buttons */
.wiz-finish-actions {
  display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: 10px; margin-bottom: 12px;
  align-items: stretch;
}
.wiz-btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  min-height: 46px;
  background: linear-gradient(135deg, var(--green), #00c96e);
  color: #000; font-weight: 800; font-size: 14px;
  border: none; border-radius: 11px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(18,216,122,0.3);
  transition: all .22s var(--ease);
}
.wiz-btn-submit:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(18,216,122,0.42); }
.wiz-btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.wiz-btn-submit svg { stroke: currentColor; flex-shrink: 0; }
.wiz-submit-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: rgba(0,0,0,0.7);
  border-radius: 50%;
  animation: qs-spin .65s linear infinite;
  flex-shrink: 0;
}
@keyframes qs-spin { to { transform: rotate(360deg); } }

.wiz-btn-wa {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  min-height: 46px;
  justify-content: center;
  background: rgba(37,211,102,0.08);
  border: 1.5px solid rgba(37,211,102,0.25);
  border-radius: 11px;
  color: #25d366; font-size: 13px; font-weight: 700;
  transition: all .2s var(--ease); white-space: nowrap;
  text-decoration: none;
}
.wiz-btn-wa:hover { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.4); }
.wiz-btn-wa svg { stroke: currentColor; flex-shrink: 0; }

/* Feedback */
.wiz-feedback {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: 12px; padding: 13px 15px;
  animation: wiz-step-in .3s var(--ease) both;
  margin-top: 10px;
}
.wiz-feedback--success {
  background: linear-gradient(135deg, rgba(18,216,122,0.12), rgba(18,216,122,0.05));
  border: 1px solid rgba(18,216,122,0.3); color: var(--green);
}
.wiz-feedback--success strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 2px; }
.wiz-feedback--success span   { font-size: 12px; color: rgba(18,216,122,0.8); }
.wiz-feedback--error {
  background: rgba(255,60,60,0.07);
  border: 1px solid rgba(255,80,80,0.2); color: #ff8a8a;
}
.wiz-feedback--error strong { display: block; font-size: 13px; margin-bottom: 4px; }
.wiz-feedback-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.wiz-feedback-icon svg { display: block; stroke: currentColor; width: 20px; height: 20px; }
.wiz-feedback strong { line-height: 1.25; }
.wiz-feedback span { line-height: 1.35; }
.wiz-fallback-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--green); text-decoration: none;
  border: 1px solid var(--green-glow); border-radius: 7px;
  padding: 4px 10px; transition: background .18s;
  margin-top: 8px;
}
.wiz-fallback-link:hover { background: var(--green-dim); }

/* ── Channels below card ─────────────────────────────────────────────────── */
.wiz-channels {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 16px;
  position: relative; z-index: 1;
}
.wiz-channel {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  min-height: 66px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s, transform .2s;
}
.wiz-channel:hover { transform: translateY(-2px); border-color: var(--border2); }
.wiz-channel-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.wiz-channel--wa .wiz-channel-icon { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.2); color: #25d366; }
.wiz-channel--em .wiz-channel-icon { background: rgba(0,120,255,0.1);   border: 1px solid rgba(0,120,255,0.18); color: #5aacff; }
.wiz-channel-icon svg { stroke: currentColor; width: 18px; height: 18px; }
.wiz-channel-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.wiz-channel-info span   { font-size: 10px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); line-height: 1.1; }
.wiz-channel-info strong { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Hidden wizard-mode form */
.form-wrap--wizard-mode {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important; opacity: 0 !important;
  pointer-events: none !important; clip: rect(0,0,0,0) !important;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 520px) {
  .wiz-card { padding: 20px 18px 18px; border-radius: 18px; }
  .wiz-fields { grid-template-columns: 1fr; }
  .wiz-finish-actions { grid-template-columns: 1fr; }
  .wiz-btn-wa { justify-content: center; }
  .wiz-channels { grid-template-columns: 1fr; }
  .wiz-step-connector { max-width: 40px; }
  .wiz-step-dot { min-width: 72px; }
  .wiz-step-dot .wsd-label { font-size: 10.5px; }
  .wiz-estimate-badge {
    position: static;
    margin: 0 0 12px auto;
    width: fit-content;
  }
}

/* ── Form wrap ─────────────────────────────────────────────────────────────── */
.form-wrap {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.form-title { font-family: var(--font-heading); font-size: 28px; letter-spacing: 1px; color: var(--white); margin-bottom: 6px; }
.form-sub-txt { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.lead-summary-head span { font-size: 11px; color: var(--muted); }
.lead-summary-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lead-summary-list li {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.lead-summary-list li span { font-size: 12px; color: var(--muted); }
.lead-summary-list li strong { font-size: 12px; color: var(--white); text-align: right; }
.lead-summary-list li.is-estimate {
  grid-column: 1 / -1;
  border-color: rgba(0,213,99,0.35);
  background: rgba(0,213,99,0.09);
}
.lead-summary-list li.is-estimate strong {
  color: var(--green);
  font-size: 13px;
}
.toggle-row { display:flex; gap:10px; margin-bottom:24px; }
.toggle-btn {
  flex:1; padding:11px 14px; background: var(--surface); border:1.5px solid var(--border); border-radius:10px;
  color:var(--muted); font-weight:600; font-size:13px; cursor:pointer;
}
.toggle-btn.on-wa { border-color:#25d366; background:rgba(37,211,102,0.08); color:#25d366; }
.toggle-btn.on-em { border-color:var(--green); background:var(--green-dim); color:var(--green); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-full { grid-column:1/-1; }
.fg { display:flex; flex-direction:column; gap:7px; }
.fg label { font-size:12px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; color:var(--muted); }
.fg input, .fg select, .fg textarea {
  background: rgba(0,0,0,0.3); border: 1.5px solid var(--border); border-radius: 9px;
  padding: 12px 15px; font-size:16px; color:var(--white); outline:none; width:100%;
  /* 16px minimum prevents iOS auto-zoom on focus */
}
.fg textarea { resize:vertical; min-height:90px; }
.btn-submit {
  width:100%; padding:15px; background: linear-gradient(135deg, var(--green), #00a847); color:#000;
  font-weight:800; font-size:15px; border:none; border-radius:10px; cursor:pointer;
}
.form-ok {
  display:none; background: rgba(0,213,99,0.07); border:1px solid rgba(0,213,99,0.25);
  border-radius:12px; padding:20px; text-align:center; color:var(--green); font-weight:600; font-size:15px; margin-top:16px;
}

.backend-form-render p { color: var(--muted); }
.backend-form-render input,
.backend-form-render select,
.backend-form-render textarea,
.backend-form-render .ff-el-form-control,
.backend-form-render .wpforms-field input,
.backend-form-render .wpforms-field select,
.backend-form-render .wpforms-field textarea {
  background: rgba(0,0,0,0.3) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 9px !important;
  padding: 12px 15px !important;
  font-size: 16px !important;
  color: var(--white) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.backend-form-render input:focus,
.backend-form-render select:focus,
.backend-form-render textarea:focus,
.backend-form-render .ff-el-form-control:focus,
.backend-form-render .wpforms-field input:focus,
.backend-form-render .wpforms-field select:focus,
.backend-form-render .wpforms-field textarea:focus {
  border-color: rgba(0,213,99,0.5) !important;
  box-shadow: 0 0 0 3px rgba(0,213,99,0.08) !important;
  outline: none !important;
}
/* WPForms label */
.backend-form-render .wpforms-field label,
.backend-form-render .wpforms-field-label {
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  display: block !important;
}
/* WPForms field wrapper */
.backend-form-render .wpforms-field {
  margin-bottom: 16px !important;
  padding: 0 !important;
}
/* WPForms error */
.backend-form-render .wpforms-error,
.backend-form-render label.wpforms-error {
  color: #ff5c5c !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  display: block !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}
/* WPForms confirmation */
.backend-form-render .wpforms-confirmation-container,
.backend-form-render .wpforms-confirmation-container-full {
  background: rgba(0,213,99,0.08) !important;
  border: 1px solid rgba(0,213,99,0.25) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  color: var(--green) !important;
  font-weight: 600 !important;
}
/* WPForms honeypot + recaptcha */
.backend-form-render .wpforms-field-hp { display: none !important; }
.backend-form-render .wpforms-recaptcha-container { margin-top: 8px !important; }
/* Submit buttons — tüm form plugin'leri */
.backend-form-render .wpcf7-submit,
.backend-form-render button[type='submit'],
.backend-form-render .ff-btn-submit,
.backend-form-render .wpforms-submit,
.backend-form-render input[type='submit'] {
  width: 100% !important;
  padding: 15px !important;
  background: linear-gradient(135deg, var(--green), #00a847) !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  letter-spacing: .3px !important;
  transition: opacity .2s !important;
}
.backend-form-render .wpcf7-submit:hover,
.backend-form-render button[type='submit']:hover,
.backend-form-render .ff-btn-submit:hover,
.backend-form-render .wpforms-submit:hover,
.backend-form-render input[type='submit']:hover {
  opacity: .88 !important;
}
.backend-form-render .wpcf7-spinner { margin: 10px auto 0; display: block; }

.site-footer,
footer {
  background: #030a13;
  position: relative;
  overflow: hidden;
}

/* ── Ambient orbs ──────────────────────────────────────────────────────── */
.footer-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.footer-orb--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,213,99,0.07) 0%, transparent 68%);
  top: -120px;
  left: -80px;
  filter: blur(40px);
}
.footer-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0,100,200,0.06) 0%, transparent 70%);
  bottom: 0;
  right: -60px;
  filter: blur(50px);
}

/* ── Glow border ──────────────────────────────────────────────────────── */
.footer-glow-bar {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,213,99,0.0) 8%,
    rgba(0,213,99,0.6) 35%,
    rgba(0,213,99,0.95) 50%,
    rgba(0,213,99,0.6) 65%,
    rgba(0,213,99,0.0) 92%,
    transparent 100%
  );
  box-shadow: 0 0 40px rgba(0,213,99,0.22), 0 0 80px rgba(0,213,99,0.06);
}

/* ── Background grid ──────────────────────────────────────────────────── */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Main grid ────────────────────────────────────────────────────────── */
.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px clamp(20px,6vw,80px) 56px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr;
  gap: 56px 64px;
  align-items: start;
}

/* ── Col shared ──────────────────────────────────────────────────────── */
.footer-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 24px;
  opacity: .9;
}

.footer-col-title-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0,213,99,0.7);
  flex-shrink: 0;
}

/* ── Brand col ────────────────────────────────────────────────────────── */
.footer-brand-wrap {
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 290px;
  margin: 0 0 22px;
}

/* rating */
.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  width: fit-content;
}

.footer-rating-stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
}

.footer-rating-stars svg {
  width: 13px;
  height: 13px;
}

.footer-rating-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1;
}

.footer-rating-text strong {
  color: var(--white);
}

/* badges */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--green);
  background: rgba(0,213,99,0.06);
  border: 1px solid rgba(0,213,99,0.18);
  border-radius: 30px;
  padding: 5px 12px 5px 9px;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.footer-badge svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.footer-badge:hover {
  background: rgba(0,213,99,0.12);
  border-color: rgba(0,213,99,0.38);
  box-shadow: 0 0 14px rgba(0,213,99,0.12);
}

/* ── Nav col ─────────────────────────────────────────────────────────── */
.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-list li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-nav-list li:last-child {
  border-bottom: none;
}

.footer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(143,159,179,0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
  letter-spacing: .15px;
  transition: color .2s ease, gap .2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.footer-nav-list li a::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0) translateX(-4px);
  transition: opacity .2s, transform .22s cubic-bezier(.34,1.56,.64,1);
}

.footer-nav-list li a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,213,99,0.4), transparent);
  opacity: 0;
  transition: opacity .2s;
}

.footer-nav-list li a:hover {
  color: var(--white);
  gap: 14px;
}

.footer-nav-list li a:hover::before {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.footer-nav-list li a:hover::after {
  opacity: 1;
}

.footer-nav-list li.current-menu-item > a {
  color: var(--green);
}

.footer-nav-list li.current-menu-item > a::before {
  opacity: 1;
  transform: scale(1) translateX(0);
}

/* ── Contact col ─────────────────────────────────────────────────────── */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.055);
  background: rgba(255,255,255,0.022);
  transition: background .22s, border-color .22s, color .22s, transform .18s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.footer-contact-link:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.13);
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-link--wa {
  border-color: rgba(37,211,102,0.15);
  background: rgba(37,211,102,0.04);
}

.footer-contact-link--wa:hover {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.3);
  color: #25d366;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  transition: background .22s;
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
  transition: color .22s;
}

.footer-contact-link:hover .footer-contact-icon {
  background: rgba(0,213,99,0.12);
}

.footer-contact-link:hover .footer-contact-icon svg {
  color: var(--green);
}

.footer-contact-link--wa .footer-contact-icon {
  background: rgba(37,211,102,0.1);
}

.footer-contact-link--wa .footer-contact-icon svg {
  color: #25d366;
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.footer-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .65;
  line-height: 1;
}

.footer-contact-value {
  font-size: 13px;
  font-weight: 500;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.footer-contact-arrow {
  width: 14px;
  height: 14px;
  color: var(--muted);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s;
}

.footer-contact-link:hover .footer-contact-arrow {
  opacity: .5;
  transform: translate(2px, -2px);
}

/* ── Bottom bar ──────────────────────────────────────────────────────── */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.055);
  background: rgba(0,0,0,0.18);
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px clamp(20px,6vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy-text {
  font-size: 11.5px;
  color: var(--muted);
  opacity: .55;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.footer-copy-sep {
  opacity: .4;
}

.footer-note-inline {
  opacity: .75;
}

/* ── Legal nav ────────────────────────────────────────────────────────── */
.footer-legal-nav {
  display: flex;
  align-items: center;
}

.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.footer-legal-list li {
  display: flex;
  align-items: center;
}

.footer-legal-list li + li::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin-right: 6px;
  flex-shrink: 0;
}

.footer-legal-list li a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .4px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: transparent;
  opacity: .55;
  transition: opacity .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.footer-legal-list li a:hover {
  opacity: 1;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

/* ── Style variants ──────────────────────────────────────────────────── */
.site-footer.style-classic-minimal {
  background: #050c18;
}

.site-footer.style-classic-minimal .footer-glow-bar {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  box-shadow: none;
}

.site-footer.style-editorial-split {
  background: linear-gradient(180deg, #071120 0%, #040d18 100%);
}

.site-footer.style-editorial-split .footer-glow-bar {
  background: linear-gradient(90deg, transparent 8%, rgba(245,166,35,0.75) 50%, transparent 92%);
  box-shadow: 0 0 36px rgba(245,166,35,0.14);
}

.site-footer.style-editorial-split .footer-orb--1 {
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 68%);
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media(max-width:900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 44px;
    padding-bottom: 44px;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
  .footer-brand-desc { max-width: 100%; }
  .footer-rating { width: auto; }
}

@media(max-width:560px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 44px 16px 36px;
    gap: 36px;
  }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px;
    gap: 10px;
  }
  .footer-legal-list { gap: 4px; }
  .footer-legal-list li a { font-size: 10.5px; padding: 3px 8px; }
  .footer-contact-value { font-size: 12px; }
}

.footer-inner { max-width:1060px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.footer-copy { font-size:12px; color:var(--muted); text-align:right; line-height:1.7; }
.footer-copy > div { display:flex; align-items:center; justify-content:flex-end; gap:8px; }
.footer-tagline {
  width:100%; text-align:center; font-size:13px; color:var(--muted);
  border-top:1px solid var(--border); padding-top:20px; margin-top:20px;
}
.footer-tagline strong { color:var(--white); }
.footer-tagline em { color:var(--gold); font-style:normal; }

.wa-btn {
  position:fixed; bottom:28px; right:24px; z-index:700; width:58px; height:58px;
  background: linear-gradient(135deg, #25d366, #1ab050); border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:26px; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
}
.wa-btn .icon-svg { width: 24px; height: 24px; color: #fff; }

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 900;
  gap: 10px;
}
.mobile-cta-btn {
  flex: 1;
  min-height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
  border: 1px solid transparent;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta-btn .icon-svg { width: 16px; height: 16px; }
.mobile-cta-btn.is-wa {
  background: linear-gradient(135deg, #25d366, #1ab050);
  color: #04150b;
}
.mobile-cta-btn.is-form {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}
.mobile-cta-btn .cta-label { white-space: nowrap; }

.uka-wizard-toast {
  position: fixed;
  left: 50%;
  bottom: 104px;
  transform: translate(-50%, 14px);
  z-index: 130;
  background: linear-gradient(135deg, rgba(18, 30, 48, 0.96), rgba(6, 16, 30, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.uka-wizard-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
.reveal { opacity:0; transform:translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.up { opacity:1; transform:none; }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }

@media(min-width:700px){
  .process-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step-content { grid-template-columns: 1fr; }
  .step-media { width: 100%; }
  .step-media img { min-height: 150px; }
}
@media(max-width:1024px){
  :root {
    --section-pad-y: 82px;
  }
  .hero {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 48px;
  }
  .hero-stats { gap: 28px; }
  .benefits-layout,
  .contact-layout { gap: 36px; }
  .benefits-lead {
    position: static;
    top: auto;
  }
  .price-pad { padding: 28px 24px; }
}
@media(max-width:860px){
  .section { padding-left: 18px; padding-right: 18px; }
  .hero-actions .btn-green,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; max-width: 420px; margin: 0 auto; }
  .result-pill {
    width: min(100%, 560px);
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy,
  .footer-copy > div { text-align: left; justify-content: flex-start; }
  .social-proof-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}
@media(max-width:800px){ .contact-layout { grid-template-columns:1fr; gap:40px; } }
@media(max-width:760px){ .benefits-layout { grid-template-columns:1fr; gap:24px; } }
@media(max-width:700px){ .price-grid { grid-template-columns:1fr; } }
@media(max-width:640px){
  :root {
    --header-height: 62px;
    --section-pad-y: 68px;
  }
  .site-header,
  header {
    padding: 0 14px;
  }
  .logo-name { font-size: 19px; }
  .logo-badge { width: 32px; height: 32px; font-size: 16px; }
  .site-brand-logo { max-height: 34px; }
  .site-nav,
  nav {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .site-nav a,
  nav a { display:none; }
  .hamburger { display:flex; }
  .hero {
    padding: calc(var(--header-height) + 12px) 16px 40px;
  }
  .hero-title {
    font-size: clamp(40px, 13vw, 60px);
    letter-spacing: 1px;
    gap: 6px;
    margin-bottom: 14px;
  }
  .hero-title-lead {
    font-size: clamp(24px, 7.2vw, 34px);
    margin: 0;
    line-height: 1;
  }
  .hero-title-main {
    gap: 7px;
    flex-wrap: nowrap;
    justify-content: center;
    line-height: .95;
  }
  .hero-sub { font-size: 15px; line-height: 1.65; margin-bottom: 26px; }
  .hero-tag { font-size: 10px; letter-spacing: 1px; padding: 6px 14px; margin-bottom: 12px; }
  .hero-stats {
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
    justify-content: space-between;
  }
  .stat-item { width: calc(50% - 8px); }
  .stat-num { font-size:32px; }
  .stat-label { font-size: 10px; }
  .section-h { font-size: clamp(30px, 12vw, 46px); line-height: 1.02; }
  .section-p { font-size: 15px; line-height: 1.7; }
  .benefits-grid,
  .extra-content-grid,
  .form-grid { grid-template-columns:1fr; }
  .benefits-lead {
    padding: 18px 16px;
  }
  .benefit-card {
    min-height: 0;
  }
  .process-step { padding: 14px; }
  .step-content { grid-template-columns: 1fr 104px; }
  .step-media { width: 104px; }
  .price-pad { padding: 24px 18px; }
  .price-main { font-size: 58px; }
  .price-main.business { font-size: 42px; }
  .price-unit { font-size: 18px; }
  .contact-channel { padding: 14px; gap: 12px; }
  .quick-step.is-active { grid-template-columns: 1fr; }
  .quick-finish-actions { flex-direction: column; }
  .cc-val { font-size: 14px; word-break: break-word; }
  .form-wrap { padding: 24px 18px; }
  .form-title { font-size: 24px; }
  .toggle-row { flex-direction: column; }
  .social-proof-grid,
  .trust-strip { grid-template-columns: 1fr; }
  .social-proof-section {
    padding-bottom: 28px;
  }
  .social-proof-section::after {
    width: calc(100% - 34px);
  }
  .hero-trust-section {
    padding-top: 26px;
    padding-bottom: 34px;
  }
  .hero-trust-section::after {
    height: 64px;
  }
  .final-conversion-section {
    padding-top: 14px;
    padding-bottom: 56px;
  }
  .final-conversion-card {
    padding: 20px 16px;
  }
  .final-conversion-card h2 {
    font-size: clamp(30px, 11vw, 42px);
  }
  .final-conversion-card p {
    font-size: 14px;
    line-height: 1.66;
  }
  .final-conversion-actions {
    flex-direction: column;
  }
  .final-conversion-actions .btn-green,
  .final-conversion-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .lead-summary-list { grid-template-columns: 1fr; }
  body { cursor:auto; }
  #cursor, #cursor-ring { display:none; }
  .site-nav.mobile-open,
  nav.mobile-open {
    display:flex !important;
    flex-direction:column;
    position:fixed;
    top:calc(var(--header-height) + 10px);
    right:14px;
    left:14px;
    background: linear-gradient(135deg, rgba(9,22,40,0.98), rgba(7,16,30,0.95));
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    padding:16px;
    border:1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    max-height: calc(100dvh - (var(--header-height) + 26px));
    overflow-y: auto;
  }
  .site-nav.mobile-open::before,
  nav.mobile-open::before { display: none; }
  .site-nav .nav-link,
  nav .nav-link {
    width:100%;
    text-align:left;
    padding:12px 14px;
    border-radius: 12px;
  }
  .site-nav.mobile-open a,
  nav.mobile-open a { display:block !important; }
  .site-nav.mobile-open .nav-cta,
  nav.mobile-open .nav-cta {
    text-align:center;
    margin-top: 6px;
    border-radius: 12px;
  }
  .orb-1 { width: 360px; height: 360px; right: -120px; top: -90px; }
  .orb-2 { width: 280px; height: 280px; left: -100px; bottom: -80px; }
  .orb-3 { width: 180px; height: 180px; top: 48%; left: 38%; }
  .scroll-hint { display: none; }
  .wa-btn {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 86px;
    font-size: 22px;
  }
  .uka-wizard-toast { bottom: 150px; }
  .logo-wrap.logo-mobile-only .logo-name { display: none !important; }
  .logo-wrap.logo-mobile-text .logo-name { display: inline !important; }
}
@media(max-width:540px){ .form-grid, .benefits-grid, .extra-content-grid { grid-template-columns:1fr; }
  .section { padding-left: 14px; padding-right: 14px; }
  .hero { padding-left: 14px; padding-right: 14px; }
  .hero-title-main {
    display: flex;
    flex-direction: row;
    gap: 6px;
    line-height: .95;
  }
  .hero-actions { max-width: 100%; }
  .btn-green, .btn-ghost { width: 100%; padding: 13px 18px; }
  .result-pill { padding: 14px 16px; font-size: 13px; }
  .result-pill .arrow { display:none; }
  .step-content { grid-template-columns: 1fr; }
  .step-desc { max-width: none; }
  .step-media { width: 100%; max-width: none; }
  .price-list li { align-items: flex-start; }
  footer { padding: 32px 14px 20px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

@media(max-width:400px) {
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 14px; }
  .stat-item { width: 100%; }
  .stat-num { font-size: 30px; }
  .section-h { font-size: 32px; }
  .extra-widget-title { font-size: 24px; }
  .form-title { font-size: 22px; }
}

@media(min-width:1024px) {
  .site-header:hover .logo-wrap {
    transform: translate3d(calc(var(--mx) * -0.35px), calc(var(--my) * -0.4px), 0);
  }
  .site-header:hover .site-nav,
  .site-header:hover nav {
    transform: translate3d(calc(var(--mx) * 0.25px), calc(var(--my) * 0.25px), 0);
  }
}

/* ── [13] Proof Card — Verified Badge ─────────────────────────────────────── */
.proof-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.proof-card-top .proof-stars { margin-bottom: 0; }
.proof-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,213,99,0.09);
  border: 1px solid rgba(0,213,99,0.28);
  border-radius: 999px;
  padding: 4px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-verified svg { width: 10px; height: 10px; }
.proof-date {
  display: block;
  font-size: 11px;
  color: var(--muted);
  opacity: .55;
  margin-top: 6px;
  text-align: right;
}

/* ── [15] Scroll Progress Bar ─────────────────────────────────────────────── */
#uka-scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, #47e89c 55%, var(--gold) 100%);
  background-size: 200% 100%;
  transition: width .12s linear;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0,213,99,0.55), 0 0 4px rgba(0,213,99,0.4);
  pointer-events: none;
}

/* ── [19] FAQ Accordion ───────────────────────────────────────────────────── */
.faq-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(245,166,35,0.09), transparent 45%),
    radial-gradient(circle at 10% 100%, rgba(0,213,99,0.09), transparent 45%),
    linear-gradient(180deg, rgba(9,20,34,0.68), rgba(6,15,26,0.92));
}
.faq-list {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  background: linear-gradient(150deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  overflow: hidden;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.faq-item.is-open {
  border-color: rgba(0,213,99,0.32);
  box-shadow: 0 12px 32px rgba(0,0,0,0.24), 0 0 0 1px rgba(0,213,99,0.08) inset;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.faq-trigger:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.faq-icon svg { width: 12px; height: 12px; transition: transform .28s var(--ease); }
.faq-item.is-open .faq-icon {
  border-color: rgba(0,213,99,0.45);
  background: rgba(0,213,99,0.12);
}
.faq-item.is-open .faq-icon svg { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.faq-body-inner {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}
.faq-body-inner a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

@media(max-width:640px) {
  .faq-trigger { font-size: 14px; padding: 16px 16px; }
  .faq-body-inner { padding: 0 16px 16px; font-size: 14px; }
}


