:root {
  /* Colors */
  --white: #ffffff;
  --white-light: #f5f5f5;
  --white-gray: #e5e7eb;
  --black: #111827;

  /* Typography (rem-based) */
  --text: 1.2rem;
  --text-sm: 1.1rem;
  --fs-base: 1rem; /* 16px */
  --fs-hero-kicker: 2.75rem; /* 44px */
  --fs-hero-title: 4rem; /* 64px */
  --fs-hero-strap: 1.375rem; /* 22px */
  --fs-btn-lg: 1.375rem; /* 22px */
  --fs-benefits-title: 2.75rem; /* 44px */
  --fs-benefit-heading: 1.25rem; /* 20px */

  /* Layout */
  --maxw: 1150px;
  --radius-md: 1rem; /* 16px */
  --radius-lg: 1.5rem; /* 24px */
  --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--white-gray);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

html {
  font-size: 14px;
}

body {
  font-size: var(--fs-base);
}

@media screen and (min-width: 1350px) {
  :root {
    --maxw: 1300px;
  }

  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 1650px) {
  :root {
    --maxw: 1430px;
  }

  html {
    font-size: 19px;
  }
}

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

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.section-heading {
  font-size: var(--fs-benefits-title);
  text-align: center;
  color: var(--black);
  margin: 0 0 28px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  color: #0b1220;
  padding: 20px 0;
  border-bottom: 1px solid var(--white-gray);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 64px; */
}

.logo {
  width: 30%;
  cursor: pointer;
}

.logo img {
  width: 320px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 45px;
  text-transform: uppercase;
  width: 70%;
}
.nav-links a {
  color: #0b1220;
  font-size: 1rem;
}
.nav-links a:hover {
  text-decoration: underline;
}
.nav-links a.active {
  font-weight: bold;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #0b1220;
  font-size: 24px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white-light);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--white-gray);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover {
  background: #0b152e;
}

/* Landing hero */
.hero-landing {
  position: relative;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  padding: 72px 0 60px;
}
.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
}
.hero-inner {
  position: relative;
}
.hero-kicker {
  color: var(--black);
  font-weight: 700;
  font-size: 2.7rem;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.hero-title {
  color: var(--black);
  font-weight: 700;
  font-size: var(--fs-hero-title);
  line-height: 1.1;
  margin: 0 0 10px;
}
.hero-title .break {
  display: block;
}

.hero-strap {
  color: var(--black);
  font-size: var(--fs-hero-strap);
  line-height: 1.6;
  max-width: 1100px;
  margin: 16px 0 32px;
}
.cta-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 28px;
  max-width: 720px;
}
.cta-card h3 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
}
.btn-call-lg {
  display: inline-block;
  background: #4b5563;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 28px;
  font-size: var(--fs-btn-lg);
  font-weight: 700;
}
.btn-call-lg:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero-kicker {
    font-size: 32px;
  }
  .hero-title,
  .hero-subtitle {
    font-size: 40px;
  }
  .hero-strap {
    font-size: 18px;
  }
  .cta-card {
    padding: 20px;
    border-radius: 18px;
  }
  .btn-call-lg {
    font-size: 18px;
    padding: 14px 20px;
    border-radius: 12px;
  }
}

/* Benefits section */
.benefits {
  padding: 40px 0 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.benefit-card {
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: var(--shadow-medium);
  padding: 18px 18px 22px;
}
.benefit-img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}
.benefit-heading {
  margin: 14px 0 8px;
  font-size: var(--fs-benefit-heading);
  text-align: center;
  color: var(--black);
}
.benefit-text {
  margin: 0;
  color: var(--black);
  font-size: var(--text);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .benefits-title {
    font-size: 32px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-heading {
    font-size: 24px;
  }
  .benefit-text {
    font-size: 16px;
  }
}

/* Detailed Benefits split section */
.benefits-detail {
  padding: 2.5rem 0 3.5rem;
}
.benefits-detail .detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.benefits-detail .detail-image {
  border-radius: 1.25rem;
  overflow: hidden;
}
.benefits-detail .detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
.benefits-detail h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 1rem;
}
.benefits-detail p.lead {
  color: var(--black);
  font-size: 1.2rem;
  margin: 0 0 1rem;
}
.benefits-list {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.25rem;
  color: var(--black);
}
.benefits-list li {
  font-size: var(--text-sm);
  margin-bottom: 1rem;
}
.benefits-list strong {
  font-weight: 700;
}

.btn-pill {
  display: inline-block;
  background: #4b5563;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
}
.btn-pill:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

@media (max-width: 980px) {
  .benefits-detail .detail-grid {
    grid-template-columns: 1fr;
  }
}

/* How Starlink Works section */
.works-section {
  padding: 2.5rem 0 3.5rem;
}
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.works-copy h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin: 0 0 1rem;
}
.works-copy ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--black);
}
.works-copy li {
  margin-bottom: 1.25rem;
  font-size: var(--text-sm);
}
.works-copy li strong {
  font-weight: 700;
}

.works-image {
  border-radius: 1.25rem;
  overflow: hidden;
}
.works-image img {
  width: 100%;
  height: auto;
  display: block;
}

.works-cta {
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}

/* About Us section */
.about-section {
  padding: 2.5rem 0 2rem;
  text-align: center;
}
.about-section h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin: 0 0 1rem;
}
.about-section p {
  color: var(--black);
  font-size: 1.125rem;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
}
.about-cta {
  margin-top: 0.5rem;
}

/* Get Started CTA band */
.get-started {
  background: #6b7280;
  color: #fff;
  padding: 2.5rem 0 3rem;
  text-align: center;
}
.get-started h3 {
  font-size: 2.75rem;
  margin: 0 0 0.75rem;
}
.get-started p {
  margin: 0 0 1.5rem;
  font-size: 2rem;
}
.btn-pill.dark {
  background: var(--black);
}

/* Pricing section */
.pricing {
  padding: 3rem 0 4rem;
}
.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-title {
  font-size: 2.5rem;
  color: var(--black);
  margin: 0 0 0.5rem;
}
.pricing-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  margin: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--white-gray);
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.plan-head {
  height: 9rem;
  padding: 1.25rem 1rem 1rem;
  border-bottom: 1px solid var(--white-gray);
  text-align: center;
}
.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}
.plan-price {
  font-size: 1.25rem;
  color: #4b5563;
  margin: 0.25rem 0 0;
}

.plan-body {
  padding: 1rem 1.25rem;
  color: var(--black);
}
.plan-body p {
  margin: 0 0 0.5rem;
}
.plan-body p strong {
  font-weight: 700;
}
.plan-cta {
  padding: 1rem 1.25rem 1.25rem;
  margin-top: auto;
}
.plan-cta .btn-pill {
  width: 100%;
  text-align: center;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-title {
    font-size: 2rem;
  }
}

/* Final CTA band */
.final-cta {
  background: #4b5563;
  color: #fff;
  text-align: center;
  padding: 3rem 0 4rem;
}
.final-cta h2 {
  font-size: 3rem;
  margin: 0 0 0.75rem;
}
.final-cta p {
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
}
.final-cta .btn-pill.dark {
  background: #111827;
}

.site-footer {
  background: #4b5563;
  color: #fff;
  text-align: center;
  padding: 88px 16px 88px 16px;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .footer-nav {
  margin-bottom: 32px;
  padding:0 70px
}
.site-footer .footer-nav a {
  color: #fff;
  margin: 0 0 12px 0;
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 2.1;
}
@media (min-width: 600px) {
  .site-footer .footer-nav a {
    display: inline-block;
    margin: 0 18px 0 0;
  }
}
.site-footer .footer-contact {
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.site-footer .footer-logo {
  /* margin: 18px 0 10px 0; */
}
.site-footer .footer-logo img {
  height: 40px;
  margin-bottom: 8px;
}
.site-footer .footer-disclaimer {
  margin: 32px auto 18px auto;
  max-width: 900px;
}
.site-footer .footer-disclaimer h2 {
  font-size: 2rem;
  margin: 0 0 12px 0;
  font-weight: 700;
}
.site-footer .footer-disclaimer p {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}
.site-footer .footer-copyright {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.85;
}

/* Privacy Policy Section */
.policy-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 0 60px 0;
}
.policy-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0px;
  color: var(--black);
  /* text-align: center; */
}
.policy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 38px;
  color: #374151;
  /* text-align: center; */
}
.policy-section h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: #1f2937;
}
.policy-section p {
  margin-bottom: 16px;
  color: #222;
}
.policy-section ul {
  margin: 0 0 16px 24px;
  padding: 0 0 0 18px;
  color: #222;
}
.policy-section li {
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.policy-section a {
  color: black;
  word-break: break-all;
}
.policy-section a:hover {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .policy-section {
    padding: 22px 8px;
    font-size: 1rem;
  }
  .policy-section h1 {
    font-size: 2rem;
  }
  .policy-section h2 {
    font-size: 1.2rem;
  }
}

/* Contact Page Styles */
.contact-section {
  max-width: 900px;
  margin: 40px auto 60px auto;
  padding: 0 12px;
}
.contact-title {
  text-align: center;
  font-size: 2.2rem;
  color: #253142;
  margin-bottom: 10px;
}
.contact-intro {
  text-align: center;
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.contact-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-flex {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}
.contact-card {
  background: #f7f7f7;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 32px 22px 32px;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
}
.contact-card h2 {
  font-size: 1.4rem;
  color: #253142;
  margin-bottom: 12px;
}
.contact-card p {
  margin: 0 0 12px 0;
  color: #222;
  font-size: 1.05rem;
}
.contact-link {
  color: #e11d48;
  word-break: break-all;
}
.contact-link:hover {
  text-decoration: underline;
}
.contact-form {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 28px 32px 22px 32px;
  flex: 2 1 420px;
  min-width: 280px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form h2 {
  font-size: 1.3rem;
  color: #253142;
  margin-bottom: 16px;
}
.contact-form label {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
  font-size: 1rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #d1d5db;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 10px;
  background: #f9fafb;
  color: #222;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #2563eb;
  outline: none;
}
.btn-contact {
  background: #253142;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-contact:hover {
  background: #1e293b;
}
@media (max-width: 700px) {
  .contact-card, .contact-form {
    padding: 18px 8px 14px 8px;
  }
  .contact-section {
    padding: 0 2px;
  }
}

/* Mobile CTA Popup Styles */
.starlink-mbl-popup-overlay{
  display: none;
}

@media (max-width: 700px) {
  .starlink-mbl-popup-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.0); /* transparent, no dim */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .starlink-mbl-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
  }
  .starlink-mbl-popup-bar {
    width: 100vw;
    background: #000;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 24px 0 18px 0;
    letter-spacing: 1px;
  }
  .starlink-mbl-popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 0 0 0 0;
  }
  .starlink-mbl-popup-logo {
    margin-top: 32px;
    margin-bottom: 16px;
    width: 90vw;
    max-width: 340px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .starlink-mbl-popup-logo .starlink-logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #111;
    margin-right: 10px;
  }
  .starlink-mbl-popup-logo .starlink-logo-sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    letter-spacing: 0.1em;
    margin-left: 8px;
    margin-top: 18px;
  }
  .starlink-mbl-popup-headline {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #111;
    text-align: center;
    margin: 18px 0 10px 0;
  }
  .starlink-mbl-popup-btn {
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 18px 0;
    width: 90vw;
    max-width: 370px;
    margin: 18px 0 18px 0;
    text-align: center;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  }
  .starlink-mbl-popup-img {
    width: 90vw;
    max-width: 370px;
    margin: 18px 0 18px 0;
    display: block;
  }
}
