
    /* Global Design Tokens */
    :root {
      /* Colors */
      --bg-color: #ffffff;
      --text-main: #ffffff;
      --text-muted: #ffffff;
      --overlay-color: rgba(0, 0, 0, 0.65);
      
      /* Button Theme */
      --btn-bg: rgba(255, 255, 255, 0.15);
      --btn-border: rgba(255, 255, 255, 0.3);
      --btn-hover-bg: #ffffff;
      --btn-hover-text: #000000;

      /* Typography */
      --font-main: 'Inter', sans-serif;
      --font-logo: 'Google Sans Flex', sans-serif;

      /* Layout & Spacing */
      --navbar-max-width: 1200px;
      --hero-content-max-width: 1200px;
      --border-radius-btn: 6px;
    }

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-color);
}
.sections {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

    /* Hero Container */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      padding: 2rem 4rem;
    }

    /* Background Video & Dark Overlay */
    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-color);
      z-index: 2;
    }

    /* Navigation Bar */
    .navbar {
      position: relative;
      z-index: 3;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: var(--navbar-max-width);
      margin: 0 auto;
    }

    .logo {
      font-family: var(--font-logo);
      font-size: 2.75rem;
      font-weight: 900;
      letter-spacing: -2px;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--text-main);
    }

    .btn-touch {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
      background-color: var(--btn-bg);
      border: 1px solid var(--btn-border);
      border-radius: var(--border-radius-btn);
      text-decoration: none;
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }

    .btn-touch:hover {
      background-color: var(--btn-hover-bg);
      color: var(--btn-hover-text);
    }

    /* Hero Content */
    .hero-content {
      position: relative;
      z-index: 3;
      max-width: var(--hero-content-max-width);
      margin: auto auto;
      text-align: center;
    }

    .hero-title {
      font-size: clamp(3.5rem, 8vw, 9.5rem);
      font-weight: 900;
      line-height: 1.02;
      text-transform: uppercase;
      letter-spacing: -0.04em;
      margin-bottom: 1.5rem;
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 720px;
      margin: 0 auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero {
        padding: 1.5rem 1.25rem;
      }
    }

/* Content Section Styles (Light Theme & Wide Image) */
    .content-section {
      width: 100%;
      padding: 7rem 2rem;
      background-color: #ffffff;
      color: #111111;
      display: flex;
      justify-content: center;
    }

    .content-layout {
      max-width: var(--hero-content-max-width);
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1.2fr; /* Gives the image column extra width */
      gap: 2rem;
      align-items: center;
    }

    .content-visual {
      width: 100%;
    }

    .content-visual img {
      height: auto;
      display: block;
      margin: 0 auto;
      filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
    }

    .content-copy {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .content-copy p {
      font-size: 1.2rem;
      color: #4b5563;
      line-height: 1.7;
      font-weight: 400;
    }

    .content-copy p strong {
      color: #111827;
      font-weight: 700;
    }

.content-copy .final {
    margin-top: 1rem;
    padding-top: 1.75rem;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    text-align: center;
}

    .content-copy .final strong {
      color: #111827;
      font-weight: 800;
    }

    @media (max-width: 968px) {
      .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .content-copy .final {
        font-size: 1.25rem;
      }
    }

    @media (max-width: 768px) {
      .content-section {
        padding: 4rem 1.5rem;
      }
    }
  
/* Pricing Section (Light Theme) */
    .pricing-section {
      width: 100%;
      padding: 5rem 2rem 8rem;
      background-color: #ffffff;
      color: #111827;
      display: flex;
      justify-content: center;
    }

    .pricing-container {
      max-width: var(--hero-content-max-width);
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3.5rem;
    }

    .pricing-heading h2 {
      font-size: clamp(2.25rem, 4vw, 3.25rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #111827;
      text-align: center;
    }

    /* Price Cards Grid */
    .price-plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
      width: 100%;
    }

    .price-plan {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 2rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .price-plan:hover {
      border-color: #111827;
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    }

    .price-plan:nth-child(2) {
      background: #ffffff;
      border-color: #111827;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .price-plan-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 0.5rem;
    }

    .price-plan-count {
      font-size: 1rem;
      color: #4b5563;
      font-weight: 500;
    }

    .price-plan-price {
      font-size: 2.5rem;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.02em;
    }

    /* CTA Button */
    .pricing-contact-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1rem 2.25rem;
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: #111827;
      border: none;
      border-radius: var(--border-radius-btn);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .pricing-contact-button:hover {
      background-color: #1f2937;
      transform: translateY(-2px);
    }

    .btn-icon {
      width: 1.25rem;
      height: 1.25rem;
    }

    /* Modal Backdrop Overlay & Box */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .modal-overlay[hidden] {
      display: none !important;
    }

    .order-form {
      position: relative;
      width: 100%;
      max-width: 520px;
      background-color: #ffffff;
      border-radius: 16px;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      color: #111827;
    }

    .order-form-close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: transparent;
      border: none;
      color: #6b7280;
      font-size: 1.75rem;
      cursor: pointer;
      line-height: 1;
    }

    .order-form-close:hover {
      color: #111827;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-field span {
      font-size: 0.9rem;
      font-weight: 600;
      color: #374151;
    }

    .form-field input[type="text"],
    .form-field input[type="tel"],
    .form-field select {
      width: 100%;
      padding: 0.85rem 1rem;
      background-color: #f9fafb;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      color: #111827;
      font-size: 1rem;
      font-family: inherit;
      outline: none;
    }

    .form-field input:focus,
    .form-field select:focus {
      border-color: #111827;
      background-color: #ffffff;
    }

    .app-options {
      border: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .app-options legend {
      font-size: 0.9rem;
      font-weight: 600;
      color: #374151;
      margin-bottom: 0.5rem;
    }

    .app-options label {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      cursor: pointer;
      color: #111827;
    }

    .app-options input[type="checkbox"] {
      width: 1.1rem;
      height: 1.1rem;
      accent-color: #111827;
      cursor: pointer;
    }

    .contact-fields {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .btn-submit-order {
      width: 100%;
      padding: 1rem;
      background-color: #111827;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: 0.5rem;
    }

    .btn-submit-order:hover {
      background-color: #1f2937;
    }

    .order-success {
      color: #059669;
      font-size: 0.95rem;
      text-align: center;
    }

    .order-error {
      color: #dc2626;
      font-size: 0.95rem;
      text-align: center;
    }

    @media (max-width: 968px) {
      .price-plans {
        grid-template-columns: 1fr;
      }
      .contact-fields {
        grid-template-columns: 1fr;
      }
    }

/* FAQ Section Styles (Light Theme) */
    .faq-section {
      width: 100%;
      padding: 6rem 2rem 8rem;
      background-color: #ffffff;
      color: #111827;
      display: flex;
      justify-content: center;
      border-top: 1px solid #f3f4f6;
    }

    .faq-container {
      max-width: var(--hero-content-max-width);
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 4rem;
    }

    .faq-header {
      text-align: center;
    }

    .faq-header h2 {
      font-size: clamp(2.25rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #111827;
      margin-bottom: 0.75rem;
    }

    .faq-header p {
      font-size: 1.15rem;
      color: #4b5563;
    }

    /* Safety Feature Section */
    .faq-safety-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .faq-safety-wrapper h3 {
      font-size: 1.75rem;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.02em;
      text-align: center;
    }

    /* Horizontal Cards Grid (2x2) */
    .safety-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

.safety-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    transition: all 0.2s ease;
}

    .safety-card:hover {
      border-color: #d1d5db;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    }

    .safety-card-icon {
      width: 2.5rem;
      height: 2.5rem;
      flex-shrink: 0;
      background-color: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
    }

    .safety-card-icon svg {
      width: 5.25rem;
      height: 5.25rem;
    }

    .safety-card-body {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .safety-card-body strong {
      font-size: 1.05rem;
      font-weight: 700;
      color: #111827;
    }

    .safety-card-body p {
      font-size: 0.95rem;
      color: #4b5563;
      line-height: 1.5;
    }

    .safety-summary {
      font-size: 1.1rem;
      font-weight: 700;
      color: #111827;
      text-align: center;
      padding-top: 1.5rem;
      border-top: 1px solid #e5e7eb;
    }

    /* Bottom FAQ Grid */
    .faq-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem 3.5rem;
    }

    .faq-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .faq-item h4 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #111827;
      letter-spacing: -0.01em;
    }

    .faq-item p {
      font-size: 1.05rem;
      color: #4b5563;
      line-height: 1.6;
    }

    .faq-item p strong {
      color: #111827;
    }

    @media (max-width: 868px) {
      .safety-cards-grid,
      .faq-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .faq-section {
        padding: 4rem 1.5rem 6rem;
      }
    }

    /* Skyline Container */
    .skyline {
      width: 100%;
      background-color: #ffffff;
      line-height: 0;
      display: flex;
      justify-content: flex-end;
      overflow: hidden;
    }

    .skyline-image {
      max-width: 100%;
      height: auto;
      display: block;
      /* Masking top edge so it stays white while the image bottom blends into the footer */
      margin-left: auto;
    }

    /* Footer Section */
    .footer-section {
      width: 100%;
      background-color: #15191c;
      color: #ffffff;
      padding: 3rem 2rem 3rem;
      display: flex;
      justify-content: center;
    }

    .footer-content {
      max-width: var(--hero-content-max-width);
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .footer-top {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .footer-logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #ffffff;
    }


    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: center;
      text-align: center;
    }

    .footer-bottom .subtext {
      font-size: 0.9rem;
      color: #fafafa;
    }

    @media (max-width: 640px) {
      .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
      }
    }
 