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

    :root {
      --navy: #0d161c;
      --blue: #234c60;
      --mid: #2d738e;
      --accent: #53a2be;
      --light: #f4f7f9;
      --white: #ffffff;
      --text: #0d161c;
      --muted: #5a7080;
      --border: #dce6ec;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

    h1, h2, h3, h4 { text-wrap: balance; }
    p { text-wrap: pretty; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 3rem; height: 72px;
      background: rgba(13,22,28,0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
    .nav-logo-text { font-family: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 800; color: white; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: white; }
    .nav-contact {
      color: white !important; background: var(--accent);
      padding: 0.5rem 1.25rem; border-radius: 3px;
    }
    .nav-contact:hover { background: var(--mid) !important; }

    /* HAMBURGER */
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
    }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* MOBILE NAV */
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 150;
      background: rgba(13,22,28,0.98);
      flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; transition: color 0.2s; }
    .mobile-nav a:hover { color: var(--accent); }
    .mobile-nav .mobile-contact { color: white; background: var(--accent); padding: 0.75rem 2.5rem; border-radius: 3px; }

    /* PAGE HERO */
    .page-hero {
      padding: 9rem 3rem 5rem;
      background: linear-gradient(to bottom, rgba(13,22,28,0.95) 0%, rgba(13,22,28,0.88) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
      position: relative;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(83,162,190,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(83,162,190,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
    }
    .page-hero-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
    .eyebrow { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
    .page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.25rem; }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 540px; }

    /* SERVICES GRID */
    .services-section { padding: 6rem 3rem; background: var(--light); }
    .services-inner { max-width: 1100px; margin: 0 auto; }

    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }

    .service-card {
      background: white; border-radius: 4px; padding: 2.25rem;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .service-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }

    .s-icon {
      width: 48px; height: 48px; background: rgba(83,162,190,0.1); border-radius: 8px;
      display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
    }
    .s-icon svg { width: 24px; height: 24px; stroke: var(--mid); fill: none; stroke-width: 1.8; }

    .service-card h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
    .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
    .service-card ul { margin-top: 0.85rem; padding-left: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
    .service-card ul li { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

    .click-hint {
      margin-top: 1rem; font-size: 0.75rem; color: var(--accent);
      font-weight: 600; letter-spacing: 0.5px; opacity: 0;
      transition: opacity 0.2s;
    }
    .service-card:hover .click-hint { opacity: 1; }

    /* MODAL */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 500;
      background: rgba(13,22,28,0.88); backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 2rem;
    }
    .modal-overlay.open { display: flex; }

    .modal {
      background: white; border-radius: 8px; overflow: hidden;
      max-width: 960px; width: 100%;
      max-height: 88vh;
      display: grid; grid-template-columns: 1fr 1fr;
      box-shadow: 0 32px 80px rgba(0,0,0,0.45);
      animation: modalIn 0.25s ease;
      position: relative;
    }
    @keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

    /* Text side */
    .modal-body {
      padding: 2.5rem; overflow-y: auto; max-height: 88vh;
      display: flex; flex-direction: column; justify-content: center;
    }
    .modal-title { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 0.85rem; letter-spacing: -0.5px; }
    .modal-desc { font-size: 0.93rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.5rem; }
    .modal-list { padding-left: 1.1rem; display: flex; flex-direction: column; gap: 0.55rem; }
    .modal-list li { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

    /* Gallery side */
    .modal-gallery {
      position: relative; background: #0d161c;
      display: flex; flex-direction: column;
    }
    .modal-gallery-img {
      flex: 1; position: relative; overflow: hidden; min-height: 320px;
    }
    .modal-gallery-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: opacity 0.3s ease;
    }

    /* Gallery nav arrows */
    .gallery-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(13,22,28,0.55); border: none; color: white;
      width: 40px; height: 40px; border-radius: 50%;
      font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(4px); transition: background 0.2s; z-index: 2;
    }
    .gallery-btn:hover { background: rgba(13,22,28,0.85); }
    .gallery-btn.prev { left: 0.75rem; }
    .gallery-btn.next { right: 0.75rem; }
    .gallery-btn.hidden { display: none; }

    /* Gallery dots */
    .gallery-dots {
      display: flex; justify-content: center; gap: 6px;
      padding: 0.65rem 1rem;
      background: rgba(13,22,28,0.7);
    }
    .gallery-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,0.35); border: none; cursor: pointer;
      padding: 0; transition: background 0.2s, transform 0.2s;
    }
    .gallery-dot.active { background: var(--accent); transform: scale(1.3); }

    /* Counter */
    .gallery-counter {
      position: absolute; bottom: 2.5rem; right: 0.85rem;
      font-size: 0.72rem; color: rgba(255,255,255,0.55);
      font-weight: 600; letter-spacing: 0.5px;
    }

    /* Close button */
    .modal-close {
      position: absolute; top: 0.85rem; right: 0.85rem; z-index: 10;
      background: rgba(13,22,28,0.5); border: none; color: white;
      width: 34px; height: 34px; border-radius: 50%; font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(4px); transition: background 0.2s;
    }
    .modal-close:hover { background: rgba(13,22,28,0.9); }

    /* CTA BAND */
    .cta-band {
      padding: 6rem 3rem;
      background: linear-gradient(to right, rgba(13,22,28,0.95), rgba(13,22,28,0.88)),
        url('images/hero-bg.jpg') center/cover no-repeat;
      position: relative;
    }
    .cta-band::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(83,162,190,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(83,162,190,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .cta-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
    .cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1rem; }
    .cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem; max-width: 520px; }

    .btn {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.95rem 2.25rem; border-radius: 3px;
      font-weight: 600; font-size: 0.9rem; text-decoration: none;
      letter-spacing: 0.5px; transition: all 0.2s;
    }
    .btn-primary { background: var(--accent); color: white; }
    .btn-primary:hover { background: var(--mid); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(83,162,190,0.3); }
    .btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* FOOTER */
    footer {
      background: #080f14; padding: 1.75rem 3rem;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    footer p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
    footer a { color: var(--accent); text-decoration: none; }
    footer p a { text-decoration: underline; }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
    .footer-links a:hover { color: white; }
    .footer-social { display: flex; gap: 1rem; align-items: center; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 4px;
      background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
      transition: background 0.2s, color 0.2s; text-decoration: none;
    }
    .footer-social a:hover { background: var(--accent); color: white; }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }

    /* ANIMATIONS */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      nav { padding: 0 1.5rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .page-hero { padding: 7rem 1.25rem 3.5rem; }
      .services-section, .cta-band { padding: 4rem 1.25rem; }
      .services-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 1.25rem; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
      nav { padding: 0 1.25rem; }
      .modal { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
      .modal-gallery { order: -1; }
      .modal-gallery-img { min-height: 220px; max-height: 300px; }
      .modal-gallery-img img { object-fit: contain; }
      .modal-body { padding: 1.5rem; max-height: none; justify-content: flex-start; }
      .gallery-counter { bottom: 2.85rem; }
    }

/* extracted inline styles */
.gen-f38a951c { flex-shrink: 0 !important; }
.gen-640610f0 { font-size: 0.55em !important; font-weight: 700 !important; margin-left: 2px !important; vertical-align: super !important; }
