/* =============================================
   SNELBIT NETWORKS — style.css v4
   Font: Plus Jakarta Sans
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0330ef;
  --purple: #8f78fc;
  --accent: #07060d;
  --text: #605e6c;
  --grey: #aaaaaa;
  --border: #e9e4f0;
  --grey-bg: #f9f8ff;
  --grad: linear-gradient(to left, #8f78fc 0%, #0330ef 100%);
  --grad-r: linear-gradient(to right, #8f78fc 0%, #0330ef 100%);
  --nav-h: 72px;
  --topbar-h: 36px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; line-height: 1.75;
  color: var(--text); overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all .3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- TOPBAR (fix #4: always fully visible, not overlapped) ---- */
.topbar {
  background: var(--grad);
  padding: 0 70px;
  height: var(--topbar-h);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1001;
}
.topbar a { color:#fff; font-size:13px; font-weight:500; opacity:.9; display:flex; align-items:center; gap:7px; }
.topbar a:hover { opacity:1; }
.topbar-left, .topbar-right { display:flex; align-items:center; gap:28px; }

/* ---- MAIN NAV (fix #2 logo, #6 no Get Started, #14 more spacing, #7 click dropdown) ---- */
.main-nav {
  background: #fff; padding: 0 70px; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.06); border-bottom: 1px solid var(--border);
}
.nav-brand { display:flex; align-items:center; }
.nav-brand img { height:60px; width:auto; display:block; max-width:160px; }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links > a {
  font-size:15px; font-weight:600; color:var(--accent);
  padding:8px 20px; border-radius:8px; transition:.2s;
}
.nav-links > a:hover, .nav-links > a.active { color:var(--primary); }
.nav-drop { position:relative; }
.nav-drop-trigger {
  font-size:15px; font-weight:600; color:var(--accent);
  padding:8px 20px; border-radius:8px; cursor:pointer;
  display:flex; align-items:center; gap:6px; transition:.2s;
  text-decoration:none; user-select:none;
}
.nav-drop-trigger:hover, .nav-drop-trigger.active { color:var(--primary); }
.nav-drop-trigger .fa-chevron-down { font-size:10px; transition:transform .2s; }
/* fix #7: display controlled entirely by JS, not CSS hover */
.nav-drop-menu {
  position:absolute; top:calc(100% + 12px); left:50%; transform:translateX(-50%);
  background:var(--grey-bg); border:1px solid var(--border); border-radius:16px;
  padding:18px; min-width:560px; display:none;
  box-shadow:0 24px 64px rgba(0,0,0,.14); z-index:1000; gap:16px;
}
.drop-col { flex:1; }
.drop-col-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.2px; color:var(--grey); padding:4px 10px 10px; display:block; }
.drop-item { display:flex; align-items:flex-start; gap:12px; padding:12px; border-radius:12px; cursor:pointer; transition:.2s; text-decoration:none; }
.drop-item:hover { background:rgba(3,48,239,.05); }
.drop-icon { width:36px; height:36px; background:rgba(3,48,239,.08); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:15px; color:var(--primary); flex-shrink:0; }
.drop-text strong { display:block; font-size:13px; font-weight:700; color:var(--accent); margin-bottom:2px; }
.drop-text span { font-size:11px; color:var(--text); }
/* fix #6: no btn-nav-cta (Get Started removed) */
.nav-actions { display:flex; align-items:center; gap:10px; }
.btn-client-login {
  font-size:14px; font-weight:600; color:var(--accent);
  padding:9px 20px; border:1.5px solid var(--border); border-radius:10px;
  transition:.2s; display:flex; align-items:center; gap:7px;
}
.btn-client-login:hover { border-color:var(--primary); color:var(--primary); }
.hamburger {
  display:none; background:none; border:1.5px solid var(--border);
  border-radius:8px; padding:8px 12px; cursor:pointer; font-size:16px; color:var(--accent);
}
.mobile-nav {
  display:none; position:fixed; inset:0; background:#fff; z-index:9999;
  padding:72px 24px 40px; overflow-y:auto; flex-direction:column; gap:4px;
}
.mobile-nav.open { display:flex; }
.mobile-close { position:absolute; top:18px; right:18px; background:var(--grey-bg); border:1px solid var(--border); border-radius:8px; padding:8px 12px; cursor:pointer; font-size:18px; color:var(--accent); }
.mobile-nav a { font-size:18px; font-weight:700; color:var(--accent); padding:14px 0; border-bottom:1px solid var(--border); display:block; }
.mobile-nav a:hover { color:var(--primary); }
.mobile-nav .mobile-cta { background:var(--grad); color:#fff!important; border-radius:10px; padding:14px 20px!important; text-align:center; margin-top:12px; border:none!important; }

/* ---- HERO SLIDER (fix #4: slider below topbar+nav, no overlap) ---- */
.hero-slider-outer { position:relative; }
.hero-slider { position:relative; overflow:hidden; height:600px; }
.hs-slide {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .9s ease;
  background-size:cover; background-position:center; background-repeat:no-repeat;
}
.hs-slide.active { opacity:1; z-index:2; }
.hs-overlay { position:absolute; inset:0; background:rgba(5,7,32,.58); z-index:0; }
.hs-content { position:relative; z-index:1; text-align:center; padding:0 48px; max-width:820px; }
.hs-tag { display:inline-block; font-size:13px; font-weight:600; color:rgba(255,255,255,.82); background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.22); padding:6px 18px; border-radius:100px; margin-bottom:20px; }
.hs-content h1 { font-size:clamp(26px,4vw,54px); font-weight:800; color:#fff; line-height:1.1; letter-spacing:-1.5px; margin-bottom:18px; font-family:'Plus Jakarta Sans',sans-serif; }
.hs-content p { font-size:17px; color:rgba(255,255,255,.82); margin-bottom:30px; line-height:1.65; }
.hs-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.hs-meta { font-size:13px; color:rgba(255,255,255,.6); margin-top:18px; }
.hs-meta strong { color:rgba(255,255,255,.9); }
.hs-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:44px; height:44px; background:rgba(255,255,255,.15); border:1.5px solid rgba(255,255,255,.28); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; color:#fff; font-size:14px; transition:.25s; backdrop-filter:blur(4px); }
.hs-arrow:hover { background:rgba(255,255,255,.3); }
.hs-prev { left:28px; } .hs-next { right:28px; }
.hs-dots { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); z-index:10; display:flex; gap:8px; }
.hs-dot { width:30px; height:5px; background:rgba(255,255,255,.38); border-radius:3px; cursor:pointer; transition:.3s; display:inline-block; }
.hs-dot.active { background:#fff; width:44px; }
.hs-progress { position:absolute; bottom:0; left:0; height:3px; background:var(--purple); z-index:10; width:0; }
.hs-progress.run { animation:hsRun var(--hs-dur,5s) linear forwards; }
@keyframes hsRun { from{width:0} to{width:100%} }

/* ---- SUB-PAGE BANNER (fix #4: ::before overlay) ---- */
.sub-banner {
  position:relative; overflow:hidden; text-align:center;
  background-color:#050720;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  /* SVG banners render crisply at all sizes */
}
.sub-banner::before { content:''; position:absolute; inset:0; background:rgba(5,7,32,.44); z-index:1; }
.sub-banner::after { display:none; }
.sub-banner .inner { position:relative; z-index:2; padding:100px 70px 160px; }
.sub-banner h1 { font-size:clamp(28px,4vw,52px); font-weight:800; color:#fff; letter-spacing:-1.5px; margin-bottom:18px; }
.sub-banner p { font-size:19px; color:rgba(255,255,255,.85); max-width:600px; margin:0 auto 30px; }
.breadcrumb-nav { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.1); border-radius:10px; padding:8px 20px; font-size:13px; color:rgba(255,255,255,.72); border:1px solid rgba(255,255,255,.16); margin-bottom:26px; }
.breadcrumb-nav a { color:var(--purple); font-weight:600; transition:.2s; }
.breadcrumb-nav a:hover { color:#fff; }
.breadcrumb-sep { color:rgba(255,255,255,.4); font-size:10px; }
.sb-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ---- BUTTONS ---- */
.btn-white { background:#fff; color:var(--primary); font-weight:700; font-size:15px; padding:13px 28px; border-radius:10px; display:inline-flex; align-items:center; gap:8px; transition:.3s; border:2px solid transparent; cursor:pointer; }
.btn-white:hover { background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.btn-outline-white { background:transparent; color:#fff; font-weight:700; font-size:15px; padding:13px 28px; border-radius:10px; border:2px solid rgba(255,255,255,.5); display:inline-flex; align-items:center; gap:8px; transition:.3s; cursor:pointer; }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:#fff; }
.btn-primary { background:var(--grad); color:#fff; font-weight:700; font-size:15px; padding:13px 26px; border-radius:10px; border:none; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; gap:8px; transition:.3s; width:100%; font-family:'Plus Jakarta Sans',sans-serif; }
.btn-primary:hover { background:var(--grad-r); transform:translateY(-2px); box-shadow:0 8px 24px rgba(3,48,239,.3); }
.btn-secondary { background:transparent; color:var(--primary); font-weight:700; font-size:15px; padding:13px 26px; border-radius:10px; border:2px solid var(--primary); display:inline-flex; align-items:center; justify-content:center; gap:8px; transition:.3s; cursor:pointer; width:100%; font-family:'Plus Jakarta Sans',sans-serif; }
.btn-secondary:hover { background:var(--primary); color:#fff; }

/* ---- TECH STRIP (fix #8: logo images) ---- */
.tech-strip { background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:22px 70px; }
.tech-strip-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.tech-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--grey); white-space:nowrap; }
.tech-logos { display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.tech-logo-img { height:26px; width:auto; opacity:.5; filter:grayscale(100%); transition:.2s; }
.tech-logo-img:hover { opacity:1; filter:grayscale(0%); }

/* ---- SECTIONS ---- */
.section { padding:88px 70px; }
.section-inner { max-width:1280px; margin:0 auto; }
.section-tag { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--primary); margin-bottom:10px; display:block; }
.section-heading { font-size:clamp(26px,3.2vw,44px); font-weight:800; color:var(--accent); letter-spacing:-1.5px; line-height:1.1; margin-bottom:16px; }
.section-sub { font-size:17px; color:var(--text); max-width:560px; line-height:1.7; }
.section-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; gap:30px; flex-wrap:wrap; }
.grey-bg { background:var(--grey-bg); }
.dark-bg { background:var(--accent); }
.cards-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.cards-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.cards-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }

/* ---- FEATURE BOX ---- */
.feature-box { display:flex; align-items:flex-start; gap:18px; padding:26px; background:#fff; border:1px solid var(--border); border-radius:16px; transition:.3s; }
.feature-box:hover { border-color:var(--purple); box-shadow:0 10px 40px rgba(143,120,252,.1); }
.feature-icon { width:48px; height:48px; background:rgba(3,48,239,.08); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--primary); flex-shrink:0; }
.feature-box h3, .feature-box h4 { font-size:15px; font-weight:700; color:var(--accent); margin-bottom:5px; }
.feature-box p { font-size:14px; color:var(--text); line-height:1.6; margin:0; }

/* ========================================================
   PRICING CARDS — perfect 3-column alignment
   ========================================================
   The grid reserves 48px top padding on EVERY cell.
   Featured: badge fills that space visually.
   Non-featured: transparent gap, cards start at same Y.
   Featured wrapper: flex-column so badge stacks above card.
   Gradient border = 3px padding on featured wrapper.
======================================================== */

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;        /* don't stretch — let each cell be its own height */
}

/* Every cell gets the same 48px top padding = badge zone */
.pricing-cards-grid > div {
  padding-top: 48px;
  height: 100%;
}

/* Non-featured wrapper */
.pricing-wrap {
  position: relative;
  height: 100%;
  display: block;
}

/* Featured wrapper:
   - flex column so .plan-badge stacks naturally on top of .pricing-card
   - 3px gradient padding = the visible coloured border
   - border-radius 28px wraps everything including the badge area
*/
.pricing-wrap.featured {
  background: var(--grad);
  padding: 3px;
  border-radius: 28px;          /* fully rounded ALL corners */
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Badge = first child of .pricing-wrap.featured, no absolute positioning needed */
.plan-badge {
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background already provided by parent gradient — transparent here */
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border-radius: 25px 25px 0 0;  /* top corners match outer wrapper */
  gap: 6px;
  padding: 0 16px;
  margin: 0;                      /* flush, no gaps */
  position: static;               /* NOT absolute — stays in flex flow */
  top: auto; left: auto; right: auto;
}

/* Card itself — fully rounded, fills remaining flex space */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 36px 32px;
  position: relative;
  transition: .3s;
  flex: 1;                        /* grow to fill wrapper height */
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--purple); box-shadow: 0 20px 60px rgba(143,120,252,.12); }

/* Featured inner card: remove border (gradient wrapper is the border), all corners round */
.pricing-wrap.featured .pricing-card {
  border: none;
  border-radius: 0 0 25px 25px;  /* top flush with badge, bottom rounded */
}
.pricing-icon { width:54px; height:54px; display:flex; align-items:center; justify-content:center; background:var(--grey-bg); border-radius:14px; font-size:24px; margin-bottom:20px; color:var(--primary); flex-shrink:0; }
.pricing-card h3 { font-size:20px; font-weight:800; color:var(--accent); margin-bottom:7px; }
.plan-desc { font-size:14px; color:var(--text); margin-bottom:18px; display:block; line-height:1.55; }
.savings-badge { display:inline-block; background:rgba(16,185,129,.1); color:#059669; font-size:12px; font-weight:700; padding:3px 10px; border-radius:100px; margin-bottom:12px; border:1px solid rgba(16,185,129,.2); }

/* ── Price block: clean layout (Fix #5) ── */
.price-from { font-size:13px; color:var(--grey); display:block; margin-bottom:6px; }
.price-was-line { display:flex; align-items:center; gap:8px; margin-bottom:4px; }
.price-was { font-size:17px; color:#aaa; text-decoration:line-through; font-weight:600; }
.price-save-tag { font-size:11px; font-weight:700; background:rgba(239,68,68,.1); color:#dc2626; padding:2px 8px; border-radius:100px; }
/* Price now: big amount + /month on same line, tight */
.price-now { display:flex; align-items:baseline; gap:6px; margin-bottom:6px; }
.price-amount { font-size:46px; font-weight:800; color:var(--accent); line-height:1; }
.price-amount sup { font-size:20px; vertical-align:top; margin-top:8px; font-weight:800; }
.price-period { font-size:15px; color:var(--text); font-weight:600; }
/* Billing total block — prominent, clearly labelled */
.price-billed-block {
  display:flex; align-items:center; gap:5px;
  background:rgba(3,48,239,.05); border:1px solid rgba(3,48,239,.12);
  border-radius:8px; padding:7px 12px; margin-bottom:10px;
  flex-wrap:wrap;
}
.price-billed-label { font-size:12px; font-weight:600; color:var(--grey); }
.price-billed-total { font-size:14px; font-weight:800; color:var(--primary); }
.price-billed-cycle { font-size:12px; color:var(--text); }
/* Old billed note (fallback) */
.price-billed-note { font-size:12px; color:var(--grey); display:block; margin-bottom:10px; }
.renewal-notice { font-size:12px; color:var(--grey); margin-bottom:16px; padding:6px 12px; background:var(--grey-bg); border-radius:8px; border:1px solid var(--border); display:flex; align-items:center; gap:6px; }
/* VPS billed block */
.vps-price-area { margin:8px 0 12px; }
.vps-billed-block { display:flex; align-items:center; gap:5px; background:rgba(3,48,239,.05); border:1px solid rgba(3,48,239,.12); border-radius:7px; padding:5px 10px; margin-top:5px; flex-wrap:wrap; }
.vps-billed-label { font-size:11px; font-weight:600; color:var(--grey); }
.vps-billed-total { font-size:13px; font-weight:800; color:var(--primary); }
.vps-billed-cycle { font-size:11px; color:var(--text); }
.feature-list { list-style:none; margin-bottom:24px; flex:1; }
.feature-list li { font-size:14px; color:var(--text); padding:7px 0; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:9px; }
.feature-list li:last-child { border-bottom:none; }
.feature-list li i.yes { color:var(--primary); font-size:12px; flex-shrink:0; }
.feature-list li i.no { color:#ef4444; font-size:12px; flex-shrink:0; }

/* ---- BILLING BAR ---- */
.billing-bar-wrap { text-align:center; margin-bottom:52px; }
.billing-bar { display:inline-flex; background:#fff; border:1px solid var(--border); border-radius:14px; padding:5px; gap:4px; box-shadow:0 3px 0 rgba(143,120,252,.1); }
.billing-btn { padding:10px 20px; border:none; border-radius:10px; font-size:14px; font-weight:600; color:var(--accent); background:transparent; cursor:pointer; font-family:'Plus Jakarta Sans',sans-serif; transition:.2s; display:flex; align-items:center; gap:6px; white-space:nowrap; }
.billing-btn:hover { background:var(--grey-bg); }
.billing-btn.active { background:var(--grad); color:#fff; }
.bb-badge { font-size:10px; font-weight:800; background:rgba(255,255,255,.25); border-radius:100px; padding:2px 6px; }
.billing-btn:not(.active) .bb-badge { background:rgba(143,120,252,.12); color:var(--purple); }

/* ---- COMPARISON TABLE ---- */
.comparison-table { width:100%; border-collapse:separate; border-spacing:8px 0; margin-top:36px; }
.comparison-table th { font-size:14px; font-weight:700; color:var(--accent); padding:13px 16px; text-align:center; background:var(--grey-bg); border-radius:10px 10px 0 0; }
.comparison-table th:first-child { text-align:left; background:transparent; }
.comparison-table td { padding:11px 16px; font-size:14px; color:var(--text); background:#fff; text-align:center; border-bottom:1px solid var(--border); }
.comparison-table td:first-child { text-align:left; background:transparent; font-weight:600; color:var(--accent); }
.comparison-table tr:nth-child(even) td:not(:first-child) { background:var(--grey-bg); }
.comparison-table td i.yes { color:var(--primary); }
.comparison-table td i.no { color:#ef4444; }
.comparison-table tr:last-child td:not(:first-child) { border-radius:0 0 10px 10px; border-bottom:none; }

/* ---- VPS CARDS ---- */
.vps-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.vps-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:24px 16px; text-align:center; transition:.3s; position:relative; }
.vps-card:hover { border-color:var(--purple); box-shadow:0 12px 40px rgba(143,120,252,.12); }
.vps-card.popular::before { content:'Best seller'; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--grad); color:#fff; font-size:11px; font-weight:700; padding:4px 14px; border-radius:100px; white-space:nowrap; }
.vps-name { font-size:16px; font-weight:800; color:var(--accent); margin-bottom:4px; }
.vps-desc { font-size:12px; color:var(--text); line-height:1.5; margin-bottom:10px; min-height:32px; }
.vps-was { font-size:14px; color:#aaa; text-decoration:line-through; font-weight:600; }
.vps-price { font-size:28px; font-weight:800; color:var(--primary); line-height:1; }
.vps-price sup { font-size:14px; vertical-align:top; margin-top:5px; }
.vps-mo { font-size:11px; font-weight:400; color:var(--text); }
.vps-billed { font-size:10px; color:var(--grey); margin-top:2px; }
.vps-renewal { font-size:10px; color:var(--purple); margin-top:2px; }
.vps-save { font-size:10px; font-weight:700; color:#059669; background:rgba(16,163,74,.08); padding:2px 7px; border-radius:100px; margin:5px auto 0; display:inline-block; }
.vps-specs { margin:12px 0; display:flex; flex-direction:column; gap:6px; }
.vps-spec { background:var(--grey-bg); border-radius:7px; padding:5px 8px; font-size:11px; color:var(--accent); font-weight:600; display:flex; align-items:center; justify-content:center; gap:5px; }
.vps-spec i { color:var(--primary); font-size:10px; }
.vps-btn { background:transparent; color:var(--primary); font-weight:700; font-size:12px; padding:9px; border-radius:9px; border:2px solid var(--primary); cursor:pointer; width:100%; transition:.3s; font-family:'Plus Jakarta Sans',sans-serif; }
.vps-btn:hover { background:var(--primary); color:#fff; }
.vps-btn.primary { background:var(--grad); color:#fff; border:none; }
.vps-btn.primary:hover { background:var(--grad-r); }

/* ---- TESTIMONIALS ---- */
.testi-card { background:#fff; border:1px solid var(--border); border-radius:20px; padding:28px; transition:.3s; }
.testi-card:hover { border-color:var(--purple); box-shadow:0 10px 40px rgba(143,120,252,.1); }
.stars { color:#f59e0b; font-size:14px; letter-spacing:2px; margin-bottom:14px; }
.testi-text { font-size:15px; color:var(--text); line-height:1.7; margin-bottom:22px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; padding-top:16px; border-top:1px solid var(--border); }
.avatar { width:40px; height:40px; border-radius:50%; background:var(--grad); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; color:#fff; flex-shrink:0; }
.author-name { font-size:14px; font-weight:700; color:var(--accent); }
.author-role { font-size:12px; color:var(--grey); }

/* ---- CTA ---- */
.cta-section { padding:0 70px 88px; }
.cta-box { background:var(--grad); border-radius:26px; padding:66px 58px; text-align:center; position:relative; overflow:hidden; }
.cta-box::after { content:''; position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events:none; }
.cta-box h2 { font-size:clamp(24px,2.8vw,42px); font-weight:800; color:#fff; letter-spacing:-1.5px; margin-bottom:14px; position:relative; z-index:1; }
.cta-box p { font-size:17px; color:rgba(255,255,255,.86); margin-bottom:34px; position:relative; z-index:1; }
.cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }

/* ---- ACCORDION ---- */
.accordion-item { border-bottom:1px solid var(--border); }
.accordion-item:last-child { border-bottom:none; }
.accordion-btn { width:100%; text-align:left; background:none; border:none; padding:22px 0 22px 52px; font-size:17px; font-weight:600; color:var(--accent); cursor:pointer; position:relative; font-family:'Plus Jakarta Sans',sans-serif; line-height:1.4; }
.accordion-btn::before { content:''; width:32px; height:32px; border:1.5px solid var(--purple); border-radius:50%; position:absolute; left:0; top:50%; transform:translateY(-50%); }
.accordion-btn::after { content:''; width:9px; height:9px; border-right:2px solid var(--purple); border-bottom:2px solid var(--primary); position:absolute; left:11px; top:50%; transform:translateY(-50%) rotate(45deg); transition:.3s; }
.accordion-btn.open::after { transform:translateY(-30%) rotate(-135deg); border-color:#fff; }
.accordion-btn.open::before { background:var(--grad); box-shadow:0 6px 20px rgba(3,48,239,.2); }
.accordion-body { display:none; padding:0 0 22px 52px; }
.accordion-body.open { display:block; }
.accordion-body p { font-size:15px; color:var(--text); line-height:1.7; }

/* ---- CONTACT ---- */
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:56px; align-items:start; }
.info-box { background:var(--grey-bg); border:1px solid var(--border); border-radius:18px; padding:26px; transition:.3s; margin-bottom:14px; }
.info-box:hover { border-color:var(--purple); }
.info-icon { font-size:24px; color:var(--primary); margin-bottom:10px; }
.info-box h4 { font-size:16px; font-weight:700; color:var(--accent); margin-bottom:5px; }
.info-box p { font-size:14px; color:var(--text); margin:0; }
.info-box a.info-link { font-size:16px; font-weight:700; color:var(--primary); margin-top:5px; display:block; }
.contact-form-card { background:#fff; border:1px solid var(--border); border-radius:22px; padding:42px; }
.contact-form-card h3 { font-size:24px; font-weight:800; color:var(--accent); margin-bottom:6px; }
.contact-form-card .form-sub { font-size:15px; color:var(--text); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-size:13px; font-weight:700; color:var(--accent); margin-bottom:5px; }
.form-input { width:100%; border:1.5px solid var(--border); border-radius:10px; padding:12px 16px; font-size:15px; color:var(--accent); font-family:'Plus Jakarta Sans',sans-serif; transition:.2s; outline:none; background:#fff; }
.form-input:focus { border-color:var(--primary); }
textarea.form-input { height:130px; resize:vertical; }
.form-submit { background:var(--grad); color:#fff; font-weight:700; font-size:15px; padding:14px 32px; border-radius:10px; border:none; cursor:pointer; font-family:'Plus Jakarta Sans',sans-serif; transition:.3s; display:inline-flex; align-items:center; gap:8px; }
.form-submit:hover { background:var(--grad-r); transform:translateY(-2px); }
.form-success { color:#16a34a; font-size:14px; margin-top:12px; font-weight:600; display:none; }

/* ---- ABOUT PAGE (fix #9: proper bullets) ---- */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.about-story-card { background:var(--grey-bg); border:1px solid var(--border); border-radius:22px; padding:34px; display:flex; flex-direction:column; gap:26px; }
.about-row { display:flex; align-items:flex-start; gap:16px; }
.about-row-icon { width:46px; height:46px; background:rgba(3,48,239,.08); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--primary); flex-shrink:0; margin-top:2px; }
.about-row h3 { font-size:16px; font-weight:700; color:var(--accent); margin-bottom:7px; }
.about-row p { font-size:14px; color:var(--text); margin-bottom:10px; line-height:1.65; }
/* fix #9: bullet list */
.about-row ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:7px; }
.about-row ul li { font-size:14px; color:var(--text); display:flex; align-items:flex-start; gap:9px; line-height:1.55; }
.about-row ul li::before { content:''; width:6px; height:6px; min-width:6px; background:var(--primary); border-radius:50%; margin-top:6px; flex-shrink:0; }
/* values list */
.values-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.values-list li { font-size:15px; color:var(--text); display:flex; align-items:center; gap:10px; }
.values-list li i { color:var(--primary); flex-shrink:0; }
/* stats box */
.stats-box { background:var(--grad); border-radius:22px; padding:42px; color:#fff; }
.stats-box h3 { font-size:19px; font-weight:800; margin-bottom:28px; letter-spacing:-.5px; }
.stats-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.stat-big { font-size:42px; font-weight:800; line-height:1; }
.stat-bl { font-size:13px; opacity:.8; margin-top:4px; }

/* ---- FOOTER (fix #2: logo image) ---- */
footer { background:var(--accent); color:var(--grey); padding:78px 70px 0; }
.footer-inner { max-width:1280px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.footer-logo-img { height:36px; width:auto; display:block; margin-bottom:16px; max-width:180px; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.45); line-height:1.7; max-width:280px; }
.footer-col h4 { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1.2px; color:#fff; margin-bottom:18px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:14px; color:rgba(255,255,255,.45); transition:.2s; }
.footer-links a:hover { color:var(--purple); }
.footer-newsletter { margin-top:22px; }
.footer-newsletter-label { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,.45); margin-bottom:8px; display:block; }
.newsletter-form { display:flex; gap:8px; }
.nl-input { flex:1; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:8px; padding:10px 14px; font-size:14px; color:#fff; font-family:'Plus Jakarta Sans',sans-serif; outline:none; transition:.2s; }
.nl-input:focus { border-color:var(--purple); }
.nl-input::placeholder { color:rgba(255,255,255,.3); }
.nl-btn { background:var(--grad); color:#fff; border:none; border-radius:8px; padding:10px 16px; font-size:14px; font-weight:700; cursor:pointer; white-space:nowrap; font-family:'Plus Jakarta Sans',sans-serif; transition:.3s; }
.nl-btn:hover { background:var(--grad-r); }
.footer-bottom { max-width:1280px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; padding:22px 0; border-top:1px solid rgba(255,255,255,.1); }
.footer-copy { font-size:13px; color:rgba(255,255,255,.35); }
.footer-socials { display:flex; gap:24px; }
.footer-socials a { font-size:13px; color:rgba(255,255,255,.35); transition:.2s; text-decoration:underline; }
.footer-socials a:hover { color:var(--purple); }

/* ---- BACK TO TOP ---- */
#backTop { position:fixed; bottom:28px; right:28px; width:44px; height:44px; background:var(--purple); border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:15px; cursor:pointer; opacity:0; pointer-events:none; transition:.3s; z-index:999; animation:bttP 2s infinite; }
@keyframes bttP { from{box-shadow:0 0 0 0 rgba(143,120,252,.4)} to{box-shadow:0 0 0 18px rgba(143,120,252,0)} }
#backTop.show { opacity:1; pointer-events:auto; }
#backTop:hover { background:var(--primary); transform:translateY(-4px); }

/* ---- COOKIE BANNER (fix #12: GTM-ready) ---- */
.cookie-banner { position:fixed; right:20px; bottom:20px; width:min(440px,calc(100vw - 28px)); background:linear-gradient(180deg,#1f1f1f,#171717); color:#fff; padding:24px; border-radius:16px; box-shadow:0 14px 40px rgba(0,0,0,.4); z-index:99999; display:none; font-family:'Plus Jakarta Sans',sans-serif; }
.cookie-banner.show { display:block; }
.cookie-banner h4 { font-size:18px; font-weight:700; margin-bottom:10px; }
.cookie-banner p { font-size:14px; color:rgba(255,255,255,.8); margin-bottom:14px; line-height:1.6; }
.cookie-options { display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
.cookie-opt { display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color:rgba(255,255,255,.9); cursor:pointer; padding:10px 12px; background:rgba(255,255,255,.05); border-radius:10px; border:1px solid rgba(255,255,255,.08); }
.cookie-opt input[type="checkbox"] { accent-color:var(--primary); width:16px; height:16px; cursor:pointer; }
.cookie-btns { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.c-btn { padding:11px; border-radius:10px; font-size:14px; font-weight:700; border:none; cursor:pointer; font-family:'Plus Jakarta Sans',sans-serif; }
.c-btn.accept { background:#16a34a; color:#fff; }
.c-btn.reject { background:#4b5563; color:#fff; }
.c-btn.prefs { grid-column:1/-1; background:#fff; color:#111; }
.c-btn:hover { opacity:.9; }
.cookie-policy-link { display:inline-block; margin-top:12px; color:#76c1ff; font-size:13px; text-decoration:underline; }

/* ---- SERVICES PAGE ---- */
.services-hero-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.service-card { background:#fff; border:1px solid var(--border); border-radius:20px; padding:34px 28px; transition:.3s; display:flex; flex-direction:column; gap:14px; }
.service-card:hover { border-color:var(--purple); box-shadow:0 12px 40px rgba(143,120,252,.1); transform:translateY(-3px); }
.service-card-icon { width:54px; height:54px; background:rgba(3,48,239,.08); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; color:var(--primary); }
.service-card h3 { font-size:19px; font-weight:800; color:var(--accent); letter-spacing:-.5px; }
.service-card p { font-size:14px; color:var(--text); line-height:1.65; margin:0; flex:1; }
.service-card .svc-from { font-size:13px; font-weight:700; color:var(--primary); background:rgba(3,48,239,.06); padding:7px 14px; border-radius:8px; border:1px solid rgba(3,48,239,.12); display:inline-block; }
.svc-link { display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:700; color:var(--primary); transition:gap .2s; }
.service-card:hover .svc-link { gap:10px; }

/* ---- STATS STRIP ---- */
.stats-strip { padding:68px 70px; background:var(--accent); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; max-width:900px; margin:0 auto; text-align:center; }
.stat-big-num { font-size:48px; font-weight:800; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
.stat-big-label { font-size:14px; color:rgba(255,255,255,.55); margin-top:8px; }

/* ---- RESPONSIVE ---- */
@media(max-width:1200px){ .vps-grid{grid-template-columns:repeat(3,1fr)} }
@media(max-width:1024px){
  .topbar{padding-left:24px;padding-right:24px}
  .main-nav{padding:0 24px}
  .tech-strip,.section,.cta-section,footer,.stats-strip{padding-left:24px;padding-right:24px}
  .sub-banner .inner{padding:80px 24px 130px}
  .cards-3,.cards-4,.about-split,.footer-grid,.contact-grid,.services-hero-grid{grid-template-columns:1fr}
  .cards-2{grid-template-columns:1fr}
  .nav-links,.nav-actions{display:none}
  .hamburger{display:block}
  .vps-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:28px}
  .stats-grid-2{grid-template-columns:1fr 1fr;gap:20px}
  .hero-slider{height:520px}
  .hs-content h1{font-size:24px}
  .hs-content p{font-size:15px}
}
@media(max-width:768px){
  .billing-bar{flex-wrap:wrap;justify-content:center}
  .billing-btn{padding:8px 12px;font-size:13px}
}
@media(max-width:640px){
  .sub-banner .inner{padding:60px 20px 100px}
  .hero-slider{height:480px}
  .hs-content h1{font-size:21px}
  .hs-btns{flex-direction:column;align-items:center}
  .form-row{grid-template-columns:1fr}
  .vps-grid{grid-template-columns:1fr}
  .cta-btns{flex-direction:column;align-items:center}
  .cta-box{padding:42px 22px}
  .section-header{flex-direction:column}
  .stats-grid-2{grid-template-columns:1fr 1fr}
  .cookie-btns{grid-template-columns:1fr}
  .c-btn.prefs{grid-column:auto}
}

/* ---- LEGAL PAGES ---- */
.legal-toc {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-toc h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: 16px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-toc ol li { font-size: 14px; }
.legal-toc ol li a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}
.legal-toc ol li a:hover { color: var(--purple); }
.legal-content { max-width: 860px; }
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(3,48,239,.07);
  border: 1px solid rgba(3,48,239,.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.legal-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin: 48px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-content h2:first-of-type { margin-top: 0; border-top: none; }
.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
}
.legal-content ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.legal-content a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.legal-content a:hover { color: var(--purple); }
.legal-content strong { color: var(--accent); font-weight: 700; }
.legal-content .note-box {
  background: rgba(3,48,239,.05);
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text);
}
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.legal-sidebar-nav {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.legal-sidebar-nav h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: 14px;
}
.legal-sidebar-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: legal-counter;
}
.legal-sidebar-nav ol li { counter-increment: legal-counter; }
.legal-sidebar-nav ol li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 8px;
  transition: .2s;
  line-height: 1.4;
}
.legal-sidebar-nav ol li a::before {
  content: counter(legal-counter);
  min-width: 20px;
  height: 20px;
  background: rgba(3,48,239,.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
}
.legal-sidebar-nav ol li a:hover { background: rgba(3,48,239,.06); color: var(--primary); }
@media(max-width:1024px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
}
/* GEMI special */
.gemi-info-card {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
@media(max-width:768px) { .gemi-info-card { grid-template-columns: 1fr; } }
.gemi-item { display: flex; flex-direction: column; gap: 4px; }
.gemi-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); }
.gemi-value { font-size: 15px; font-weight: 700; color: var(--accent); }

/* Cookie re-open link in footer */
.cookie-reopen-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; color:rgba(255,255,255,.45);
  cursor:pointer; background:none; border:none;
  font-family:inherit; padding:0; transition:.2s;
  text-decoration:underline;
}
.cookie-reopen-link:hover { color:var(--purple); }
