:root {
      --bg: #f5f8fc;
      --surface: #ffffff;
      --text: #172033;
      --muted: #5f6b84;
      --primary: #18337a;
      --primary-strong: #12285f;
      --secondary: #1979c7;
      --secondary-soft: #e9f4fd;
      --line: #dce7f4;
      --shadow: 0 18px 45px rgba(24, 51, 122, 0.10);
      --radius: 24px;
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin-inline: auto;
    }

    .topbar {
      background: linear-gradient(90deg, var(--primary-strong), var(--primary));
      color: #fff;
      font-size: 0.95rem;
    }

    .topbar-inner {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 0;
    }

    .topbar-text {
      flex: 1;
      text-align: center;
      font-weight: 600;
    }

    .topbar-links {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .pill-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.16);
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 800;
      transition: .2s ease;
      white-space: nowrap;
    }

    .pill-link:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.16);
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(24, 51, 122, 0.08);
    }

    .header-inner {
      min-height: 86px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 1.75rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .brand-logo {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(24, 51, 122, 0.10);
      box-shadow: 0 8px 20px rgba(24, 51, 122, 0.10);
    }

    .brand .light {
      color: var(--secondary);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .nav a {
      color: #51607a;
      font-weight: 800;
      transition: .2s ease;
      text-align: center;
    }

    .nav a:hover {
      color: var(--primary);
    }

    .header-cta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 16px;
      padding: 15px 24px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: .22s ease;
      cursor: pointer;
      text-align: center;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: white;
      box-shadow: 0 16px 28px rgba(25, 121, 199, 0.24);
    }

    .btn-primary:hover {
      filter: brightness(0.97);
    }

    .btn-secondary {
      background: #fff;
      border-color: var(--line);
      color: var(--text);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 144px);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background:
        linear-gradient(rgba(10, 18, 35, 0.62), rgba(10, 18, 35, 0.64)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=80') center/cover;
      color: white;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(25,121,199,0.10), transparent 52%);
    }

    .hero .container {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
    }

    .hero-content {
      text-align: center;
      max-width: 920px;
      padding: 84px 0;
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 11px 20px;
      border-radius: 999px;
      font-weight: 700;
      margin-bottom: 24px;
      backdrop-filter: blur(8px);
    }

    h1 {
      font-size: clamp(2.7rem, 7vw, 5.7rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      margin-bottom: 22px;
      font-family: Georgia, 'Times New Roman', serif;
    }

    h1 .highlight {
      color: #49d2ff;
    }

    .hero p {
      max-width: 760px;
      margin: 0 auto 30px;
      font-size: clamp(1.05rem, 2vw, 1.45rem);
      color: rgba(255,255,255,0.90);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .hero-features {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      list-style: none;
    }

    .hero-features li {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.14);
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 700;
      backdrop-filter: blur(8px);
    }

    section {
      padding: 92px 0;
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 46px;
    }

    .section-head span {
      color: var(--secondary);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.88rem;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4.6vw, 3.5rem);
      line-height: 1.02;
      margin: 10px 0 14px;
      letter-spacing: -0.03em;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.06rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .card .icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(25,121,199,0.14), rgba(24,51,122,0.10));
      color: var(--primary);
      font-size: 1.45rem;
      margin-bottom: 18px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 1.16rem;
    }

    .card p {
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: stretch;
    }

    .about-box {
      background: linear-gradient(145deg, #ffffff, #f1f7fd);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 36px;
      box-shadow: var(--shadow);
    }

    .about-box h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.05;
      margin-bottom: 18px;
      letter-spacing: -0.03em;
    }

    .about-box p {
      color: var(--muted);
      margin-bottom: 18px;
      font-size: 1.02rem;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .check-list li {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 14px 16px;
      font-weight: 700;
    }

    .info-panel {
      background: linear-gradient(160deg, var(--primary-strong), var(--primary));
      color: white;
      border-radius: 28px;
      padding: 36px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .info-panel h3 {
      font-size: 1.75rem;
      margin-bottom: 16px;
    }

    .info-panel p,
    .info-panel li {
      color: rgba(255,255,255,0.86);
    }

    .info-panel ul {
      list-style: none;
      display: grid;
      gap: 14px;
      margin: 20px 0 28px;
    }

    .areas {
      background: #ffffff;
    }

    .badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .badge {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(24, 51, 122, 0.05);
    }

    .quality-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .cta {
      background: linear-gradient(135deg, var(--primary-strong), var(--primary));
      color: white;
    }

    .cta-box {
      text-align: center;
      max-width: 850px;
      margin: 0 auto;
    }

    .cta-box h2 {
      font-size: clamp(2rem, 5vw, 3.8rem);
      line-height: 1.02;
      margin-bottom: 16px;
      letter-spacing: -0.03em;
    }

    .cta-box p {
      color: rgba(255,255,255,0.84);
      font-size: 1.08rem;
      margin-bottom: 24px;
    }

    .footer {
      background: #0d1730;
      color: rgba(255,255,255,0.82);
      padding: 28px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .float-contact {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 35;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-contact a {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      box-shadow: 0 16px 30px rgba(0,0,0,0.20);
      font-size: 1.45rem;
      font-weight: 900;
    }

    .float-whats {
      background: #25d366;
    }

    .float-insta {
      background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    }

    .contact-inline {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .section-tag {
      color: var(--secondary);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.86rem;
    }

    @media (max-width: 1120px) {
      .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 18px 0;
      }

      .header-cta,
      .nav {
        justify-content: center;
      }

      .cards,
      .quality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .split {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 820px) {
      .topbar-inner,
      .footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }

      .topbar-text {
        text-align: center;
      }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 72px 0;
      }
    }

    .gallery-media img,
.gallery-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

    @media (max-width: 640px) {
      .container {
        width: min(calc(100% - 20px), var(--max));
      }

      .cards,
      .quality-grid {
        grid-template-columns: 1fr;
      }

      .nav {
        gap: 16px;
      }

      .btn,
      .pill-link {
        width: 100%;
      }

      .hero-actions,
      .contact-inline,
      .topbar-links {
        flex-direction: column;
        width: 100%;
      }

      section {
        padding: 72px 0;
      }

      .card,
      .about-box,
      .info-panel {
        padding: 24px;
      }

      .brand {
        font-size: 1.55rem;
      }

      .brand-logo {
        width: 40px;
        height: 40px;
      }

      .float-contact a {
        width: 56px;
        height: 56px;
      }
    }