/* ═══════════════════════════════════════════════════════════
   hilaldc Site Theme — datawise.fonwise.com inspired
   ═══════════════════════════════════════════════════════════ */
:root {
  --primary: #6c2bd9;
  --primary-light: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --dark: #050d1f;
  --dark-2: #0a1628;
  --dark-3: #0f1f3d;
  --text: #1e293b;
  --muted: #64748b;
  --light: #94a3b8;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --font: 'Plus Jakarta Sans', sans-serif;
  --container: 1280px;
  --transition: all .22s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sec { padding: 96px 0; }
.sec-sm { padding: 64px 0; }

/* ── UTILS ─────────────────────────────────────────────────── */
.grad-text { background: linear-gradient(135deg, #a855f7, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-text-2 { background: linear-gradient(135deg, #6c2bd9, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(108,43,217,.1); color: #7c3aed; font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(108,43,217,.2); margin-bottom: 14px; }
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.sec-head h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; color: var(--text); }
.sec-head p { font-size: 17px; color: var(--muted); line-height: 1.75; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.site-header.transparent { background: transparent; }
.site-header.solid { background: rgba(5,13,31,.95); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.navbar { display: flex; align-items: center; height: 70px; gap: 0; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 32px; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo-name { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -.3px; }
.nav-logo-name span { color: #a855f7; }
.nav-links { display: flex; list-style: none; gap: 2px; flex: 1; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); border-radius: 8px; transition: var(--transition); white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: #fff; background: rgba(255,255,255,.07); }
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 210px; background: #0a1628; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,.4); padding: 6px; opacity: 0; visibility: hidden; transition: all .2s; z-index: 100; }
.drop a { display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 8px; font-size: 13.5px; color: rgba(255,255,255,.65); }
.drop a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-btns { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.btn-ghost { padding: 8px 18px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); transition: var(--transition); }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-primary-nav { padding: 9px 22px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700; box-shadow: 0 4px 16px rgba(108,43,217,.4); transition: var(--transition); }
.btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(108,43,217,.5); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero { background: var(--dark); position: relative; overflow: hidden; padding: 130px 0 100px; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
/* Animated mesh like datawise */
.hero-bg::before { content: ''; position: absolute; width: 800px; height: 800px; top: -200px; left: -100px; background: radial-gradient(circle, rgba(108,43,217,.35) 0%, transparent 65%); animation: bgPulse 8s ease-in-out infinite; }
.hero-bg::after { content: ''; position: absolute; width: 600px; height: 600px; bottom: -100px; right: -50px; background: radial-gradient(circle, rgba(6,182,212,.25) 0%, transparent 60%); animation: bgPulse 10s ease-in-out infinite reverse; }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; }
@keyframes bgPulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.2);opacity:.9} }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(168,85,247,.15); border: 1px solid rgba(168,85,247,.35); color: #c4b5fd; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 22px; }
.hero-dot { width: 7px; height: 7px; background: #34d399; border-radius: 50%; box-shadow: 0 0 0 3px rgba(52,211,153,.25); animation: dot-pulse 2s infinite; }
@keyframes dot-pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.hero h1 { font-size: clamp(38px, 4.5vw, 64px); font-weight: 900; line-height: 1.08; color: #f8fafc; margin-bottom: 22px; letter-spacing: -.5px; }
.hero-desc { font-size: 17.5px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 40px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 15px 34px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: var(--transition); }
.btn-hero-main { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 8px 32px rgba(108,43,217,.45); }
.btn-hero-main:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(108,43,217,.6); }
.btn-hero-out { background: rgba(255,255,255,.07); color: #e2e8f0; border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); }
.btn-hero-out:hover { background: rgba(255,255,255,.13); color: #fff; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-num { font-size: 26px; font-weight: 800; color: #f8fafc; }
.trust-lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 1px; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* Hero Mockup — datawise dark dashboard style */
.hero-visual { position: relative; }
.mock { background: linear-gradient(145deg, #0d1b35, #111827); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04); transform: perspective(1000px) rotateY(-3deg) rotateX(2deg); transition: transform .4s; }
.mock:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.mock-bar { background: #0a1224; border-bottom: 1px solid rgba(255,255,255,.06); padding: 11px 16px; display: flex; align-items: center; gap: 10px; }
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #22c55e; }
.mock-url { flex: 1; text-align: center; background: rgba(255,255,255,.04); border-radius: 6px; padding: 4px 10px; font-size: 11px; color: rgba(255,255,255,.3); font-family: monospace; }
.mock-live { display: flex; align-items: center; gap: 4px; font-size: 10.5px; color: #34d399; }
.live-dot { width: 5px; height: 5px; background: #34d399; border-radius: 50%; animation: dot-pulse 2s infinite; }
.mock-body { padding: 16px; }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.ms { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 9px; padding: 12px; }
.ms-l { font-size: 9px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px; }
.ms-v { font-size: 22px; font-weight: 800; color: #f1f5f9; line-height: 1; }
.ms-d { font-size: 9.5px; color: #34d399; margin-top: 4px; }
.mock-chart-wrap { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 9px; padding: 12px; margin-bottom: 12px; }
.mock-chart-label { font-size: 9.5px; color: rgba(255,255,255,.3); margin-bottom: 10px; }
.mock-bars { display: flex; align-items: flex-end; gap: 5px; height: 48px; }
.mock-bar-item { flex: 1; border-radius: 3px 3px 0 0; }
.mock-bar-item:nth-child(odd)  { background: linear-gradient(to top, var(--primary), #a855f7); }
.mock-bar-item:nth-child(even) { background: linear-gradient(to top, var(--accent-dark), var(--accent)); }
.mock-rows { display: flex; flex-direction: column; gap: 0; }
.mock-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 10.5px; color: rgba(255,255,255,.55); }
.mock-row:last-child { border-bottom: none; }
.mock-dot-green { width: 6px; height: 6px; border-radius: 50%; background: #34d399; flex-shrink: 0; }
.mock-row-name { flex: 1; }
.mock-row-status { color: #34d399; font-weight: 600; }

/* Float cards */
.fc { position: absolute; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.95); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.9); border-radius: 13px; padding: 11px 17px; box-shadow: 0 12px 36px rgba(0,0,0,.22); animation: float 5s ease-in-out infinite; }
.fc-1 { left: -44px; bottom: 22%; animation-delay: 0s; }
.fc-2 { right: -40px; top: 12%; animation-delay: 1.5s; }
.fc-3 { right: -32px; bottom: 8%; animation-delay: 3s; }
.fc-icon { font-size: 22px; }
.fc-name { font-size: 12px; font-weight: 700; color: #0f172a; }
.fc-sub { font-size: 11px; color: #64748b; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ── TRUSTED ───────────────────────────────────────────────── */
.trusted { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); padding: 30px 0; }
.trusted-wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trusted-title { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.25); text-transform: uppercase; letter-spacing: .08em; }
.trusted-item { font-size: 15px; font-weight: 700; color: rgba(255,255,255,.3); transition: color .2s; }
.trusted-item:hover { color: rgba(255,255,255,.6); }

/* ── FEATURES ──────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 30px; transition: var(--transition); position: relative; overflow: hidden; }
.feat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.feat-card:hover { border-color: var(--primary-light); box-shadow: 0 8px 32px rgba(108,43,217,.12); transform: translateY(-5px); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon { width: 54px; height: 54px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.fi-purple { background: #f5f3ff; }
.fi-blue   { background: #eff6ff; }
.fi-cyan   { background: #ecfeff; }
.fi-green  { background: #f0fdf4; }
.fi-amber  { background: #fffbeb; }
.fi-rose   { background: #fff1f2; }
.feat-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.feat-card p  { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ── PRICING ───────────────────────────────────────────────── */
.price-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 52px; }
.ptoggle-lbl { font-size: 14.5px; font-weight: 600; color: var(--muted); cursor: pointer; transition: color .2s; }
.ptoggle-lbl.on { color: var(--primary); }
.save-tag { background: #dcfce7; color: #16a34a; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
/* Switch */
.sw { position: relative; width: 44px; height: 24px; }
.sw input { position: absolute; opacity: 0; }
.sw-track { position: absolute; inset: 0; background: #d1d5db; border-radius: 12px; cursor: pointer; transition: background .2s; }
.sw input:checked + .sw-track { background: var(--primary); }
.sw-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s; }
.sw input:checked + .sw-track .sw-thumb { transform: translateX(20px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.price-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px 30px; position: relative; transition: var(--transition); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: linear-gradient(150deg, #3b0764, #6c2bd9); border-color: transparent; color: #fff; }
.price-card.featured:hover { transform: translateY(-6px); }
.pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #f59e0b, #ef4444); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 18px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.p-name { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.p-desc { font-size: 14px; opacity: .65; margin-bottom: 24px; line-height: 1.5; }
.p-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 28px; }
.p-cur { font-size: 22px; font-weight: 700; }
.p-num { font-size: 58px; font-weight: 900; line-height: 1; }
.p-per { font-size: 14px; opacity: .55; margin-left: 4px; }
.p-feats { list-style: none; margin-bottom: 28px; }
.p-feats li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,.06); }
.price-card.featured .p-feats li { border-color: rgba(255,255,255,.1); }
.p-feats li:last-child { border: none; }
.check { width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.check-default { background: rgba(108,43,217,.12); color: var(--primary); }
.check-white   { background: rgba(255,255,255,.15); color: #fff; }
.p-btn { width: 100%; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; font-family: var(--font); transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 6px; }
.pb-gradient { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 6px 20px rgba(108,43,217,.35); }
.pb-gradient:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(108,43,217,.5); }
.pb-white { background: #fff; color: var(--primary-dark); }
.pb-white:hover { background: #f5f3ff; }

/* Dönem seçici */
.period-selector { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.period-btn { padding: 4px 12px; border: 1.5px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer; transition: var(--transition); background: transparent; font-family: var(--font); }
.period-btn:hover { border-color: var(--primary); color: var(--primary); }
.period-btn.active { border-color: var(--primary); background: rgba(108,43,217,.1); color: var(--primary); }
.price-card.featured .period-btn { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.7); }
.price-card.featured .period-btn.active { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }

/* ── STATS BAND ────────────────────────────────────────────── */
.stats-band { background: linear-gradient(135deg, var(--dark), var(--dark-3)); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.stat-box { text-align: center; }
.sb-icon { font-size: 30px; margin-bottom: 10px; }
.sb-num { font-size: 32px; font-weight: 900; color: #f8fafc; line-height: 1; margin-bottom: 6px; }
.sb-lbl { font-size: 12.5px; color: rgba(255,255,255,.4); }

/* ── SERVICES ──────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.srv-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); display: block; }
.srv-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.srv-card:hover .srv-arr { gap: 12px; color: var(--primary); }
.srv-icon { font-size: 36px; margin-bottom: 14px; }
.srv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 9px; }
.srv-card p  { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; line-height: 1.65; }
.srv-arr { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--muted); transition: var(--transition); }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testi-stars { color: #f59e0b; font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 15.5px; line-height: 1.75; color: var(--muted); margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-size: 17px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-size: 14.5px; font-weight: 700; }
.testi-role { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--primary-light); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: none; border: none; font-family: var(--font); font-size: 15.5px; font-weight: 600; color: var(--text); text-align: left; cursor: pointer; transition: var(--transition); }
.faq-q:hover { background: var(--bg-soft); }
.faq-q.open { background: rgba(108,43,217,.06); color: var(--primary); }
.faq-chev { flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-q.open .faq-chev { transform: rotate(180deg); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; font-size: 15px; color: var(--muted); line-height: 1.75; padding: 0 22px; transition: max-height .35s ease, padding .35s; }
.faq-a.open { max-height: 400px; padding: 0 22px 20px; }

/* ── CTA ───────────────────────────────────────────────────── */
.cta-sec { padding: 80px 0; }
.cta-box { background: linear-gradient(135deg, #3b0764, var(--primary), var(--accent-dark)); border-radius: 24px; padding: 88px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 60%); top: -200px; left: 50%; transform: translateX(-50%); }
.cta-box h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; line-height: 1.15; }
.cta-box p  { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 38px; position: relative; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-cta-w { display: inline-flex; align-items: center; gap: 8px; padding: 15px 36px; background: #fff; color: #3b0764; border-radius: 10px; font-size: 15px; font-weight: 700; transition: var(--transition); }
.btn-cta-w:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.25); }
.btn-cta-o { display: inline-flex; align-items: center; gap: 8px; padding: 15px 36px; background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); border-radius: 10px; font-size: 15px; font-weight: 600; transition: var(--transition); }
.btn-cta-o:hover { background: rgba(255,255,255,.18); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 340px 1fr; gap: 72px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.footer-brand-logo img { height: 30px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.soc-btn { width: 37px; height: 37px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.soc-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.f-badges { display: flex; gap: 8px; }
.f-badge { padding: 4px 12px; border-radius: 20px; font-size: 10.5px; font-weight: 700; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media(max-width:1100px){
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid, .pricing-grid, .services-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px){
  .nav-links, .nav-btns { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark-2); padding: 16px; z-index: 200; }
  .nav-toggle { display: flex; }
  .features-grid, .pricing-grid, .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .sec { padding: 64px 0; }
  .hero { padding: 80px 0 60px; }
  .cta-box { padding: 52px 24px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .price-card.featured { transform: none; }
}
