@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #0D9488;
  --accent: #F97316;
  --bg-light: #F8FAFC;
  --text: #1E293B;
  --text-light: #64748B;
  --border: #E2E8F0;
  --radius: 16px;
  --max-width: 1200px;
  --gap: 56px;
  --gap-mobile: 32px;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Playfair Display', 'Montserrat', serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--full {
  width: 100%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
}

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

.header__notice {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 6px 16px;
  border-radius: 20px;
}

.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  position: relative;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -120px;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
}

.hero__shape--3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 60%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 550px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
}

.hero__animated-line {
  display: flex;
  align-items: baseline;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
}

.hero__prefix {
  color: var(--primary);
  margin-right: 10px;
  font-size: 2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.hero__dynamic-wrapper {
  position: relative;
  display: inline-block;
  height: 1.4em;
  overflow: hidden;
}

.hero__dynamic-text {
  display: block;
  white-space: nowrap;
  animation: rotateText 12s infinite;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
}

.hero__dynamic-text:nth-child(1) { animation-delay: 0s; }
.hero__dynamic-text:nth-child(2) { animation-delay: 4s; }
.hero__dynamic-text:nth-child(3) { animation-delay: 8s; }

@keyframes rotateText {
  0%, 2% { opacity: 0; transform: translateY(10px); }
  4%, 32% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(-10px); }
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero__icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.hero__icon-item i {
  font-size: 1.4rem;
  color: var(--primary);
  width: 24px;
  text-align: center;
}

.hero__image img {
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
  object-fit: cover;
  width: 100%;
  height: auto;
}

.whats-new {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.whats-new__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: var(--text);
}

.whats-new__inner i {
  color: var(--primary);
  font-size: 1.3rem;
}

.whats-new__inner p {
  font-size: 0.95rem;
  margin: 0;
}

.whats-new__inner strong {
  font-weight: 700;
}

.features {
  padding: 80px 0 80px;
}

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

.feature-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.feature-card__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.5;
}

.coverage,
.always-on {
  padding: 80px 0 80px;
  background: #fff;
}

.coverage__grid,
.always-on__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.coverage__image img,
.always-on__image img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.coverage__content p,
.always-on__content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.content-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: 8px;
}

.content-badge {
  background: var(--bg-light);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.content-badge i {
  color: var(--primary);
  font-size: 1rem;
}

.coverage__content .btn,
.always-on__content .btn {
  margin-top: 8px;
}

.comparison {
  padding: 80px 0 80px;
  background: var(--bg-light);
}

.comparison__table {
  overflow-x: auto;
  margin-bottom: 16px;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.comparison th,
.comparison td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.comparison td i {
  color: var(--primary);
}

.comparison td i.fa-xmark {
  color: #CBD5E1;
}

.comparison__footnote {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonials {
  padding: 80px 0 80px;
  background: #fff;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0 40px;
}

.testimonial {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 3.2rem;
}

.testimonial__avatar i {
  line-height: 1;
}

.testimonial__stars {
  color: #F59E0B;
  margin-bottom: 12px;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.testimonials__cta {
  text-align: center;
}

.contact-faq {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
}

.contact-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.contact-form p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.form__group input:not([type="checkbox"]) {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form__group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form__group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form__group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.faq {
  padding-top: 8px;
}

.faq details {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq p {
  padding-top: 10px;
  color: var(--text-light);
  line-height: 1.5;
}

.footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 48px 0 32px;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.footer__brand .logo a {
  color: #fff;
  font-size: 1.5rem;
}

.footer__disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94A3B8;
}

.footer__info address {
  font-style: normal;
  line-height: 1.8;
  color: #CBD5E1;
  margin-bottom: 16px;
}

.footer__copyright {
  font-size: 0.9rem;
  color: #64748B;
  border-top: 1px solid #334155;
  padding-top: 16px;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.thanks-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  padding: 60px 0;
  word-break: break-word;
}

.thanks-page__content {
  text-align: center;
  background: #fff;
  padding: 56px 40px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  max-width: 600px;
  position: relative;
}

.thanks-page__logo {
  margin: 0 auto 28px;
  width: 50px;
  height: 50px;
}

.thanks-page h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.thanks-page__message {
  font-size: 1.15rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.thanks-page p:last-of-type {
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .hero__grid,
  .coverage__grid,
  .always-on__grid,
  .contact-faq__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__image {
    order: -1;
    text-align: center;
  }

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

  .features__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --gap: 24px;
  }

  .btn {
    padding: 12px 24px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.footer__legal a {
  color: #CBD5E1;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.9rem;
}

.footer__legal a:hover {
  color: #fff;
}

.legal-page {
  flex: 1;
  padding: 60px 0;
  background: var(--bg-light);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 20px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}
@media screen and (max-width:480px) {
  .header__notice {
    display: none;
  }
}
section {
  overflow: hidden;
}