:root {
  --deep-blue: #0a3d62;
  --ocean-blue: #1e88e5;
  --sky-blue: #64b5f6;
  --light-blue: #e3f2fd;
  --white: #ffffff;
  --sand: #fdfbf7;
  --text-dark: #102a43;
  --text-muted: #5b7185;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-blue);
  box-shadow: 0 2px 12px rgba(10,61,98,0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrap img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep-blue);
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom: 2px solid var(--ocean-blue);
  color: var(--ocean-blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 30px;
  border: none !important;
  font-size: 13px;
}

.nav-cta:hover {
  border-bottom: none !important;
  color: var(--white) !important;
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--deep-blue);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(10,61,98,0.55), rgba(10,61,98,0.75)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding: 100px 24px 80px;
}

.hero.short { min-height: 40vh; }
.hero.medium { min-height: 50vh; }

.hero-content { max-width: 760px; }

.hero .eyebrow {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sky-blue);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
  color: var(--white);
  padding: 16px 42px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  box-shadow: 0 10px 30px rgba(30,136,229,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(30,136,229,0.45); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--ocean-blue);
  padding: 14px 38px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover { background: var(--ocean-blue); color: var(--white); }

/* SECTIONS */
section { padding: 90px 24px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.center { text-align: center; }

.section-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocean-blue);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 18px;
  color: var(--deep-blue);
}

.section-title em { font-style: italic; color: var(--ocean-blue); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
}

.alt-bg { background: var(--light-blue); }

.gradient-bg {
  background: linear-gradient(135deg, var(--deep-blue), var(--ocean-blue));
  color: var(--white);
}

.gradient-bg .section-title { color: var(--white); }
.gradient-bg .section-sub { color: rgba(255,255,255,0.85); }

/* GRID CARDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 0 8px 30px rgba(10,61,98,0.08);
  border: 1px solid var(--light-blue);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,61,98,0.14); }

.card h3 {
  color: var(--deep-blue);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.card p { color: var(--text-muted); font-size: 0.98rem; }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 18px;
}

/* CHECK LIST */
.checklist { list-style: none; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-dark);
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ocean-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: 18px;
  padding: 44px 30px;
  text-align: center;
  box-shadow: 0 10px 36px rgba(10,61,98,0.1);
  border: 2px solid var(--light-blue);
}

.price-card h4 {
  color: var(--ocean-blue);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-card .amount {
  font-size: 2.4rem;
  color: var(--deep-blue);
  font-family: Georgia, serif;
  margin-bottom: 6px;
}

.price-card .currencies {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* WHO IS THIS FOR */
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.audience-item {
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-blue));
  color: var(--white);
  padding: 28px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(10,61,98,0.18);
}

/* QUOTE BLOCK */
.quote-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--deep-blue);
  line-height: 1.7;
}

.quote-block .mark { color: var(--sky-blue); font-size: 4rem; line-height: 0; display: block; margin-bottom: -10px; }

/* FOOTER */
footer {
  background: var(--deep-blue);
  color: rgba(255,255,255,0.85);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-col a:hover { color: var(--sky-blue); }

.footer-logo img { height: 56px; margin-bottom: 14px; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* CONTACT FORM */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(10,61,98,0.1);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--light-blue);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--sand);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean-blue);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* CONTACT INFO CARDS */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--deep-blue);
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p, .legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.legal-content ul { padding-left: 22px; margin-bottom: 16px; }

.legal-content .updated {
  font-size: 0.85rem;
  color: var(--ocean-blue);
  font-weight: 600;
  margin-bottom: 30px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .grid-2, .grid-3, .pricing-grid, .audience-list, .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid var(--light-blue);
    box-shadow: 0 10px 20px rgba(10,61,98,0.08);
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }

  .nav-cta { margin-top: 4px; }

  section { padding: 60px 20px; }
}
