/* ============================================================
   WebAnchor — Custom Stylesheet
   Replaces: foundation.css + style.min.css
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --blue:       #2563eb;
  --blue-light: #eff6ff;
  --blue-dark:  #1d4ed8;
  --blue-muted: #dbeafe;
  --text:       #111827;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --bg-alt:     #f9fafb;
  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-muted: #64748b;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(37,99,235,0.12);
  --bg:         #fff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font-family: inherit; }

/* ── BASE TYPOGRAPHY ── */
h1 { font-size: clamp(36px, 5vw, 54px); font-weight: 900; letter-spacing: -2px; line-height: 1.05; }
h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 900; letter-spacing: -1px; line-height: 1.1; }
h3 { font-size: 16px; font-weight: 800; line-height: 1.3; }
p  { color: var(--muted); line-height: 1.7; }

/* ── CURRENCY UTILITIES ── */
.usd_value { display: none; }
.pk_value  { display: inline; }

/* ── SECTION UTILITIES ── */
.wa-section       { padding: 72px 32px; }
.wa-section--alt  { background: var(--bg-alt); }
.wa-section-inner { max-width: 1200px; margin: 0 auto; }
.wa-section-header { text-align: center; margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.wa-section-header .tag {
  color: var(--blue); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.wa-section-header h2 { color: var(--text); margin-bottom: 12px; }
.wa-section-header p  { max-width: 520px; margin: 0 auto; font-size: 15px; }

/* ── NAVBAR ── */
#wa-navbar {
  position: sticky; top: 0; z-index: 600;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px; gap: 20px;
  transition: box-shadow 0.2s;
}
#wa-navbar.wa-navbar--scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.wa-logo img { display: block; }
.wa-logo {
  font-weight: 700; font-size: 20px; color: var(--blue);
  display: flex; align-items: center; gap: 8px;
}
.wa-nav-menu {
  display: flex; align-items: center;
  gap: 4px; flex: 1; justify-content: center;
}
.wa-nav-item { position: relative; }
.wa-nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: 13px; font-weight: 500;
  color: #374151; border-radius: var(--radius-sm);
  cursor: pointer; white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.wa-nav-link:hover, .wa-nav-item--open > .wa-nav-link { color: var(--blue); background: var(--blue-light); }
.wa-nav-link .chevron { font-size: 10px; color: #9ca3af; transition: transform 0.2s; }
.wa-nav-item--open > .wa-nav-link .chevron { transform: rotate(180deg); }

/* Dropdown */
.wa-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 300;
}
.wa-nav-item:hover .wa-dropdown,
.wa-nav-item--open .wa-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.wa-dropdown a {
  display: block; padding: 8px 12px; font-size: 13px;
  color: #374151; border-radius: 6px;
  transition: background 0.1s, color 0.1s;
}
.wa-dropdown a:hover { background: var(--blue-light); color: var(--blue); }

/* Nav right */
.wa-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.wa-currency {
  font-size: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 5px 8px; color: var(--text); background: #fff; cursor: pointer;
}
.wa-wa-link {
  font-size: 12px; color: #16a34a; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.wa-wa-link:hover { color: #15803d; }
.wa-btn-client {
  font-size: 13px; font-weight: 700; color: #fff;
  background: var(--blue); padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.wa-btn-client:hover { background: var(--blue-dark); }

/* Hamburger */
.wa-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.wa-menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.2s;
}

/* ══════════════════════════════════════════════════════
   MEGA MENU — desktop only (≥1024px)
   ══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Hide the mobile drawer header on desktop */
  #wa-drawer-header { display: none !important; }

  /* Mega items use navbar as the positioning parent */
  .wa-nav-item--mega { position: static; }

  .wa-mega {
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--blue-muted);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
    z-index: 300;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    padding: 28px 32px 32px;
  }
  .wa-nav-item--mega:hover .wa-mega {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .wa-mega-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; gap: 40px;
  }
  .wa-mega-inner--3col { grid-template-columns: 1fr 1fr 1fr; }
  .wa-mega-inner--4col { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .wa-mega-col-title {
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--muted);
    padding-bottom: 10px; margin-bottom: 6px;
    border-bottom: 1px solid var(--border);
  }
  .wa-mega-link {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 8px; border-radius: var(--radius-sm);
    transition: background 0.15s; color: var(--text); margin-bottom: 2px;
  }
  .wa-mega-link:hover { background: var(--blue-light); }
  .wa-mega-icon {
    width: 36px; height: 36px;
    background: var(--blue-light); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--blue);
    flex-shrink: 0; margin-top: 1px;
    transition: background 0.15s, color 0.15s;
  }
  .wa-mega-link:hover .wa-mega-icon { background: var(--blue); color: #fff; }
  .wa-mega-link-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; }
  .wa-mega-link-desc { font-size: 11px; color: var(--muted); margin-top: 2px; line-height: 1.4; }

  /* Servers 4-col: card style */
  .wa-mega-inner--4col .wa-mega-link {
    flex-direction: column; align-items: center;
    text-align: center; padding: 18px 12px;
    border: 1.5px solid var(--border); border-radius: var(--radius);
  }
  .wa-mega-inner--4col .wa-mega-link:hover { border-color: var(--blue); }
  .wa-mega-inner--4col .wa-mega-icon {
    width: 44px; height: 44px;
    font-size: 18px; margin-top: 0; margin-bottom: 8px;
  }
  .wa-mega-inner--4col .wa-mega-link-name { font-size: 14px; }
  .wa-mega-inner--4col .wa-mega-link-desc { font-size: 12px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE NAVBAR — mobile drawer / offcanvas (<1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .wa-menu-toggle { display: flex; }
  .wa-nav-right .wa-wa-link,
  .wa-nav-right .wa-currency { display: none; }
}

/* Drawer backdrop */
#wa-drawer-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
  opacity: 0;
  transition: opacity 0.3s;
}
#wa-drawer-backdrop.wa-backdrop--visible {
  display: block; opacity: 1;
}

/* Drawer panel */
@media (max-width: 1023px) {
  #wa-nav-menu {
    position: fixed;
    top: 0; left: 0;
    width: min(300px, 85vw);
    height: 100dvh;
    background: #fff;
    z-index: 400;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    display: flex !important;
    flex-direction: column;
    justify-content:flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0 0 32px;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 32px rgba(0,0,0,0.18);
  }
  #wa-nav-menu.wa-drawer--open { transform: translateX(0); }

  /* Drawer header row */
  li#wa-drawer-header, #wa-drawer-header {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0; width: 100%;
  }
  #wa-drawer-logo {
    font-weight: 800; font-size: 18px; color: var(--blue);
    display: flex; align-items: center; gap: 8px;
  }
  #wa-drawer-logo img { width: 28px; height: auto; }
  #wa-drawer-close {
    background: none; border: none; cursor: pointer;
    font-size: 22px; color: var(--text);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
  }
  #wa-drawer-close:hover { background: var(--blue-light); }

  /* Nav items */
  .wa-nav-item { width: 100%; border-bottom: 1px solid var(--border); }
  .wa-nav-link {
    width: 100%; justify-content: space-between;
    padding: 14px 20px; font-size: 15px;
    border-radius: 0;
  }

  /* Regular dropdowns in drawer */
  .wa-dropdown {
    position: static; opacity: 1; visibility: hidden;
    max-height: 0; overflow: hidden;
    box-shadow: none; border: none; border-radius: 0;
    transform: none; padding: 0;
    background: var(--bg-alt);
    transition: max-height 0.25s ease, visibility 0.25s;
  }
  .wa-nav-item--open .wa-dropdown { visibility: visible; max-height: 600px; }
  .wa-dropdown a {
    display: block; padding: 12px 20px 12px 40px;
    border-radius: 0; border-bottom: 1px solid var(--border);
    font-size: 14px; color: var(--text);
  }
  .wa-dropdown a:last-child { border-bottom: none; }

  /* Mega menu in drawer */
  .wa-mega {
    position: static; opacity: 1; visibility: hidden;
    max-height: 0; overflow: hidden;
    box-shadow: none; border: none; border-radius: 0;
    transform: none; padding: 0;
    background: var(--bg-alt);
    transition: max-height 0.35s ease, visibility 0.35s;
  }
  .wa-nav-item--open .wa-mega { visibility: visible; max-height: 1400px; }
  .wa-mega-inner { display: block; }
  .wa-mega-col { padding: 0; }
  .wa-mega-col-title {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; color: var(--muted);
    padding: 12px 20px 4px;
  }
  .wa-mega-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px; border-radius: 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .wa-mega-icon {
    width: 30px; height: 30px;
    background: var(--blue-light); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--blue); flex-shrink: 0;
  }
  .wa-mega-link-name { font-size: 14px; font-weight: 600; }
  .wa-mega-link-desc { display: none; }
}

/* ── HERO ── */
.wa-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #2563eb 100%);
  padding: 96px 32px 80px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}
.wa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(37,99,235,0.45) 0%, transparent 70%);
  pointer-events: none;
}
.wa-hero h1 { color: #fff; margin-bottom: 20px; position: relative; }
.wa-hero h1 em { color: #93c5fd; font-style: normal; }
.wa-hero .wa-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.72);
  max-width: 600px; margin-bottom: 36px;
  line-height: 1.75; position: relative;
}

@media (max-width: 767px) {
  .wa-hero { padding: 56px 20px 48px; }
  .wa-hero h1 { letter-spacing: -1px; }
}

/* ── DOMAIN SEARCH ── */
.wa-domainsearch { width: 100%; max-width: 580px; position: relative; }
.wa-domainsearch form { width: 100%; }
.wa-search-bar {
  display: flex; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.wa-search-bar input {
  flex: 1; padding: 16px 20px; font-size: 15px;
  border: none; outline: none; color: var(--text); background: transparent;
  min-width: 0;
}
.wa-search-bar input::placeholder { color: #9ca3af; }
.wa-search-bar button {
  background: var(--blue); color: #fff;
  padding: 16px 24px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.15s;
}
.wa-search-bar button:hover { background: var(--blue-dark); }

.wa-tld-bar {
  display: flex; gap: 24px; margin-top: 16px;
  flex-wrap: wrap; justify-content: center;
}
.wa-tld-bar .tld { font-size: 13px; color: rgba(255,255,255,0.55); }
.wa-tld-bar .tld strong { color: rgba(255,255,255,0.9); font-weight: 700; }

@media (max-width: 767px) {
  .wa-search-bar { flex-direction: column; }
  .wa-search-bar input { padding: 14px 16px; }
  .wa-search-bar button { padding: 14px; border-radius: 0; }
  .wa-tld-bar { gap: 14px; }
}

/* ── PRICING CARDS ── */
.wa-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.wa-pricing-card {
  border: 1.5px solid var(--border); border-radius: 16px;
  padding: 32px 26px; display: flex; flex-direction: column;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.wa-pricing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.wa-pricing-card--featured {
  border-color: var(--blue);
  background: var(--blue-light);
}
.wa-pricing-card .card-icon  { font-size: 30px; margin-bottom: 14px; }
.wa-pricing-card .card-name  { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.wa-pricing-card .card-price { font-size: 28px; font-weight: 900; color: var(--text); letter-spacing: -1px; margin-bottom: 2px; }
.wa-pricing-card .card-price .period { font-size: 13px; font-weight: 500; color: #9ca3af; }
.wa-pricing-card .card-price .alt-currency { display: block; font-size: 12px; font-weight: 500; color: #9ca3af; margin-top: 2px; }
.wa-pricing-card .card-desc  { font-size: 12px; color: #9ca3af; margin-bottom: 22px; margin-top: 4px; }
.wa-pricing-card ul { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.wa-pricing-card ul li { font-size: 13px; color: #374151; display: flex; align-items: flex-start; gap: 8px; }
.wa-pricing-card ul li::before { content: '✓'; color: var(--blue); font-weight: 800; font-size: 11px; margin-top: 3px; flex-shrink: 0; }
.wa-pricing-card .card-btn {
  display: block; text-align: center; padding: 12px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 700;
  border: 1.5px solid var(--blue); color: var(--blue);
  transition: background 0.15s, color 0.15s;
}
.wa-pricing-card .card-btn:hover { background: var(--blue); color: #fff; }
.wa-pricing-card--featured .card-btn { background: var(--blue); color: #fff; }
.wa-pricing-card--featured .card-btn:hover { background: var(--blue-dark); }

@media (max-width: 599px) {
  .wa-pricing-grid { grid-template-columns: 1fr; }
}

/* ── WHY US ── */
.wa-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 980px; margin: 0 auto;
}
.wa-why-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.wa-why-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,0.07); }
.wa-why-card .card-icon { font-size: 28px; margin-bottom: 14px; }
.wa-why-card h3 { color: var(--text); margin-bottom: 8px; }
.wa-why-card p  { font-size: 13px; line-height: 1.7; }

@media (max-width: 767px)  { .wa-why-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .wa-why-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── SERVICES ── */
.wa-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 980px; margin: 0 auto;
}
.wa-service-card {
  padding: 26px 22px; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid #f3f4f6;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.wa-service-card:hover {
  background: #fff; border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(37,99,235,0.08);
}
.wa-service-card .card-icon { font-size: 26px; margin-bottom: 12px; color: var(--blue); }
.wa-service-card h3 { font-size: 15px; margin-bottom: 8px; }
.wa-service-card h3 a { color: var(--text); transition: color 0.15s; }
.wa-service-card h3 a:hover { color: var(--blue); }
.wa-service-card p { font-size: 13px; line-height: 1.65; }

@media (max-width: 767px)  { .wa-services-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .wa-services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── CLIENTS ── */
.wa-clients { padding: 64px 32px; border-top: 1px solid var(--border); }
.wa-clients h2 { text-align: center; font-size: 22px; margin-bottom: 36px; color: var(--text); }
.wa-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto;
  align-items: center; justify-items: center;
}
.wa-client-logo {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 16px;
  width: 100%; display: flex; align-items: center;
  justify-content: center; min-height: 88px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wa-client-logo:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(37,99,235,0.08); }
.wa-client-logo img {
  max-width: 100%; max-height: 60px; object-fit: contain;
  filter: grayscale(100%); opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}
.wa-client-logo:hover img { filter: grayscale(0%); opacity: 1; }

@media (max-width: 767px)  { .wa-clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) and (max-width: 1023px) { .wa-clients-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── FOOTER ── */
.wa-footer { background: var(--dark); color: #fff; padding: 56px 32px 24px; }

.wa-footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 28px; border-bottom: 1px solid var(--dark-2); margin-bottom: 40px;
}
.wa-footer-support { display: flex; gap: 28px; flex-wrap: wrap; }
.wa-footer-support .sup-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #94a3b8; }
.wa-footer-support .sup-item i { font-size: 16px; color: var(--dark-muted); }

.wa-footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 40px;
}
.wa-footer h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--dark-muted); margin-bottom: 16px;
}
.wa-footer ul { display: flex; flex-direction: column; gap: 9px; }
.wa-footer ul li a { font-size: 13px; color: #94a3b8; transition: color 0.15s; }
.wa-footer ul li a:hover { color: #fff; }
.wa-footer ul li.wa-address { font-size: 12px; color: var(--dark-muted); line-height: 1.6; }
.wa-footer ul li.wa-phone  { font-size: 13px; color: #94a3b8; font-weight: 600; }

.wa-footer-partners {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center; justify-content: center;
  padding: 28px 0; border-top: 1px solid var(--dark-2); border-bottom: 1px solid var(--dark-2);
  margin-bottom: 24px;
}
.wa-partner-logo { display: flex; align-items: center; justify-content: center; height: 52px; }
.wa-partner-logo img {
  max-height: 52px; max-width: 130px; object-fit: contain;
  opacity: 0.55; filter: grayscale(100%) brightness(2);
  transition: opacity 0.2s, filter 0.2s;
}
.wa-partner-logo:hover img { opacity: 1; filter: grayscale(0%) brightness(1); }

.wa-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.wa-copyright { font-size: 12px; color: #475569; }
.wa-social { display: flex; gap: 8px; }
.wa-social a {
  font-size: 12px; color: var(--dark-muted); font-weight: 600;
  background: var(--dark-2); padding: 6px 10px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.wa-social a:hover { color: #fff; background: var(--blue); }

/* Trustpilot widget */
.trustpilot-widget { margin-bottom: 24px; }

/* Back to top */
#back-to-top {
  position: fixed; bottom: 70px; right: 24px; z-index: 100;
  background: var(--blue); color: #fff;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 4px 12px rgba(37,99,235,0.3);
  transition: background 0.15s, transform 0.15s;
}
#back-to-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

@media (max-width: 767px) {
  .wa-footer-grid { grid-template-columns: 1fr 1fr; }
  .wa-footer-top { flex-direction: column; align-items: flex-start; }
  .wa-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 479px) {
  .wa-footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════════════════ */

/* ── Page Banner (.message) ── */
.message {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #2563eb 100%);
  padding: 72px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.message::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(37,99,235,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.message h1 {
  position: relative;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  text-transform: none;
  margin-bottom: 12px;
}
.bredcrumbs {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 4px 16px;
}
.message .row { padding: 0; max-width: 100%; }

/* ── Grid / Layout (Foundation replacement — flexbox-based) ── */
.row, .container {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 32px;
}
.row .row { padding-top: 16px; padding-bottom: 0; }

.columns { padding: 0 12px; min-height: 1px; min-width: 0; }
.small-2  { width: 16.667%; flex-shrink: 0; }
.small-4  { width: 33.333%; flex-shrink: 0; }
.small-12 { width: 100%; flex-shrink: 0; }

@media (min-width: 768px) {
  .medium-3 { width: 25%;     flex-shrink: 0; }
  .medium-4 { width: 33.333%; flex-shrink: 0; }
  .medium-7 { width: 58.333%; flex-shrink: 0; }
  .medium-8 { width: 66.667%; flex-shrink: 0; }
  .medium-9 { width: 75%;     flex-shrink: 0; }
}
@media (min-width: 1024px) {
  .large-3  { width: 25%;     flex-shrink: 0; }
  .large-4  { width: 33.333%; flex-shrink: 0; }
  .large-8  { width: 66.667%; flex-shrink: 0; }
  .large-9  { width: 75%;     flex-shrink: 0; }
  .large-12 { width: 100%;    flex-shrink: 0; }
}
.text-center { text-align: center; }
.spacing-top-50 { height: 40px; }
.spacing-top-15 { height: 16px; }
/* When spacing helpers are applied to content-bearing columns, restore auto height */
.columns.spacing-top-15 { height: auto; padding-top: 16px; }
.columns.spacing-top-50 { height: auto; padding-top: 40px; }

/* ── Content wrappers ── */
.about-us-subheader,
.faq-subheader,
#faq-content { padding: 40px 0; }
.about-us-subheader .row,
.faq-subheader .row,
#faq-content .row { padding-top: 0; padding-bottom: 0; }

/* ── Inner page typography ── */
.about-us-subheader h2,
.faq-subheader h2,
.container h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  margin-bottom: 20px;
}
.about-us-subheader h3,
.faq-subheader h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.about-us-subheader h4,
.faq-subheader h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin: 22px 0 8px;
}
.about-us-subheader p,
.faq-subheader p,
.container p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 14px;
}
.about-us-subheader ul,
.faq-subheader ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.about-us-subheader ul li,
.faq-subheader ul li {
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.65;
}
.about-us-subheader article { margin-top: 32px; }

/* ── Payment page banner ── */
.banner {
  background: var(--blue-light);
  border-bottom: 1px solid var(--blue-muted);
}
.banner.row {
  max-width: 100%;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.banner.row::after { display: none; }
.banner.row .columns { float: none; flex: 1; min-width: 260px; padding: 0; }
.banner.row h1 { font-size: clamp(20px, 3vw, 36px); color: var(--text); margin-bottom: 14px; }
.banner.row > p { color: var(--muted); line-height: 1.75; margin-bottom: 0; }
.heading_banking_option { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.heading_banking_option .columns { flex: none; padding: 0; }
.banking_top_logo { max-height: 64px !important; width: auto !important; height: auto !important; }

/* Payment content sections */
.columns.small-12 > h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.columns p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 10px; }
.columns ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.columns ul li { color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.columns img { max-height: 200px !important; width: auto !important; height: auto !important; display: block; }

/* ── FAQ Accordion ── */
.accordion { padding: 0; list-style: none; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.accordion-title::after {
  content: '+';
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-left: 12px;
}
.accordion-item.is-active .accordion-title { color: var(--blue); }
.accordion-item.is-active .accordion-title::after { content: '−'; }
.accordion-title:hover { color: var(--blue); }
.accordion-content { padding: 0 4px 24px; display: none; }
.accordion-item.is-active .accordion-content { display: block; }
.question {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-top: 18px;
  margin-bottom: 8px;
}
.accordion-content p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 10px; }

/* ── Affiliates ── */
.faqcategory { padding: 32px 0; border-bottom: 1px solid var(--border); }
.faqcategory:last-child { border-bottom: none; }
.faqcategory h2 { font-size: 20px; color: var(--blue); margin-bottom: 12px; }
.faqcategory p { color: var(--muted); line-height: 1.8; margin-bottom: 12px; font-size: 14px; }
.faqcategory .question { font-size: 14px; font-weight: 700; color: var(--text); margin: 18px 0 8px; }

/* ── Sitemap ── */
.row .small-4 h2 { font-size: 18px; color: var(--text); margin-bottom: 16px; }
.row .small-4 > ul { list-style: none !important; padding-left: 0 !important; }
.row .small-4 > ul li { margin-bottom: 8px; }
.row .small-4 > ul li a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
.row .small-4 > ul li a:hover { color: var(--blue); }

/* ── Mobile overrides ── */
@media (max-width: 767px) {
  .message { padding: 48px 20px 40px; }
  .row, .container { padding: 32px 20px; }
  .columns { float: none; width: 100% !important; padding: 0; }
  .small-4 { float: none; }
  .banner.row { padding: 32px 24px; flex-direction: column; }
  .about-us-subheader, .faq-subheader, #faq-content { padding: 24px 0; }
}

/* ── PRICING TABLE (inner hosting pages) ── */
.pricingboxes { padding: 40px 32px 64px; max-width: 1080px; margin: 0 auto; overflow: visible; }
.spacing-30 { height: 0; }

/* Header/description rows inside pricingboxes — compact, no card chrome */
.pricingboxes > .row {
  max-width: 100%;
  overflow: visible;
}
/* Suppress the generic 48px padding for all pricingboxes rows */
.pricingboxes > .row:not(:has(> .large-4)):not(:has(> .large-3)) {
  padding: 0 0 16px;
}
.pricingboxes > .row > .columns:only-child {
  float: none; padding: 0; width: 100%;
}
.pricingboxes > .row > .columns:only-child h2,
.pricingboxes > .row > .columns:only-child .h1 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900; color: var(--text);
  margin-bottom: 10px;
}
.pricingboxes > .row > .columns:only-child p {
  color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 8px;
}

/* Pricing card rows — identified by having multiple columns (large-3 or large-4) */
.pricingboxes > .row:has(> .large-4),
.pricingboxes > .row:has(> .large-3) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  padding: 28px 0 0; /* top clearance for badge + transform */
  align-items: stretch;
}
.pricingboxes > .row:has(> .large-4)::after,
.pricingboxes > .row:has(> .large-3)::after { display: none; }

/* Card chrome — only for multi-column pricing rows */
.pricingboxes > .row:has(> .large-4) > .columns,
.pricingboxes > .row:has(> .large-3) > .columns {
  float: none; padding: 0; width: auto;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
/* Remove double borders between adjacent cards */
.pricingboxes > .row:has(> .large-4) > .columns:not(:first-child),
.pricingboxes > .row:has(> .large-3) > .columns:not(:first-child) { border-left: none; }

/* Outer card corner radius */
.pricingboxes > .row:has(> .large-4) > .columns:first-child,
.pricingboxes > .row:has(> .large-3) > .columns:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.pricingboxes > .row:has(> .large-4) > .columns:last-child,
.pricingboxes > .row:has(> .large-3) > .columns:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }

/* ── Featured middle card ── */
.pricingboxes > .row:has(> .large-4) > .columns:nth-child(2),
.pricingboxes > .row:has(> .large-3) > .columns:nth-child(2) {
  background: var(--dark);
  border-color: var(--dark);
  border-radius: var(--radius);
  z-index: 1;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(15,23,42,0.25);
}

/* Most Popular badge */
.pricingboxes > .row:has(> .large-4) > .columns:nth-child(2)::before,
.pricingboxes > .row:has(> .large-3) > .columns:nth-child(2)::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}

/* Plan name */
h3.title, div.title {
  font-size: 11px; font-weight: 700;
  text-align: center;
  padding: 32px 20px 8px;
  margin: 0;
  background: transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.pricingboxes > .row > .columns:nth-child(2) h3.title,
.pricingboxes > .row > .columns:nth-child(2) div.title { color: #94a3b8; }

/* Price row */
ul.pricing-table { list-style: none; flex: 1; display: flex; flex-direction: column; }
ul.pricing-table li.price {
  text-align: center;
  padding: 4px 20px 24px;
  font-size: 28px; font-weight: 900;
  color: var(--text);
  letter-spacing: -1.5px;
  border-bottom: 1px solid var(--border);
}
.pricingboxes > .row > .columns:nth-child(2) ul.pricing-table li.price {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.1);
}

/* Feature rows */
ul.pricing-table .bullet-item {
  padding: 9px 20px;
  font-size: 13px; color: #374151;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
ul.pricing-table .bullet-item::before {
  content: '✓'; color: var(--blue);
  font-weight: 900; font-size: 10px;
  flex-shrink: 0; margin-top: 3px;
}
.pricingboxes > .row > .columns:nth-child(2) ul.pricing-table .bullet-item {
  color: #cbd5e1;
  border-bottom-color: rgba(255,255,255,0.07);
}
.pricingboxes > .row > .columns:nth-child(2) ul.pricing-table .bullet-item::before { color: #60a5fa; }

/* CTA button */
ul.pricing-table .cta-button {
  padding: 20px; text-align: center;
  margin-top: auto; background: transparent;
}
ul.pricing-table .cta-button p { margin: 0; color: inherit; font-size: inherit; }
ul.pricing-table .cta-button a {
  display: block; padding: 13px 20px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.15s, transform 0.1s;
  border: 2px solid var(--blue);
}
ul.pricing-table .cta-button a:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-1px);
}
.pricingboxes > .row > .columns:nth-child(2) ul.pricing-table .cta-button a {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.pricingboxes > .row > .columns:nth-child(2) ul.pricing-table .cta-button a:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
}

@media (max-width: 767px) {
  .pricingboxes { padding: 24px 20px 40px; }
  .pricingboxes > .row:has(> .large-4),
  .pricingboxes > .row:has(> .large-3) { grid-template-columns: 1fr; gap: 16px; padding-top: 16px; }
  .pricingboxes > .row:has(> .large-4) > .columns,
  .pricingboxes > .row:has(> .large-3) > .columns,
  .pricingboxes > .row:has(> .large-4) > .columns:first-child,
  .pricingboxes > .row:has(> .large-3) > .columns:first-child,
  .pricingboxes > .row:has(> .large-4) > .columns:last-child,
  .pricingboxes > .row:has(> .large-3) > .columns:last-child {
    border-radius: var(--radius); border: 1.5px solid var(--border);
  }
  .pricingboxes > .row > .columns:nth-child(2) { transform: none; border-color: var(--dark); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pricingboxes > .row:has(> .large-4),
  .pricingboxes > .row:has(> .large-3) { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricingboxes > .row:has(> .large-4) > .columns,
  .pricingboxes > .row:has(> .large-3) > .columns,
  .pricingboxes > .row:has(> .large-4) > .columns:first-child,
  .pricingboxes > .row:has(> .large-3) > .columns:first-child,
  .pricingboxes > .row:has(> .large-4) > .columns:last-child,
  .pricingboxes > .row:has(> .large-3) > .columns:last-child {
    border-radius: var(--radius); border: 1.5px solid var(--border);
  }
  .pricingboxes > .row > .columns:nth-child(2) {
    transform: none; grid-column: 1 / -1; max-width: 380px; margin: 0 auto; width: 100%;
  }
}

/* ── HOSTING FEATURES — modern alternating split panels ── */
.sharedfeatures-odd { background: #fff; }
.sharedfeatures-even { background: #f0f6ff; }

.sharedfeatures-odd,
.sharedfeatures-even { padding: 72px 32px; }

.sharedfeatures-odd .row,
.sharedfeatures-even .row {
  display: flex; align-items: center;
  gap: 72px; padding: 0;
  max-width: 960px; margin: 0 auto;
}
.sharedfeatures-odd .row::after,
.sharedfeatures-even .row::after { display: none; }
.sharedfeatures-odd .columns,
.sharedfeatures-even .columns { float: none; padding: 0; }
/* Odd: icon first (fixed), text last (grows) */
.sharedfeatures-odd .columns:first-child { flex-shrink: 0; }
.sharedfeatures-odd .columns:last-child  { flex: 1; }
/* Even: text first (grows), icon last (fixed) */
.sharedfeatures-even .columns:first-child { flex: 1; }
.sharedfeatures-even .columns:last-child  { flex-shrink: 0; }

/* Icon block */
.circle {
  width: 104px; height: 104px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #dbeafe 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; color: var(--blue);
  box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}
.sharedfeatures-even .circle {
  background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
}

/* Text */
.sharedfeatures-odd h2,
.sharedfeatures-even h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900; letter-spacing: -0.5px;
  color: var(--text); margin-bottom: 12px; line-height: 1.2;
}
.sharedfeatures-odd p,
.sharedfeatures-even p {
  color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0;
}

/* Number accent */
.sharedfeatures-odd .columns:last-child::before,
.sharedfeatures-even .columns:first-child::before {
  content: attr(data-num);
  display: none;
}

@media (max-width: 767px) {
  .sharedfeatures-odd,
  .sharedfeatures-even { padding: 40px 20px; }
  .sharedfeatures-odd .row,
  .sharedfeatures-even .row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .circle { width: 72px; height: 72px; border-radius: 16px; font-size: 30px; }
}

/* ── ARTICLE / SEO CONTENT SECTION ── */
.article_page {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.article_page .row { padding-top: 48px; padding-bottom: 48px; }
.article_page h2 { color: var(--text); margin-bottom: 12px; }
.article_page h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  text-align: center;
}
.article_page p { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 14px; }
.article_page a { color: var(--blue); }
.article_page a:hover { text-decoration: underline; }

/* ── ADDITIONAL GRID COLUMNS ── */
@media (min-width: 768px) {
  .medium-1  { width: 8.333%; }
  .medium-2  { width: 16.667%; }
  .medium-6  { width: 50%; }
  .medium-12 { width: 100%; }
}

/* ── CONTACT / TEAM PAGE ── */
.contact-section { padding: 48px 0; }
.contact-section #contactform { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.contact-section h2 { margin-bottom: 32px; color: var(--text); }
.contact-section label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.contact-section input[type=text],
.contact-section input[type=tel],
.contact-section textarea,
.contact-section select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text); background: #fff;
  margin-bottom: 18px; transition: border-color 0.15s;
  -webkit-appearance: none;
}
.contact-section input:focus,
.contact-section textarea:focus,
.contact-section select:focus {
  outline: none; border-color: var(--blue);
}
.contact-section input[type=submit],
.contact-section .button {
  width: 100%; padding: 13px 24px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.15s;
}
.contact-section input[type=submit]:hover { background: var(--blue-dark); }
.contact-section p { margin-bottom: 0; color: inherit; }

/* ── DISCOUNTS PAGE — domain feature grid ── */
.domainfeatures-list { padding: 56px 32px; background: #fff; }
.domainfeatures-list .row { padding: 0; }
.domainfeatures {
  list-style: none !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 0 0;
}
.domainfeatures > li {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.domainfeatures > li:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(37,99,235,0.07);
}
.domainfeatures > li .row { padding: 0; max-width: 100%; }
.domainfeatures > li .columns { float: none; padding: 0; }
.domainfeatures .h2 {
  font-size: 28px !important; font-weight: 900;
  color: var(--blue); margin-bottom: 10px;
}
.domainfeatures p { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.domainfeatures p strong { color: var(--text); }
@media (max-width: 767px) { .domainfeatures { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) and (max-width: 1023px) { .domainfeatures { grid-template-columns: repeat(3, 1fr); } }

/* ── pricing .title as div (discounts page) ── */
div.title {
  font-size: 11px; font-weight: 700;
  text-align: center;
  padding: 32px 20px 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.pricingboxes > .row > .columns:nth-child(2) div.title { color: #94a3b8; }

/* ── SEO / DIGITAL MARKETING PAGE ── */
.banner.row.expanded { max-width: 100%; }
.seo-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-bottom: none;
  padding: 72px 48px;
  display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.seo-banner::after { display: none; }
.seo-banner .columns { float: none; padding: 0; }
.seo-banner h1 { color: #fff; margin-bottom: 12px; }
.seo-banner .bredcrumbs { color: #94a3b8; }
.seo-banner p { color: #94a3b8; font-size: 15px; line-height: 1.8; margin: 16px 0 0; }
.seo-banner .large-8 { flex: 1; min-width: 280px; }
.seo-banner .large-4 { flex-shrink: 0; }

.row.icons { padding: 20px 0 0; gap: 12px; display: flex; align-items: center; }
.row.icons::after { display: none; }
.row.icons .columns { float: none; padding: 0; flex-shrink: 0; }
.row.icons img { width: 44px; height: 44px; filter: brightness(0) invert(1); opacity: 0.85; }

.seo-service { padding: 64px 32px; max-width: 1180px; margin: 0 auto; }
.seo-service.expanded { max-width: 100%; }
.seo-service h2 { color: var(--text); margin-bottom: 12px; }
.seo-service > p { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.seo-service .row { padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.seo-service .row::after { display: none; }
.seo-service .row .columns { float: none; padding: 0; }

/* Service cards (SEO / web-dev) */
.card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}
.card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.seo-card { padding: 0; }
.card-section {
  padding: 28px 20px;
  text-align: center;
}
.card-section img { margin: 0 auto 16px; width: 56px; height: 56px; }
.card-section h4 {
  font-size: 15px; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.card-section p { font-size: 13px; color: var(--muted); line-height: 1.7; }
@media (max-width: 767px) {
  .seo-service .row { grid-template-columns: 1fr; }
  .seo-banner { padding: 48px 24px; }
  .row.icons img { width: 36px; height: 36px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .seo-service .row { grid-template-columns: repeat(2, 1fr); }
}
.article_page hr { display: none; }

/* ── FOUNDATION BUTTON REPLACEMENT ── */
.button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-align: center;
}
.button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.button.expanded, .button.large.expanded { width: 100%; display: block; }
.button.large { padding: 13px 24px; font-size: 15px; }

/* ── INNER PAGE CONTENT WRAPPERS ── */
.vps-order-steps,
.features,
.premium-servers,
.domain-prices,
.pricingboxes-comparison { padding: 0; }

.vps-order-steps .row,
.features .row,
.domain-prices .row { padding-top: 40px; }

/* ── DEDICATED SERVERS TABLE ── */
.flat-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.flat-table thead tr {
  background: var(--dark);
  color: #fff;
}
.flat-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.flat-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.flat-table tbody tr:last-child td { border-bottom: none; }
.flat-table tbody tr:hover { background: var(--bg-alt); }
.flat-table td a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.flat-table td a:hover { background: var(--blue-dark); }
.flat-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 767px) {
  .flat-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── SSL COMPARISON TABLE ── */
.pricingboxes-comparison {
  padding: 56px 32px 64px;
  max-width: 1200px; margin: 0 auto;
}
.pricingboxes-comparison .row.collapse {
  display: grid;
  /* 180px features column + equal product columns (auto-fit handles 2 or 3 products) */
  grid-template-columns: 180px repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  padding: 0; max-width: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricingboxes-comparison .row.collapse::after { display: none; }
.pricingboxes-comparison .row.collapse .columns {
  /* override large-3 width so grid tracks control sizing */
  float: none; padding: 0; width: auto; margin-left: 0;
  border: none;
  border-right: 1.5px solid var(--border);
  display: flex; flex-direction: column;
}
.pricingboxes-comparison .row.collapse .columns:last-child { border-right: none; }
/* Compact description rows in pricingboxes-comparison */
.pricingboxes-comparison > .row:not(.collapse) { padding: 0 0 24px; }
.pricingboxes-comparison > .row:not(.collapse) .columns { float: none; padding: 0; width: auto; }

/* SSL column headers */
.title-features {
  font-size: 11px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 1px; text-align: center;
  padding: 20px 12px 12px;
  background: var(--bg-alt);
}
.title-alt {
  font-size: 13px; font-weight: 800;
  color: #fff; text-align: center;
  padding: 20px 12px 12px;
  background: var(--blue);
}

/* SSL feature rows */
ul.pricing-table.alter { list-style: none; flex: 1; display: flex; flex-direction: column; }
ul.pricing-table.alter .bullet-item {
  padding: 10px 12px;
  font-size: 13px; color: #374151;
  border-bottom: 1px solid var(--border);
  text-align: center;
  min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
ul.pricing-table.alter .bullet-item:last-child { border-bottom: none; }
ul.pricing-table.alter .bullet-item::before { display: none; }
.hostingfeatures ul.pricing-table.alter .bullet-item {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-alt);
  border-right: 1.5px solid var(--border);
}

.pricingboxes-comparison ul.pricing-table.alter .price {
  border-bottom: none;
  font-size: 22px;
  padding: 8px 12px 20px;
}
@media (max-width: 767px) {
  .pricingboxes-comparison .row.collapse {
    grid-template-columns: 1fr;
    border: none; border-radius: 0; overflow: visible;
  }
  .pricingboxes-comparison .row.collapse .columns {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
  }
  .pricingboxes-comparison .row.collapse .columns:last-child { border-right: 1.5px solid var(--border); }
  .hostingfeatures ul.pricing-table.alter .bullet-item { border-right: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pricingboxes-comparison .row.collapse {
    grid-template-columns: 150px repeat(auto-fit, minmax(120px, 1fr));
  }
}

/* ── GENERAL TYPOGRAPHY IMPROVEMENTS ── */
h1, h2, h3, h4 { -webkit-font-smoothing: antialiased; }

/* Consistent link CTA style for inner pages */
a.wa-cta-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-size: 14px; font-weight: 600;
  transition: gap 0.15s;
}
a.wa-cta-link:hover { gap: 10px; }

/* ── INPUT IMPROVEMENTS (global) ── */
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
textarea,
select {
  font-family: inherit;
  font-size: 14px;
}

/* ── DOMAIN SEARCH IN INNER PAGES ── */
.domainfeatures-list .domainfeatures-list { padding: 0; }

/* ── LARGE OFFSET COLUMNS (SSL page) ── */
@media (min-width: 1024px) {
  .large-offset-1 { margin-left: 8.333%; }
}
@media (min-width: 768px) {
  .medium-offset-1 { margin-left: 8.333%; }
}

/* ── PK DOMAINS REGISTER BUTTON ── */
.domainfeatures .button.expanded.large {
  margin-top: 12px;
  font-size: 12px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
}

/* ── MODERN PAGE SECTION INTRO (non-pricing inner pages) ── */
.vps-order-steps h2,
.features h2,
.domain-prices h2,
.about-us-subheader > .row > .columns > h2:first-child {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

/* ── PRICING TABLE EXTRAS ── */
ul.pricing-table .description {
  padding: 6px 20px 16px;
  font-size: 12px; color: var(--muted);
  text-align: center; font-style: italic;
  border-bottom: 1px solid var(--border);
}
.pricingboxes > .row > .columns:nth-child(2) ul.pricing-table .description {
  color: #94a3b8;
  border-bottom-color: rgba(255,255,255,0.1);
}

/* ── DOMAIN TRANSFER PAGE (faq-subheader + large-3/large-9 sidebar) ── */
.faq-subheader .row > .large-3.medium-3 {
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.faq-subheader .row > .large-9.medium-9 {
  padding-left: 24px;
}
.faqcategory { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faqcategory:last-child { border-bottom: none; }
.faqcategory h2 { font-size: 18px; color: var(--blue); font-weight: 800; margin-bottom: 12px; }
.faqcategory h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.faqcategory p  { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.faqcategory .question { font-size: 14px; font-weight: 700; color: var(--text); margin: 18px 0 8px; }
.faqcategory ul { list-style: disc; padding-left: 20px; margin-bottom: 10px; }
.faqcategory ul li { color: var(--muted); font-size: 14px; margin-bottom: 6px; }

/* ── DISCOUNT BADGE & DISCOUNTED PRICE ── */
.discounted {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 20px 20px;
}
.discounted .amount {
  font-size: 14px; color: var(--muted);
  text-decoration: line-through;
  opacity: 0.8;
}
.discounted .price {
  font-size: 28px; font-weight: 900;
  color: var(--text); letter-spacing: -1px;
  padding: 0; border-bottom: none;
  text-align: center;
}
.pricingboxes > .row > .columns:nth-child(2) .discounted .price { color: #fff; }
.pricingboxes > .row > .columns:nth-child(2) .discounted .amount { color: #94a3b8; }

.discount-badge {
  display: inline-block;
  background: #16a34a; color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.5px;
  margin: 16px auto 4px;
  text-transform: uppercase;
}
.pricingboxes > .row > .columns:nth-child(2) .discount-badge {
  background: #22c55e;
}

/* .h1 / .h2 as class (used in WordPress hosting page) */
.h1 { font-size: clamp(20px, 3vw, 32px); font-weight: 900; letter-spacing: -0.5px; color: var(--text); }
.h2 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 900; letter-spacing: -0.3px; color: var(--text); }

/* ── STICKY NAVBAR — ensure content not hidden under it ── */
body { padding-top: 0; }

/* Fix: pricingboxes row needs overflow visible for the absolute badge */
.pricingboxes > .row {
  overflow: visible;
}
.pricingboxes {
  overflow: visible;
}

/* Fix: ensure positioned elements inside grid cells are visible */
.pricingboxes > .row > .columns:nth-child(2) {
  overflow: visible;
}
.content-center{
  justify-content: center;
  align-items: center;
}

/* ── SHARED PAGE COMPONENTS ── */

/* Article section (used on VPS, Windows VPS, Dedicated, Domain, SSL pages) */
.ssl-article { max-width: 820px; margin: 0 auto; }
.ssl-article h2 { margin-bottom: 8px; }
.ssl-article h3 { font-size: 18px; font-weight: 700; color: var(--muted); margin-bottom: 24px; }
.ssl-article p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }

/* Domain TLD cards (used on domain-price and pkdomains pages) */
.dom-tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
.dom-tld-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.dom-tld-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 12px 16px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.dom-tld-card:hover {
  border-color: var(--blue); box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.dom-tld-card--featured {
  border-color: var(--blue); background: var(--blue-light);
}
.dom-ext {
  font-size: 26px; font-weight: 900; color: var(--text);
  letter-spacing: -1px; line-height: 1; margin-bottom: 6px;
}
.dom-tld-grid--compact .dom-ext { font-size: 20px; }
.dom-price { font-size: 13px; font-weight: 700; color: var(--blue); }
.dom-period { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.dom-btn {
  display: inline-block; width: 100%;
  padding: 7px 8px; font-size: 12px; font-weight: 700;
  background: var(--blue); color: #fff;
  border-radius: var(--radius-sm); text-align: center;
  transition: background 0.15s; margin-top: auto;
}
.dom-btn:hover { background: var(--blue-dark); color: #fff; }
.dom-tld-card--featured .dom-btn { background: var(--blue-dark); }

/* Domain tabs (used on domain-price page) */
.dom-tabs {
  display: flex; gap: 8px; margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
}
.dom-tab {
  background: none; border: none; cursor: pointer;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  color: var(--muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color 0.15s, border-color 0.15s;
}
.dom-tab:hover { color: var(--blue); }
.dom-tab--active { color: var(--blue); border-bottom-color: var(--blue); }
.dom-tab-panel { display: none; }
.dom-tab-panel--active { display: block; }

/* VPS / Windows VPS highlight pills */
.vps-highlights {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; max-width: 900px; margin: 32px auto 0;
}
.vps-highlight-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-light); border: 1px solid var(--blue-muted);
  border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--blue);
}
.vps-highlight-item i { font-size: 14px; }
.vps-badge {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
  margin-bottom: 10px;
}

@media (max-width: 599px) {
  .dom-tld-grid,
  .dom-tld-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .vps-highlights { gap: 10px; }
  .vps-highlight-item { font-size: 12px; padding: 6px 14px; }
}

/* ══════════════════════════════════════════════════════
   GLOBAL RESPONSIVENESS — overflow & small device fixes
   ══════════════════════════════════════════════════════ */

/* Prevent any element from exceeding viewport */
html, body { overflow-x: hidden; max-width: 100vw; }
* { min-width: 0; }

/* Reduce section padding on mobile */
@media (max-width: 767px) {
  .wa-section          { padding: 48px 16px; }
  .wa-section-header   { margin-bottom: 32px; }
  .wa-section-inner    { padding: 0; }
  .wa-clients          { padding: 40px 16px; }
  .wa-footer           { padding: 40px 16px 20px; }
  /* Pricing cards — single column */
  .wa-pricing-grid     { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 479px) {
  .wa-section    { padding: 40px 14px; }
  #wa-navbar     { padding: 0 16px; }
  .wa-logo       { font-size: 17px; }
}

/* Folding devices & ultra-small screens */
@media (max-width: 359px) {
  .wa-section          { padding: 32px 12px; }
  .wa-hero             { padding: 48px 12px 40px; }
  .message             { padding: 40px 12px 32px; }
  .vps-highlight-item  { font-size: 11px; padding: 5px 10px; gap: 6px; }
  /* Force TLD grid to single column on very small */
  .dom-tld-grid,
  .dom-tld-grid--compact { grid-template-columns: 1fr; }
  /* Tables scroll horizontally */
  table { display: block; overflow-x: auto; }
}

/* Tips / info sections with min-width children */
@media (max-width: 599px) {
  .tip-section,
  [class*="tip-"],
  [class*="-tips"]    { min-width: 0 !important; width: 100% !important; }
}

/* Pricing cards: ensure no overflow at any size */
.wa-pricing-card { min-width: 0; word-break: break-word; }
.wa-pricing-card ul li { font-size: clamp(12px, 2vw, 14px); }

/* Article content — full-width on mobile */
@media (max-width: 767px) {
  .ssl-article { padding: 0 4px; }
  .ssl-article p, .ssl-article li { font-size: 14px; }
}

/* Ensure images inside cards/grids never overflow */
.wa-why-card img,
.wa-service-card img,
.wa-pricing-card img { max-width: 100%; height: auto; }

/* Horizontal scroll container safety for tables */
.flat-table-wrap,
.ded-table-wrap       { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }