/* ================================================================
   GLOBAL ARK — Master Stylesheet
   Colors: #0163af (Primary Blue) | #b3d6ef (Light Blue) | #4a4f52 (Dark Grey)
   Fonts:  Signika (titles) | Noto Sans (body)
================================================================ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Noto Sans', sans-serif; color: #2d3748; background: #fff; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --blue:       #0163af;
  --blue-dark:  #014d8a;
  --blue-light: #b3d6ef;
  --blue-pale:  #e8f2fb;
  --grey:       #4a4f52;
  --grey-light: #f5f6f7;
  --grey-mid:   #8a9099;
  --white:      #ffffff;
  --text:       #2d3748;
  --text-muted: #6b7280;
  --border:     #e2e8f0;
  --success:    #16a34a;
  --warning:    #d97706;
  --danger:     #dc2626;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(1,99,175,.12);
  --shadow-lg:  0 12px 40px rgba(1,99,175,.18);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: all 0.25s ease;
}

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Signika', sans-serif; line-height: 1.2; color: var(--text); font-weight: 600; }
h1 { font-size: clamp(32px, 5vw, 58px); }
h2 { font-size: clamp(26px, 3.5vw, 42px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p  { color: var(--text-muted); line-height: 1.75; }

/* ── Utility ─────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 88px 0; }
.section-sm     { padding: 56px 0; }
.text-center    { text-align: center; }
.text-blue      { color: var(--blue); }
.text-white     { color: var(--white); }
.text-muted     { color: var(--text-muted); }
.fw-600         { font-weight: 600; }
.mt-8           { margin-top: 8px; }
.mt-16          { margin-top: 16px; }
.mt-24          { margin-top: 24px; }
.mt-40          { margin-top: 40px; }
.mb-8           { margin-bottom: 8px; }
.mb-16          { margin-bottom: 16px; }
.mb-40          { margin-bottom: 40px; }

.section-label {
  display: inline-block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 12px;
}
.section-title  { margin-bottom: 12px; }
.section-sub    { font-size: 17px; max-width: 560px; }
.section-sub.center { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary   { background: var(--blue);  color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline   { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white     { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-pale); }
.btn-grey      { background: var(--grey-light); color: var(--grey); }
.btn-grey:hover { background: var(--border); }
.btn-sm        { padding: 9px 20px; font-size: 14px; }
.btn-lg        { padding: 16px 36px; font-size: 16px; }
.btn-full      { width: 100%; justify-content: center; }

.ga-table .btn-sm {
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 13px;
}

/* ── Form Elements ───────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(1,99,175,.12); }
.form-control::placeholder { color: #aab; }
select.form-control { appearance: none; cursor: pointer; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.form-error { font-size: 13px; color: var(--danger); margin-top: 5px; }

/* ── Alerts ──────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-danger  { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info    { background: var(--blue-pale); color: var(--blue-dark); border: 1px solid var(--blue-light); }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-blue  { background: var(--blue); border-color: var(--blue); color: #fff; }
.card-pale  { background: var(--blue-pale); border-color: transparent; }

/* ── Badge ───────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-blue    { background: var(--blue); color: #fff; }
.badge-pale    { background: var(--blue-pale); color: var(--blue); }
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger  { background: #fee2e2; color: #b91c1c; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 100px;
}
.nav-logo .logo-img { height: 100px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--text); padding: 7px 14px;
  border-radius: 8px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { background: var(--blue-pale); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-login {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--blue); border: 1.5px solid var(--blue);
  padding: 7px 18px; border-radius: 8px;
  transition: var(--transition);
}
.btn-nav-login:hover { background: var(--blue); color: #fff; }
.btn-nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  background: var(--blue); color: #fff;
  padding: 8px 16px; border-radius: 8px;
  transition: var(--transition);
}
.btn-nav-phone:hover { background: var(--blue-dark); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--grey); border-radius: 2px; transition: var(--transition); }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0163af 0%, #014d8a 50%, #013a6b 100%);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(179,214,239,.2);
  border: 1px solid rgba(179,214,239,.4);
  color: var(--blue-light);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; line-height: 1.1; }
.hero h1 em { color: var(--blue-light); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.75; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
  backdrop-filter: blur(4px);
}
.hero-stat-num {
  font-family: 'Signika', sans-serif;
  font-size: 38px; font-weight: 700;
  color: var(--blue-light); line-height: 1;
}
.hero-stat-lbl { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px; }

/* ── DOMAIN SEARCH ───────────────────────────────────────── */
.domain-search-section { background: var(--blue-pale); padding: 60px 0; }
.domain-search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 800px; margin: 0 auto;
}
.domain-search-box h2 { font-size: 28px; margin-bottom: 8px; }
.domain-search-form {
  display: flex; gap: 0; margin-top: 28px;
  border: 2px solid var(--blue); border-radius: var(--radius);
  overflow: hidden;
}
.domain-input {
  flex: 1; padding: 16px 20px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px; color: var(--text);
  border: none; outline: none;
  background: #fff;
}
.domain-ext-select {
  padding: 0 16px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--blue); background: var(--blue-pale);
  border: none; border-left: 1px solid var(--border);
  cursor: pointer; outline: none;
}
.domain-search-btn {
  background: var(--blue); color: #fff;
  border: none; padding: 0 28px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.domain-search-btn:hover { background: var(--blue-dark); }
.domain-result { margin-top: 20px; }
.domain-popular { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.domain-popular span { font-size: 13px; color: var(--text-muted); align-self: center; }
.domain-popular a {
  background: var(--blue-pale); color: var(--blue);
  font-size: 13px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
  transition: var(--transition);
}
.domain-popular a:hover { background: var(--blue); color: #fff; }

/* Domain result cards */
.domain-result-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: var(--radius);
  margin-top: 12px; border: 1.5px solid;
}
.domain-result-card.available   { background: #dcfce7; border-color: #86efac; }
.domain-result-card.unavailable { background: #fee2e2; border-color: #fca5a5; }
.domain-result-card .domain-name { font-weight: 600; font-size: 16px; }
.domain-result-card .domain-price { font-size: 18px; font-weight: 700; color: var(--blue); }
.domain-result-card .domain-status { font-size: 13px; font-weight: 600; }
.domain-result-card.available .domain-status   { color: #15803d; }
.domain-result-card.unavailable .domain-status { color: #b91c1c; }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--blue-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--blue); fill: var(--blue); }
.service-card h3 { margin-bottom: 10px; font-size: 20px; }
.service-card p  { font-size: 14px; line-height: 1.75; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 14px; font-weight: 600;
  color: var(--blue); transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── PRODUCTS / CRM ──────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.product-card {
  border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card.dark { background: #013a6b; border-color: rgba(179,214,239,.2); }
.product-card.light { background: var(--blue-pale); }
.product-card.mid  { background: var(--grey); border-color: transparent; }
.product-badge {
  display: inline-block;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 20px;
}
.product-card.dark .product-badge { background: var(--blue-light); color: var(--blue-dark); }
.product-card.mid  .product-badge { background: #fff; color: var(--grey); }
.product-card h3 { font-size: 22px; margin-bottom: 12px; }
.product-card.dark h3 { color: #fff; }
.product-card.mid  h3 { color: #fff; }
.product-card p  { font-size: 14px; line-height: 1.75; }
.product-card.dark p { color: rgba(255,255,255,.65); }
.product-card.mid  p { color: rgba(255,255,255,.65); }
.product-url {
  display: inline-block; margin-top: 20px;
  font-size: 13px; font-weight: 600;
  color: var(--blue); border-bottom: 1px solid rgba(1,99,175,.3);
}
.product-card.dark .product-url { color: var(--blue-light); border-color: rgba(179,214,239,.3); }
.product-card.mid  .product-url { color: #fff; border-color: rgba(255,255,255,.3); }

/* ── HOSTING PLANS ───────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.plan-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 26px;
  position: relative; transition: var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan-card.featured { background: var(--blue); border-color: var(--blue); }
.plan-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #f59e0b; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 15px; font-weight: 600; color: var(--text-muted); margin-bottom: 16px; }
.plan-card.featured .plan-name { color: rgba(255,255,255,.7); }
.plan-price { font-family: 'Signika', sans-serif; font-size: 42px; font-weight: 700; color: var(--text); line-height: 1; }
.plan-card.featured .plan-price { color: #fff; }
.plan-price sub { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 400; }
.plan-period { font-size: 13px; color: var(--text-muted); margin: 6px 0 24px; }
.plan-card.featured .plan-period { color: rgba(255,255,255,.6); }
.plan-features { list-style: none; }
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.plan-feature:last-child { border-bottom: none; }
.plan-check { color: var(--success); font-size: 16px; flex-shrink: 0; }
.plan-card.featured .plan-check { color: var(--blue-light); }
.plan-cta { display: block; text-align: center; margin-top: 24px; }

/* ── AWS HOSTING ─────────────────────────────────────────── */
.aws-section { background: #013a6b; }
.aws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.aws-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(179,214,239,.2);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition);
}
.aws-card:hover { background: rgba(255,255,255,.12); border-color: rgba(179,214,239,.4); }
.aws-price { font-family: 'Signika', sans-serif; font-size: 44px; font-weight: 700; color: var(--blue-light); line-height: 1; }
.aws-price sub { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 400; color: rgba(255,255,255,.6); }
.aws-name { font-size: 16px; font-weight: 600; color: #fff; margin: 12px 0 20px; }
.aws-specs { list-style: none; }
.aws-spec { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.08); }
.aws-spec:last-child { border-bottom: none; }
.aws-spec-icon { color: var(--blue-light); font-size: 16px; flex-shrink: 0; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.why-card {
  text-align: center; padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--blue-pale);
  transition: var(--transition);
}
.why-card:hover { background: var(--blue); }
.why-card:hover h3, .why-card:hover p { color: rgba(255,255,255,.9); }
.why-card:hover .why-icon-wrap { background: rgba(255,255,255,.15); }
.why-icon-wrap {
  width: 64px; height: 64px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
  transition: var(--transition);
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; transition: var(--transition); }
.why-card p  { font-size: 14px; transition: var(--transition); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner { background: var(--blue); padding: 72px 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(26px,4vw,42px); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.7); font-size: 18px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #0a1e36; padding: 72px 0 0; }
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 16px;
    /* filter: brightness(1.1); */
    padding: 4px;
    border-radius: 15px;
    background: #fff;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-contact-item:hover { color: var(--blue-light); }
.footer-contact-item svg { fill: var(--blue-light); flex-shrink: 0; }
.footer-col h4 { font-family: 'Signika', sans-serif; font-size: 16px; color: #fff; margin-bottom: 20px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-col li a:hover { color: var(--blue-light); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; }
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-inner p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
  font-size: 12px; color: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.12);
  padding: 3px 10px; border-radius: 100px;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0163af, #014d8a);
  padding: 64px 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 18px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,.4); }
.breadcrumb .current { font-size: 13px; color: var(--blue-light); font-weight: 600; }

/* ── RENEWAL PAGE ────────────────────────────────────────── */
.renewal-wrap {
  max-width: 680px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 48px;
  box-shadow: var(--shadow-md);
}
.renewal-service-card {
  background: var(--blue-pale); border: 1.5px solid var(--blue-light);
  border-radius: var(--radius); padding: 20px;
  margin-bottom: 16px;
}
.renewal-service-card h4 { font-size: 16px; color: var(--blue); margin-bottom: 8px; }
.renewal-service-card .meta { font-size: 13px; color: var(--text-muted); }
.renewal-price { font-size: 28px; font-weight: 700; color: var(--blue); }
.renewal-expiry { font-size: 13px; color: var(--warning); font-weight: 600; }

/* ── LOGIN PAGE ──────────────────────────────────────────── */
.login-wrap {
  min-height: calc(100vh - 70px);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.login-box {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px 44px; width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo img { height: 56px; width: auto; margin: 0 auto; }
.login-title { text-align: center; font-size: 26px; margin-bottom: 6px; }
.login-sub   { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-input {
  width: 52px; height: 56px; text-align: center;
  font-size: 24px; font-weight: 700;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Signika', sans-serif; color: var(--blue);
  outline: none; transition: var(--transition);
}
.otp-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(1,99,175,.12); }

/* ── TABLE ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table.ga-table { width: 100%; border-collapse: collapse; }
.ga-table thead th {
  background: var(--blue); color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  padding: 14px 18px; text-align: left;
}
.ga-table tbody td { padding: 14px 18px; font-size: 14px; border-bottom: 1px solid var(--border); }
.ga-table tbody tr:last-child td { border-bottom: none; }
.ga-table tbody tr:hover td { background: var(--blue-pale); }

/* ── LOADING SPINNER ─────────────────────────────────────── */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid rgba(1,99,175,.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .products-grid  { grid-template-columns: repeat(2,1fr); }
  .why-grid       { grid-template-columns: repeat(2,1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-grid      { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid     { grid-template-columns: 1fr; }
  .aws-grid       { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .products-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: repeat(2,1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links      { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-hamburger  { display: flex; }
  .btn-nav-phone  { display: none; }
  .domain-search-form { flex-direction: column; border: none; gap: 10px; }
  .domain-input, .domain-ext-select, .domain-search-btn { border-radius: var(--radius); border: 2px solid var(--blue); padding: 14px 16px; }
  .domain-search-btn { width: 100%; }
  .renewal-wrap   { padding: 28px 20px; }
  .login-box      { padding: 32px 24px; }
  .hero           { padding: 60px 0 50px; }
  .section        { padding: 56px 0; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
