 :root {
      --navy: #102040;
      --navy-light: #1a2d5c;
      --gold: #f5b304;
      --gold-light: #ffcf4b;
      --paper: #faf8f4;
      --text: #1a2035;
      --muted: #5a6378;
      --border: #e5e9f2;
      --shadow: 0 20px 40px rgba(16, 32, 64, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--paper);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Decorative floating background shapes */
    .bg-shapes {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.25;
      animation: float 8s ease-in-out infinite;
    }

    .shape-1 {
      width: 180px;
      height: 180px;
      background: var(--gold);
      left: -40px;
      top: 10%;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 120px;
      height: 120px;
      background: var(--navy);
      right: 10%;
      top: 15%;
      animation-delay: 2s;
      border-radius: 30%;
    }

    .shape-3 {
      width: 80px;
      height: 80px;
      background: var(--gold);
      left: 15%;
      bottom: 20%;
      animation-delay: 4s;
    }

    .shape-4 {
      width: 200px;
      height: 200px;
      background: var(--navy);
      right: -50px;
      bottom: 10%;
      animation-delay: 1s;
      opacity: 0.12;
    }

    .shape-5 {
      width: 40px;
      height: 40px;
      background: var(--gold);
      left: 50%;
      top: 8%;
      animation-delay: 3s;
      transform: rotate(45deg);
      border-radius: 8px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-25px) rotate(8deg); }
    }

    .container {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--navy);
    }

    .brand-icon {
      width: 40px;
      height: 40px;
      background: var(--navy);
      color: #fff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .contact-link:hover {
      color: var(--navy);
    }

    .contact-link svg {
      width: 18px;
      height: 18px;
    }

    main {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 40px 0;
    }

    .content {
      max-width: 560px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 179, 4, 0.12);
      color: var(--navy);
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 24px;
      border: 1px solid rgba(245, 179, 4, 0.3);
    }

    .badge svg {
      width: 16px;
      height: 16px;
    }

    h1 {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--navy);
    }

    h1 .highlight {
      color: var(--gold);
    }

    .subtitle {
      font-size: 1.15rem;
      color: var(--muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 36px;
    }

    .feature {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px;
      box-shadow: 0 4px 12px rgba(16, 32, 64, 0.04);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .feature:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      background: rgba(245, 179, 4, 0.15);
      color: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      font-size: 1.1rem;
      font-weight: 700;
    }

    .feature-title {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 4px;
      color: var(--navy);
    }

    .feature-desc {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .contact-box {
      background: var(--navy);
      color: #fff;
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      box-shadow: var(--shadow);
    }

    .contact-box h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .contact-box a {
      color: var(--gold-light);
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: opacity 0.2s;
    }

    .contact-box a:hover {
      opacity: 0.85;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 4px;
    }

    .social {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }

    .social:hover {
      background: var(--gold);
      transform: translateY(-2px);
    }

    .social svg {
      width: 18px;
      height: 18px;
    }

    .illustration {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .illustration::before {
      content: '';
      position: absolute;
      width: 85%;
      height: 85%;
      background: linear-gradient(135deg, rgba(245, 179, 4, 0.12) 0%, rgba(16, 32, 64, 0.06) 100%);
      border-radius: 30px;
      z-index: 0;
    }

    .illustration img {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 480px;
      height: auto;
      border-radius: 20px;
      filter: drop-shadow(0 20px 40px rgba(16, 32, 64, 0.12));
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 24px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-tagline {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
    }

    @media (max-width: 900px) {
      main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .content {
        max-width: 100%;
      }

      h1 {
        font-size: 2.4rem;
      }

      .features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .contact-box {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .illustration img {
        max-width: 360px;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 2rem;
      }

      .features {
        grid-template-columns: 1fr;
      }

      .contact-link span {
        display: none;
      }
    }