/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2b8f;
  --navy2:      #111e6c;
  --teal:       #00bcd4;
  --teal2:      #0097a7;
  --amber:      #f59e0b;
  --amber2:     #d97706;
  --bg:         #f0f4ff;
  --bg2:        #ffffff;
  --white:      #ffffff;
  --text:       #1e293b;
  --grey:       #64748b;
  --light:      #f8fafc;
  --border:     #e2e8f0;
  --blue-light: #e8eaf6;
  --radius:     10px;
  --radius2:    16px;
  --shadow:     0 4px 20px rgba(26,43,143,.10);
  --shadow2:    0 8px 32px rgba(26,43,143,.15);
  --font-head:  'Merriweather', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--teal); }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--grey); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--alt { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem; }

/* ===== CARD ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.card__icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: .5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s; text-decoration: none;
}
.btn-primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy2); border-color: var(--navy2); color: var(--white); }

.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-teal {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal2); border-color: var(--teal2); color: var(--white); }

.btn-amber {
  background: var(--amber); color: var(--white); border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber2); border-color: var(--amber2); color: var(--white); }

.btn-blue {
  background: #2563eb; color: var(--white); border-color: #2563eb;
}
.btn-blue:hover { background: #1d4ed8; color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(26,43,143,.08);
}
.navbar__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px; gap: .5rem;
}
.navbar__logo { display: flex; align-items: center; text-decoration: none; }
.navbar__links {
  display: flex; align-items: center; gap: .2rem; list-style: none;
}
.navbar__links a {
  padding: .5rem .9rem; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text);
  transition: background .15s, color .15s;
}
.navbar__links a:hover { background: var(--blue-light); color: var(--navy); }
.navbar__links a.active { background: var(--blue-light); color: var(--navy); font-weight: 700; }

/* ===== CALL BUTTON ===== */
.navbar__call {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border: 2px solid transparent;
  border-radius: var(--radius); padding: .5rem 1rem;
  text-decoration: none; position: relative;
  box-shadow: 0 4px 15px rgba(26,43,143,.3);
  transition: transform .2s, box-shadow .2s;
}
.navbar__call:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,43,143,.45); }
.navbar__call-pulse {
  position: absolute; inset: 0; border-radius: var(--radius);
  border: 2px solid rgba(0,188,212,.6);
  animation: callPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes callPulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}
.navbar__call-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar__call-label { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.navbar__call-num   { font-size: .9rem; font-weight: 700; color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 60%, #2563eb 100%);
  padding: 6rem 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(0,188,212,.06);
  border-radius: 50%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .78rem; font-weight: 700;
  padding: .4rem .9rem; border-radius: 20px; margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__box {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px; padding: 2rem;
  width: 100%; max-width: 380px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.hero__box-stat { margin-bottom: 1.25rem; }
.hero__box-stat:last-child { margin-bottom: 0; }
.hero__box-val  { font-size: 1.9rem; font-weight: 800; color: #fff; font-family: var(--font-body); }
.hero__box-lbl  { font-size: .82rem; color: rgba(255,255,255,.65); }
.hero__box-bar  { height: 5px; background: rgba(255,255,255,.15); border-radius: 3px; margin-top: .5rem; overflow: hidden; }
.hero__box-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal), #60a5fa); }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--navy); padding: 2.5rem 0; }
.stats-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stats-strip__val { font-size: 2rem; font-weight: 800; color: var(--teal); font-family: var(--font-body); }
.stats-strip__lbl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* ===== PLAN CARDS ===== */
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius2);
  padding: 2rem 1.75rem; text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.plan-card--featured { border-color: var(--navy); box-shadow: var(--shadow2); }
.plan-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .3rem .9rem; border-radius: 20px;
}
.plan-card__name  { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
.plan-card__speed { font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.plan-card__price { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; margin: .5rem 0; }
.plan-card__price sup { font-size: 1.1rem; vertical-align: super; }
.plan-card__price sub { font-size: .9rem; font-weight: 500; color: var(--grey); }
.plan-card__list  { list-style: none; margin: 1.25rem 0 1.75rem; text-align: left; }
.plan-card__list li {
  padding: .45rem 0; font-size: .88rem; color: var(--grey);
  border-bottom: 1px solid var(--border); display: flex; gap: .5rem; align-items: center;
}
.plan-card__list li:last-child { border-bottom: none; }
.plan-card__list li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color: #fff; padding: 4rem 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  font-size: .82rem; margin-bottom: 1rem; color: rgba(255,255,255,.55);
}
.breadcrumb a { color: var(--teal); }

/* ===== ABOUT ===== */
.value-card {
  border-left: 3px solid var(--teal); padding: 1.25rem 1.5rem;
  background: var(--white); border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow);
}
.value-card h3 { margin-bottom: .4rem; }

/* ===== SERVICES ===== */
.service-item {
  display: flex; gap: 1.5rem; padding: 1.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); margin-bottom: 1.25rem;
  transition: box-shadow .2s, border-color .2s;
}
.service-item:hover { box-shadow: var(--shadow2); border-color: rgba(0,188,212,.3); }
.service-item__icon {
  width: 56px; height: 56px;
  background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.service-item h3 { margin-bottom: .4rem; }

/* ===== TAG ===== */
.tag {
  display: inline-block;
  background: var(--blue-light); color: var(--navy);
  font-size: .75rem; font-weight: 600;
  padding: .2rem .65rem; border-radius: 20px;
  margin-right: .3rem; margin-bottom: .3rem;
}

/* ===== CONTACT ===== */
.contact-info__item  { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-info__icon  {
  width: 46px; height: 46px; background: var(--blue-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-info__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--teal); }
.contact-info__val   { font-weight: 600; color: var(--text); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .95rem;
  font-family: var(--font-body); color: var(--text);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ===== PLAN TABLE ===== */
.plan-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 2rem; }
.plan-table th { background: var(--navy); color: #fff; padding: 1rem 1.25rem; text-align: center; font-size: .88rem; font-weight: 700; }
.plan-table th:first-child { text-align: left; }
.plan-table td { padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border); text-align: center; font-size: .93rem; color: var(--grey); }
.plan-table td:first-child { text-align: left; font-weight: 700; color: var(--navy); font-size: 1rem; }
.plan-table tr:last-child td { border-bottom: none; }
.plan-table tr:hover td { background: var(--blue-light); }
.plan-table .price-main { font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.plan-table .price-sub  { font-size: .75rem; color: var(--grey); display: block; margin-top: .15rem; }
.plan-table .badge-pop  { background: var(--navy); color: #fff; font-size: .68rem; font-weight: 700; padding: .2rem .55rem; border-radius: 10px; vertical-align: middle; margin-left: .4rem; }

/* ===== OFFER BOX ===== */
.offer-box {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  border-radius: 16px; padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.offer-box h3 { color: #fff; margin-bottom: .4rem; }
.offer-box p  { color: rgba(255,255,255,.75); margin: 0; }
.offer-icon   { font-size: 2.5rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  padding: 5rem 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; }

/* ===== TABS ===== */
.tabs { display: flex; gap: .5rem; margin-bottom: 2rem; }
.plan-tab {
  padding: .6rem 1.4rem; border-radius: 8px;
  border: 2px solid var(--navy); font-weight: 600; font-size: .88rem;
  cursor: pointer; background: transparent; color: var(--navy); transition: .15s;
}
.plan-tab.active { background: var(--navy); color: var(--white); }

/* ===== FOOTER ===== */
.footer { background: var(--navy2); padding: 4rem 0 1.5rem; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer__logo { color: #fff; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; display: block; }
.footer h4    { color: #fff; font-size: .9rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.footer ul    { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a  { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .15s; }
.footer ul a:hover { color: var(--teal); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__social { display: flex; gap: .6rem; }
.footer__social a {
  width: 34px; height: 34px; background: rgba(255,255,255,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 700; transition: all .15s;
}
.footer__social a:hover { background: var(--teal); color: var(--white); }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .navbar__links { display: none; }
  .navbar__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1rem; gap: .25rem;
  }
  .hamburger { display: flex; }
  .hero { padding: 3.5rem 0; }
  .hero__visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .offer-box { flex-direction: column; }
}