* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue-dark:   #003B6F;
  --blue-mid:    #0057A0;
  --blue-bright: #0076C6;
  --blue-light:  #E6F2FB;
  --white:       #FFFFFF;
  --off-white:   #F4F8FC;
  --cream:       #FAFAFA;
  --text-dark:   #001E3C;
  --text-mid:    #3A5470;
  --text-light:  #7A99B8;
  --accent:      #00AEEF;
}
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
.serif { font-family: 'Playfair Display', serif; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 48px; display: flex; justify-content: space-between; align-items: center;
  background: var(--blue-dark); border-bottom: 1px solid rgba(0,174,239,0.15);
}
.nav-logo img { height: 40px; display: block; }
.nav-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,174,239,0.12); border: 1px solid rgba(0,174,239,0.3);
  border-radius: 100px; padding: 6px 18px;
}
.nav-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.nav-pill-text { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; }

.hero {
  background: var(--blue-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative; overflow: hidden;
}

.hero-left {
  padding: 80px 52px 64px 48px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-start;
  border-right: 1px solid rgba(0,174,239,0.12);
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--accent); }
.hero-eyebrow-text { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.hero-left h1 em { font-style: italic; color: var(--accent); }
.hero-left-sub {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.55);
  font-weight: 300; margin-bottom: 32px; max-width: 420px;
}
.hero-left-proof {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px;
}
.hero-left-proof-item { display: flex; align-items: flex-start; gap: 12px; }
.hero-left-proof-icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(0,174,239,0.35);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.hero-left-proof-icon svg { width: 8px; height: 8px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-left-proof-text { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.5; }
.hero-left-proof-text strong { color: var(--white); font-weight: 500; }

.hero-right {
  padding: 80px 48px 64px 52px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-start;
  background: rgba(0,87,160,0.2);
}
.hero-right-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,174,239,0.12); border: 1px solid rgba(0,174,239,0.25);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 24px; align-self: flex-start;
}
.hero-right-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-right-tag-text { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.hero-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 14px;
}
.hero-right h2 em { font-style: italic; color: var(--accent); }
.hero-right-sub {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.55);
  font-weight: 300; margin-bottom: 28px; max-width: 420px;
}
.hero-right-services {
  display: flex; flex-direction: column; gap: 0; margin-bottom: 32px;
  border: 1px solid rgba(0,174,239,0.15); border-radius: 4px; overflow: hidden;
}
.hero-right-service {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(0,174,239,0.1);
  background: rgba(255,255,255,0.03); transition: background 0.2s;
  text-decoration: none;
}
.hero-right-service:last-child { border-bottom: none; }
.hero-right-service:hover { background: rgba(0,174,239,0.1); }
.hero-right-service-left { display: flex; align-items: center; gap: 14px; }
.hero-right-service-num { font-family: 'Playfair Display', serif; font-size: 13px; color: rgba(0,174,239,0.4); font-weight: 700; width: 20px; flex-shrink: 0; }
.hero-right-service-name { font-size: 14px; font-weight: 500; color: var(--white); }
.hero-right-service-outcome { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 300; }
.hero-right-service-arrow { font-size: 14px; color: rgba(0,174,239,0.5); transition: transform 0.2s, color 0.2s; }
.hero-right-service:hover .hero-right-service-arrow { transform: translateX(4px); color: var(--accent); }

.btn-accent {
  background: var(--accent); color: var(--white); border: none;
  padding: 16px 40px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s; align-self: flex-start;
}
.btn-accent:hover { background: #0097D1; transform: translateY(-2px); }
.btn-accent-outline {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 40px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s; align-self: flex-start;
}
.btn-accent-outline:hover { border-color: var(--accent); color: var(--accent); }

.strip { background: var(--blue-mid); padding: 40px 48px; }
.strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.strip-item { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }
.strip-item-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.strip-item-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

section { padding: 88px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-eyebrow-line { width: 32px; height: 1px; background: var(--accent); }
.section-eyebrow-text { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright); font-weight: 500; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--blue-dark); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; line-height: 1.8; color: var(--text-mid); max-width: 620px; font-weight: 300; }

.packages { background: var(--blue-light); }
.packages-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.packages-note {
  font-size: 13px; color: var(--text-mid); max-width: 260px; line-height: 1.7;
  font-weight: 300; background: var(--white); border: 1px solid rgba(0,59,111,0.1);
  border-radius: 4px; padding: 16px 20px;
}
.packages-note strong { color: var(--blue-dark); font-weight: 500; display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }

.package-card { background: var(--white); border: 1px solid rgba(0,59,111,0.12); border-radius: 4px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,59,111,0.15); }
.package-card.featured { border-color: var(--accent); border-width: 2px; }
.package-badge { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 5px 16px; border-radius: 0 0 4px 4px; white-space: nowrap; }
.package-header { background: var(--blue-dark); padding: 28px 20px 20px; text-align: center; }
.package-card.featured .package-header { background: var(--blue-mid); }
.package-header-logo { margin-bottom: 10px; }
.package-header-logo img { height: 24px; opacity: 0.8; }
.package-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 5px; margin-top: 8px; }
.package-tagline { font-size: 11px; color: var(--accent); letter-spacing: 0.05em; opacity: 0.9; }
.package-body { padding: 22px; }
.package-views { text-align: center; padding: 16px 0 20px; border-bottom: 1px solid rgba(0,59,111,0.08); margin-bottom: 20px; }
.package-views-number { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--blue-dark); line-height: 1; margin-bottom: 4px; }
.package-views-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.package-features { list-style: none; margin-bottom: 20px; }
.package-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-mid); margin-bottom: 9px; line-height: 1.5; }
.feature-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-bright); flex-shrink: 0; margin-top: 6px; }
.feature-highlight { background: rgba(0,174,239,0.08); border-left: 2px solid var(--accent); padding: 10px 14px; margin-bottom: 20px; }
.feature-highlight-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); font-weight: 500; margin-bottom: 4px; }
.feature-highlight-text { font-size: 12px; color: var(--text-mid); line-height: 1.5; }

.package-price { text-align: center; margin-bottom: 16px; }
.package-price-was { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-bottom: 4px; }
.package-price-amount { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--blue-dark); line-height: 1; }
.package-price-period { font-size: 12px; color: var(--text-light); margin-top: 3px; }
.package-price-note { font-size: 11px; color: var(--blue-bright); margin-top: 4px; font-weight: 500; }
.package-price-saving {
  display: inline-block; background: rgba(0,174,239,0.1);
  border: 1px solid rgba(0,174,239,0.25); border-radius: 100px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-bright); font-weight: 500;
  padding: 3px 10px; margin-top: 6px;
}

.btn-package { display: block; width: 100%; text-align: center; padding: 13px; background: var(--blue-dark); color: var(--white); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; text-decoration: none; font-family: 'DM Sans', sans-serif; }
.btn-package:hover { background: var(--blue-mid); }
.package-card.featured .btn-package { background: var(--accent); }
.package-card.featured .btn-package:hover { background: #0097D1; }
.package-opt-out { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 10px; }

.final-cta { background: var(--blue-dark); padding: 96px 48px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: rgba(0,118,198,0.1); pointer-events: none; }
.final-cta-inner { max-width: 660px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta-logo { margin-bottom: 36px; }
.final-cta-logo img { height: 48px; opacity: 0.95; }
.final-cta .section-eyebrow { justify-content: center; }
.final-cta .section-eyebrow-line { background: var(--accent); }
.final-cta .section-eyebrow-text { color: var(--accent); }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 50px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.final-cta h2 em { font-style: italic; color: var(--accent); }
.final-cta p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 40px; }

.btn-primary { background: var(--accent); color: var(--white); border: none; padding: 16px 44px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: #0097D1; transform: translateY(-1px); }

footer { background: #001A30; padding: 28px 48px; text-align: center; }
footer p { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }
footer a { color: rgba(255,255,255,0.35); text-decoration: none; margin: 0 8px; }
footer a:hover { color: var(--accent); }

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.new-products { background: var(--white); }
.new-products-header { max-width: 640px; margin-bottom: 56px; }
.new-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.np-card {
  border: 1px solid rgba(0,59,111,0.1); border-radius: 4px;
  padding: 36px 32px 32px; background: var(--off-white);
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--blue-bright);
}
.np-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,59,111,0.1); }

.np-card-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(0,118,198,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--blue-bright); flex-shrink: 0;
}
.np-card-icon svg { width: 16px; height: 16px; }

.np-card-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-bright); font-weight: 500; margin-bottom: 10px; }
.np-card-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--blue-dark); line-height: 1.2; margin-bottom: 8px; }
.np-card-hook { font-size: 15px; font-weight: 500; color: var(--blue-bright); margin-bottom: 16px; }
.np-card-body { font-size: 14px; line-height: 1.75; color: var(--text-mid); font-weight: 300; margin-bottom: 24px; flex: 1; }

.np-card-outcome { background: var(--blue-light); border-radius: 2px; padding: 14px 16px; margin-bottom: 24px; }
.np-card-outcome-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); font-weight: 500; margin-bottom: 5px; }
.np-card-outcome-text { font-size: 13px; color: var(--text-dark); line-height: 1.6; font-weight: 400; }

.np-card-cta { font-size: 13px; color: var(--text-mid); line-height: 1.65; font-style: italic; font-weight: 300; margin-bottom: 20px; display: block; font-family: 'Playfair Display', serif; }

.np-card-btn {
  display: inline-block; text-align: center; align-self: flex-start;
  padding: 12px 28px; background: transparent;
  color: var(--blue-bright); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  border: 1px solid rgba(0,118,198,0.35); border-radius: 2px;
  cursor: pointer; text-decoration: none; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.np-card-btn:hover { background: var(--blue-bright); color: var(--white); border-color: var(--blue-bright); }

@media (max-width: 960px) {
  nav { padding: 14px 24px; }
  section { padding: 64px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 48px; border-right: none; border-bottom: 1px solid rgba(0,174,239,0.12); }
  .hero-right { padding: 48px 24px 56px; }
  .hero-right-sub { max-width: 100%; }
  .strip { padding: 32px 24px; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .strip-item { padding: 0; border-right: none; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .new-products-grid { grid-template-columns: 1fr; }
  .new-products-header { margin-bottom: 36px; }
  .final-cta { padding: 72px 24px; }
}
@media (max-width: 560px) {
  nav { padding: 12px 16px; }
  .hero-left { padding: 90px 16px 40px; }
  .hero-right { padding: 40px 16px 48px; }
  .hero-right-services .hero-right-service { padding: 14px 16px; }
  .hero-right-service-name { font-size: 13px; }
  .strip-inner { grid-template-columns: 1fr; gap: 20px; }
  .packages-grid { grid-template-columns: 1fr; }
  .btn-accent, .btn-accent-outline { width: 100%; text-align: center; display: block; }
  section { padding: 48px 16px; }
  .packages-header { flex-direction: column; align-items: flex-start; }
}
