/* ============================================================
   Managed-WP static design system
   Tokens extracted from the production site's rendered CSS
   ============================================================ */
:root {
  --blue: #0170B9;
  --blue-dark: #005177;
  --blue-light: #03a9f5;
  --ink: #3a3a3a;
  --ink-2: #4B4F58;
  --gray: #475467;
  --bg: #F5F5F5;
  --line: #E5E5E5;
  --white: #ffffff;
  --dark: #0e1523;
  --radius: 12px;
  --font-body: 'Karla', -apple-system, 'Segoe UI', sans-serif;
  --font-head: 'Montserrat', 'Karla', sans-serif;
  --shadow: 0 10px 30px rgba(1, 112, 185, .10);
  --shadow-lg: 0 20px 50px rgba(14, 21, 35, .14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s ease; text-align: center;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--bg); color: var(--blue-dark); }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--dark); color: #cbd5e1; font-size: .82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 7px; padding-bottom: 7px; }
.topbar a { color: #cbd5e1; }
.topbar a:hover { color: #fff; }
.topbar .tb-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar .status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #00d084; margin-right: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: #fff;
  box-shadow: 0 2px 14px rgba(14, 21, 35, .07);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }
.brand img { height: 44px; width: auto; display: block; }
.main-nav > ul { display: flex; list-style: none; gap: 6px; align-items: center; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .95rem; padding: 10px 14px; border-radius: 8px; display: inline-block; }
.main-nav a:hover, .main-nav li.active > a { color: var(--blue); background: rgba(1,112,185,.07); }
.main-nav .has-drop { position: relative; }
.main-nav .has-drop > a::after { content: '▾'; margin-left: 6px; font-size: .75em; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px;
  list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
}
.dropdown li a { display: flex; gap: 10px; align-items: center; padding: 10px 14px; font-size: .92rem; }
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn { padding: 10px 20px; font-size: .82rem; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #0e1523 0%, #143852 55%, #0170B9 130%);
  color: #fff; padding: 90px 0 100px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 20%, rgba(3,169,245,.25), transparent 60%);
  pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow { color: var(--blue-light); font-family: var(--font-head); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; margin-bottom: 14px; }
.hero h1 { color: #fff; margin-bottom: 8px; }
.hero h1 .tm { color: var(--blue-light); }
.hero p.lead { font-size: 1.15rem; color: #dbe7f3; margin: 18px 0 30px; max-width: 560px; }
.hero img { border-radius: var(--radius); }

/* ---------- Generic sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--bg); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section-head .eyebrow { color: var(--blue); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; }
.section-head h2 { margin: 8px 0 14px; }
.section-head p { color: var(--ink-2); }

/* Feature cards */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid #eef2f6; transition: all .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(1,112,185,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card .icon img { width: 30px; height: 30px; object-fit: contain; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: .97rem; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev > .split-media { order: 2; }
.split h2 { margin-bottom: 16px; }
.split p { color: var(--ink-2); margin-bottom: 14px; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; border-radius: 18px; padding: 56px 48px; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #d8ecfa; max-width: 640px; margin: 0 auto 28px; }

/* ---------- Pricing ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th { background: var(--dark); color: #fff; font-family: var(--font-head); font-size: .85rem; letter-spacing: .04em; padding: 16px 14px; text-align: left; }
.price-table td { padding: 14px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table tr:hover td { background: #f4faff; }
.price-table .pname { font-weight: 700; color: var(--blue-dark); }
.price-table .pprice { font-weight: 700; }
.tag-included { display: inline-block; background: rgba(0,208,132,.12); color: #067647; font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--blue); transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 24px 22px; color: var(--ink-2); }

/* Blog cards */
.blog-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid #eef2f6; transition: all .25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; }
.blog-card .bc-body { padding: 20px 22px 24px; }
.blog-card .bc-cat { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); }
.blog-card h3 { font-size: 1.02rem; margin: 8px 0 10px; }
.blog-card .bc-meta { font-size: .82rem; color: var(--gray); }

/* Partners strip */
.partners { display: flex; flex-wrap: wrap; gap: 44px; justify-content: center; align-items: center; }
.partners img { height: 44px; width: auto; filter: grayscale(1) opacity(.75); transition: .3s; }
.partners img:hover { filter: none; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; color: var(--ink); background: #fbfcfe; transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--gray); }
.form-status { margin-top: 14px; font-weight: 600; }

/* Contact channel cards */
.channel { text-align: center; padding: 28px 20px; }
.channel .icon { margin: 0 auto 14px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(135deg, #0e1523 0%, #143852 60%, #0170B9 140%); color: #fff; padding: 72px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.page-hero p { color: #d8ecfa; max-width: 720px; margin: 14px auto 0; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: #9fc7e8; margin-bottom: 14px; }
.breadcrumb a { color: #cfe8fb; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #b8c2d1; padding: 70px 0 0; font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .08em; margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 50px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #b8c2d1; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.lang-switch { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.lang-switch a { border: 1px solid #33415580; padding: 6px 14px; border-radius: 20px; font-size: .82rem; color: #b8c2d1; }
.lang-switch a.active, .lang-switch a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-bottom { border-top: 1px solid #ffffff14; padding: 20px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; }
.socials { display: flex; gap: 14px; }
.socials a { color: #b8c2d1; font-weight: 600; }
.socials a:hover { color: #fff; }

/* ---------- Steps (partner) ---------- */
.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; margin-bottom: 34px; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 64px; height: 64px; border-radius: 50%; background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Reviews */
.review-stars { color: #f6c453; font-size: 1.3rem; letter-spacing: 3px; }
.rating-big { font-size: 3.4rem; font-family: var(--font-head); font-weight: 800; color: var(--blue); }

/* Datacenter list */
.dc-list { columns: 3; column-gap: 32px; }
.dc-list li { break-inside: avoid; margin-bottom: 8px; color: var(--ink-2); list-style: none; padding-left: 20px; position: relative; }
.dc-list li::before { content: '▸'; color: var(--blue); position: absolute; left: 0; }

/* Domain search */
.domain-search { display: flex; max-width: 620px; margin: 28px auto 0; background: #fff; border-radius: 50px; padding: 6px; box-shadow: var(--shadow-lg); }
.domain-search input { flex: 1; border: 0; padding: 12px 22px; font: inherit; border-radius: 50px; }
.domain-search input:focus { outline: none; }
.domain-search .btn { border-radius: 50px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .dc-list { columns: 2; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 74px 0 auto 0; background: #fff; max-height: 0; overflow: hidden;
    transition: max-height .35s ease; box-shadow: var(--shadow-lg);
  }
  .main-nav.open { max-height: 80vh; overflow-y: auto; }
  .main-nav > ul { flex-direction: column; align-items: stretch; padding: 14px; gap: 2px; }
  .main-nav a { display: block; padding: 13px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; padding: 0 0 0 14px; }
  .has-drop.open .dropdown { display: block; }
  .header-cta .btn-outline { display: none; }
  .hero .container, .split, .grid-2 { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .hero { padding: 60px 0 70px; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 26px; }
  .dc-list { columns: 1; }
  .price-scroll { overflow-x: auto; }
}
