
:root {
  --navy: #002E4A;
  --orange: #FFB21C;
  --cream: #F8F3E8;
  --cream-dark: #EEE5D4;
  --text: #17354A;
  --muted: #687785;
  --white: #FFFFFF;
  --border: #E7E2D8;
  --soft-orange: #FFF1CA;
  --shadow: 0 18px 45px rgba(0, 46, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 243, 232, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 46, 74, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  width: 190px;
  max-height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.main-nav a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 72px 0 76px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 178, 28, 0.20), transparent 26%),
    linear-gradient(135deg, #FFF9EF 0%, var(--cream) 48%, #F0E7D7 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 52px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft-orange);
  color: #C47A00;
  font-size: 12px;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.hero h1 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-description {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 46, 74, 0.22);
}

.button-primary:hover {
  background: #00416A;
}

.button-secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
}

.button-secondary:hover {
  background: var(--white);
}

.button-orange {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(255, 178, 28, 0.24);
}

.hero-small {
  margin-top: 18px;
  color: #7D8A94;
  font-size: 13px;
  max-width: 540px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 10%;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(2px);
  z-index: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* =========================
   SHARED SECTION STYLES
========================= */

.features,
.premium {
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 14px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading h2 span {
  color: var(--orange);
}

.section-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

/* =========================
   FEATURES
========================= */

.features {
  background: var(--navy);
}

.features .section-heading h2 {
  color: var(--white);
}

.features .section-heading p {
  color: #D2DEE6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--soft-orange);
  font-size: 26px;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================
   SHOWCASE
========================= */

.showcase {
  padding: 72px 0;
  background: var(--cream);
}

.showcase-image-wrapper {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.showcase-image {
  width: 100%;
  border-radius: 22px;
}

/* =========================
   PREMIUM
========================= */

.premium {
  background:
    linear-gradient(180deg, #FFF9EF 0%, #F8F3E8 100%);
}

.plans {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.plan-card {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(0, 46, 74, 0.08);
}

.featured-plan {
  border: 2px solid var(--orange);
  box-shadow: 0 20px 50px rgba(255, 178, 28, 0.14);
}

.plan-name,
.premium-badge {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--soft-orange);
  color: #C47A00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.plan-card h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 26px;
}

.plan-description {
  margin: 0 0 22px;
  color: var(--muted);
}

.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid #F1ECE3;
  color: var(--text);
  font-size: 15px;
}

.plan-card li:last-child {
  border-bottom: 0;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-orange);
  color: #C47A00;
  font-size: 12px;
  font-weight: 900;
}

/* =========================
   DOWNLOAD CTA
========================= */

.download {
  padding: 74px 0;
  background: var(--navy);
  color: var(--white);
}

.download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.download h2 {
  max-width: 680px;
  margin: 12px 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.download p {
  max-width: 620px;
  margin: 0;
  color: #D2DEE6;
  font-size: 17px;
}

.download .section-label {
  background: rgba(255, 178, 28, 0.16);
  color: var(--orange);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #001F32;
  color: var(--white);
}

.footer-inner {
  min-height: 180px;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  width: 170px;
  max-height: 68px;
  object-fit: contain;
}

.footer-brand p {
  margin: 10px 0 0;
  color: #B9C7D0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: #E3EDF3;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: #93A8B5;
  font-size: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description,
  .hero-small {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
  }

  .header-logo {
    width: 170px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-description {
    font-size: 16px;
  }

  .features,
  .premium {
    padding: 64px 0;
  }

  .feature-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .showcase {
    padding: 48px 0;
  }

  .showcase-image-wrapper {
    padding: 10px;
    border-radius: 22px;
  }

  .download {
    padding: 58px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .plan-card {
    padding: 24px 18px;
  }

  .section-heading h2 {
    font-size: 33px;
  }
}
