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

:root {
  --blue:       #0369a1;
  --blue-mid:   #0284c7;
  --blue-light: #e0f2fe;
  --orange:     #ea580c;
  --orange-lt:  #fff7ed;
  --slate:      #0f172a;
  --slate-2:    #1e293b;
  --muted:      #64748b;
  --muted-lt:   #94a3b8;
  --border:     #e2e8f0;
  --bg:         #f8fafc;
  --white:      #ffffff;
  --section-bg: #f1f5f9;
  --radius:     14px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--slate); overflow-x: hidden; }

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ─────────────── NAV ─────────────── */
.topbar {
  background: #0c2340; height: 36px;
  display: flex; align-items: center; justify-content: flex-end;
}
.topbar-inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 1.5rem;
}
.topbar a { font-size: .75rem; color: #94a3b8; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar span { color: #334155; }

nav {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0,0,0,.05);
}
.topbar + nav { position: sticky; top: 0; }
.nav-inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: flex; align-items: center;
  padding: 0 3rem; height: 66px;
  gap: 0;
}
.nav-logo { margin-right: 2.5rem; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-menu {
  display: flex; gap: 0; flex: 1;
  list-style: none; padding: 0; margin: 0;
}
.nav-item { position: relative; list-style: none; }
.nav-item > a {
  display: flex; align-items: center; gap: .35rem;
  padding: 0 .9rem; height: 66px;
  font-size: .875rem; font-weight: 600; color: #334155;
  transition: color .18s;
  white-space: nowrap;
}
.nav-item:hover > a { color: var(--blue); }
.nav-chevron {
  font-size: .55rem; line-height: 1; opacity: .45;
  transition: transform .2s; display: inline-block;
  margin-left: .1rem;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: .7; }

/* ── MEGA MENU ── */
.mega {
  position: fixed; left: 0; right: 0;
  top: var(--mega-top, 102px); /* updated by JS on scroll */
  background: var(--white);
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s, transform .22s;
  z-index: 190;
}
.nav-item:hover .mega { opacity: 1; pointer-events: all; transform: translateY(0); }

.mega-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 2.2rem 3rem;
  display: grid; gap: 0;
}
/* Layout variants */
.mega-inner.cols4f { grid-template-columns: 1fr 1fr 1fr 260px; }
.mega-inner.cols3  { grid-template-columns: 1fr 1fr 1fr; }
.mega-inner.cols2f { grid-template-columns: 1fr 260px; }

.mega-col { padding: 0 2rem 0 0; }
.mega-col + .mega-col { border-left: 1px solid var(--border); padding: 0 2rem; }

.mega-col-title {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted-lt);
  margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.mega-link {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .7rem .8rem; border-radius: 10px;
  text-decoration: none; margin-bottom: .2rem;
  transition: background .15s;
}
.mega-link:hover { background: #f0f9ff; }
.mega-link:hover .ml-title { color: var(--blue); }

.ml-icon {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: 1px;
}
.ml-body { flex: 1; }
.ml-title { font-size: .88rem; font-weight: 700; color: var(--slate); display: block; margin-bottom: .15rem; transition: color .15s; }
.ml-desc  { font-size: .77rem; color: var(--muted); line-height: 1.45; }

/* featured card inside mega */
.mega-featured {
  background: linear-gradient(145deg, #0369a1 0%, #0284c7 100%);
  border-radius: 14px; padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: space-between;
  margin-left: 1.5rem;
}
.mf-badge {
  display: inline-block; background: rgba(255,255,255,.2);
  color: #fff; font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: .25rem .65rem; border-radius: 100px; margin-bottom: .8rem;
}
.mega-featured h4 { font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: .5rem; }
.mega-featured p  { font-size: .78rem; color: rgba(255,255,255,.75); line-height: 1.5; flex: 1; margin-bottom: 1.2rem; }
.mf-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; color: var(--blue);
  padding: .5rem 1rem; border-radius: 8px;
  font-size: .82rem; font-weight: 800;
  transition: transform .15s, box-shadow .15s; width: fit-content;
}
.mf-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.2); }

/* simple dropdown (Domain, Şirket, Destek) */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .4rem;
  min-width: 220px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem .85rem; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: var(--slate-2);
  transition: background .15s;
}
.dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.dd-icon { font-size: 1rem; width: 26px; text-align: center; }

.mega-feat-row {
  display: flex; align-items: center; gap: .7rem;
}
.mfr-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; font-size: .85rem; flex-shrink: 0;
}
.mega-feat-row strong    { display: block; font-size: .82rem; font-weight: 700; color: var(--slate); }
.mega-feat-row div span  { display: block; font-size: .74rem; color: var(--muted); }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.btn-login {
  padding: .45rem 1.1rem; border-radius: 8px;
  font-size: .85rem; font-weight: 600; color: var(--slate-2);
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-login:hover { border-color: var(--blue); color: var(--blue); }
.btn-nav-cta {
  padding: .5rem 1.2rem; border-radius: 8px;
  font-size: .85rem; font-weight: 700;
  background: var(--blue); color: var(--white);
  transition: background .2s, transform .2s;
}
.btn-nav-cta:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* ─────────────── HERO ─────────────── */
.hero {
  background: linear-gradient(150deg, #f0f9ff 0%, #e0f2fe 35%, #f8fafc 70%, #fff7ed 100%);
  padding: 90px 0 80px;
  overflow: hidden; position: relative;
}
/* decorative blobs */
.hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(3,105,161,.07), transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.06), transparent 70%);
  bottom: -80px; left: 5%; pointer-events: none;
}

.hero-inner {
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-left { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 100px; padding: .35rem 1rem;
  font-size: .78rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 1.6rem;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  color: var(--slate);
}
.hero h1 .accent { color: var(--blue); }
.hero h1 .orange { color: var(--orange); }

.hero-sub {
  margin-top: 1.2rem; font-size: 1.05rem;
  color: var(--muted); line-height: 1.75; max-width: 480px;
}

.hero-actions {
  margin-top: 2rem; display: flex; gap: .75rem; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem; border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 14px rgba(3,105,161,.28);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: #0258a8; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(3,105,161,.36); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem; border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  border: 2px solid var(--border); color: var(--slate-2);
  background: var(--white);
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* trust strip */
.trust-strip {
  display: flex; gap: 1.5rem; margin-top: 2.8rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--muted);
}
.trust-item .chk { color: #16a34a; font-size: 1rem; }

/* hero right — visual card stack */
.hero-right { position: relative; z-index: 1; }
.hero-visual {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hv-title { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.hv-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1rem; border-radius: 10px;
  border: 1px solid var(--border); margin-bottom: .6rem;
  background: var(--bg); transition: box-shadow .2s;
}
.hv-item:hover { box-shadow: var(--shadow); }
.hv-icon { font-size: 1.4rem; }
.hv-info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--slate); }
.hv-info span   { font-size: .78rem; color: var(--muted); }
.hv-price { margin-left: auto; font-size: .88rem; font-weight: 800; color: var(--blue); }

.hv-badge {
  position: absolute; top: -16px; right: 24px;
  background: var(--orange); color: var(--white);
  border-radius: 8px; padding: .4rem .9rem;
  font-size: .78rem; font-weight: 800;
  box-shadow: 0 4px 12px rgba(234,88,12,.3);
}

/* ─────────────── STATS BAR ─────────────── */
.stats-bar { background: var(--slate); padding: 2.5rem 0; }
.stats-bar-inner {
  max-width: 1440px; margin: 0 auto; width: 100%; padding: 0 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.stat-item strong {
  display: block; font-size: 2.4rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-item strong em { color: #38bdf8; font-style: normal; }
.stat-item span { font-size: .8rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-top: .3rem; display: block; }
.stat-divider { width: 1px; background: rgba(255,255,255,.1); display: block; align-self: stretch; }

/* ─────────────── SECTION UTILITIES ─────────────── */
.section { padding: 90px 0; }
.section-alt { background: var(--section-bg); }
.container { max-width: 1440px; margin: 0 auto; width: 100%; padding: 0 3rem; }

.section-head { margin-bottom: 3rem; }
.section-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--blue); margin-bottom: .6rem;
}
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800;
  letter-spacing: -1px; line-height: 1.15; color: var(--slate);
}
.section-sub { margin-top: .7rem; color: var(--muted); font-size: .97rem; max-width: 500px; line-height: 1.7; }

/* ─────────────── SERVICES ─────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.srv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.srv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #bae6fd; }

.srv-icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.bg-blue   { background: #e0f2fe; }
.bg-indigo { background: #e0e7ff; }
.bg-cyan   { background: #cffafe; }
.bg-orange { background: #ffedd5; }
.bg-green  { background: #dcfce7; }
.bg-pink   { background: #fce7f3; }

.srv-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: .4rem; }
.srv-card p  { font-size: .84rem; color: var(--muted); line-height: 1.65; }
.srv-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: 1rem; font-size: .82rem; font-weight: 700; color: var(--blue);
}
.srv-link:hover { gap: .6rem; }

/* ─────────────── WHY XNET (bento) ─────────────── */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 1.2rem; }
.b-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.b-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.b-wide  { grid-column: span 2; }
.b-tall  { grid-row: span 2; }

.b-num {
  font-size: 3.2rem; font-weight: 800; color: var(--blue);
  line-height: 1; margin-bottom: .4rem;
}
.b-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .4rem; }
.b-card p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.tag {
  background: var(--blue-light); color: var(--blue);
  border-radius: 6px; padding: .2rem .65rem;
  font-size: .74rem; font-weight: 700;
}
.tag.orange { background: var(--orange-lt); color: var(--orange); }

/* uptime visual */
.uptime-wrap { text-align: center; margin-top: 1.2rem; }
.uptime-wrap svg { overflow: visible; }
.uptime-bg   { fill: none; stroke: #e0f2fe; stroke-width: 10; }
.uptime-fill {
  fill: none; stroke: var(--blue); stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 339.29; stroke-dashoffset: 3.4;
  animation: fillRing 1.8s ease both;
}
@keyframes fillRing { from{stroke-dashoffset:339.29} to{stroke-dashoffset:3.4} }
.uptime-center { font-size: 1.6rem; font-weight: 800; fill: var(--slate); }
.uptime-label  { font-size: .55rem; fill: var(--muted); font-family: inherit; }

/* ─────────────── DOMAIN ─────────────── */
.domain-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 3rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.domain-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .4rem; }
.domain-box p  { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }

.domain-form {
  display: flex; max-width: 580px; margin: 0 auto;
  background: var(--bg); border: 2px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s;
}
.domain-form:focus-within { border-color: var(--blue); }
.domain-form input {
  flex: 1; border: none; background: transparent; outline: none;
  padding: 1rem 1.2rem; font-size: 1rem; color: var(--slate);
  font-family: inherit;
}
.domain-form input::placeholder { color: var(--muted-lt); }
.domain-form select {
  border: none; border-left: 2px solid var(--border);
  background: var(--white); color: var(--muted);
  padding: 0 .9rem; font-size: .9rem; outline: none; cursor: pointer;
  font-family: inherit;
}
.domain-form button {
  border: none; background: var(--blue); color: var(--white);
  padding: 0 1.6rem; font-size: .92rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background .2s;
}
.domain-form button:hover { background: #0258a8; }

.tld-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: .75rem; margin-top: 1.8rem;
}
.tld-pill {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .82rem; color: var(--slate-2);
  transition: border-color .2s, background .2s;
}
.tld-pill:hover { background: var(--blue-light); border-color: #7dd3fc; }
.tld-pill strong { color: var(--blue); }

/* ─────────────── PRICING ─────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; }

.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.price-card.popular {
  border-color: var(--blue); border-width: 2px;
  box-shadow: 0 8px 32px rgba(3,105,161,.14);
  background: linear-gradient(180deg, #f0f9ff 0%, var(--white) 100%);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.plan-badge {
  display: inline-block; border-radius: 100px;
  padding: .2rem .8rem; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: .9rem;
}
.pb-blue   { background: #dbeafe; color: #1d4ed8; }
.pb-sky    { background: var(--blue-light); color: var(--blue); }
.pb-orange { background: var(--orange-lt); color: var(--orange); }

.plan-name  { font-size: 1.1rem; font-weight: 800; margin-bottom: .3rem; }
.plan-desc  { font-size: .83rem; color: var(--muted); margin-bottom: 1.4rem; }
.plan-price { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--slate); }
.plan-price sup  { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.plan-price .per { font-size: .9rem; font-weight: 500; color: var(--muted); }

.plan-feats { list-style: none; margin: 1.5rem 0 1.8rem; border-top: 1px solid var(--border); padding-top: 1.3rem; }
.plan-feats li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .86rem; color: var(--slate-2);
  padding: .38rem 0; border-bottom: 1px solid var(--border);
}
.plan-feats li .chk { color: #16a34a; font-weight: 700; flex-shrink: 0; }

.btn-plan {
  display: block; width: 100%; text-align: center;
  padding: .82rem; border-radius: 10px;
  font-size: .92rem; font-weight: 700; cursor: pointer;
  border: 2px solid var(--border); color: var(--slate-2);
  background: var(--white); transition: all .2s;
}
.btn-plan:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-plan.cta {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(3,105,161,.25);
}
.btn-plan.cta:hover { background: #0258a8; box-shadow: 0 8px 20px rgba(3,105,161,.35); }

/* ─────────────── TESTIMONIALS ─────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: #f59e0b; font-size: .95rem; margin-bottom: .9rem; }
.testi-card > p { font-size: .87rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.4rem; }
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.t-author strong { display: block; font-size: .87rem; font-weight: 800; }
.t-author span   { font-size: .75rem; color: var(--muted-lt); }

/* ─────────────── CTA BANNER ─────────────── */
.cta-section { background: var(--slate); padding: 90px 0; }
.cta-inner {
  max-width: 1440px; margin: 0 auto; width: 100%; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -1px; color: var(--white);
}
.cta-section h2 span { color: #38bdf8; }
.cta-section p { color: #94a3b8; font-size: .97rem; margin-top: .6rem; line-height: 1.7; }
.cta-actions { display: flex; gap: .75rem; flex-direction: column; }
.btn-white {
  padding: .85rem 2rem; border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  background: var(--white); color: var(--slate);
  text-align: center; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.btn-border-white {
  padding: .85rem 2rem; border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  border: 2px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85);
  text-align: center; white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.btn-border-white:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* ─────────────── FOOTER ─────────────── */
footer { background: #0f172a; padding: 70px 0 30px; }
.footer-inner { max-width: 1440px; margin: 0 auto; width: 100%; padding: 0 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col-sub { margin-top: 1.5rem; }
.footer-col-sub:first-child { margin-top: 0; }
.footer-col-sub h5 { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #475569; margin-bottom: .65rem; }
.footer-brand img { height: 32px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p   { font-size: .84rem; color: #64748b; line-height: 1.75; }

.footer-col h4 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a  { font-size: .85rem; color: #64748b; transition: color .2s; }
.footer-col a:hover { color: #38bdf8; }

.footer-bottom {
  margin-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: #475569; }
.pay-row { display: flex; gap: .5rem; }
.pay-tag {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px; padding: .25rem .6rem;
  font-size: .7rem; color: #64748b; font-weight: 600;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr 1fr; }
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-right   { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-inner    { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .b-wide,.b-tall { grid-column: span 1; grid-row: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .nav-menu     { display: none; }
  .btn-login    { display: none; }
}
