* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: #f1f5f9;
    color: #0f172a;
  }
  
  /* CONTAINER */
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  
  /* NAV */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 45px;
    text-decoration: none;
    color: inherit;
  }

  .nav-logo {
    display: block;
    flex-shrink: 0;
    width: 80px;
    height: 45px;
    object-fit: contain;
  }

  .nav-title {
    color: #1e3a8a;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .nav-links a[aria-current="page"] {
    color: #1e3a8a;
    font-weight: 600;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 45px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #334155;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .nav-links a:hover {
    color: #1e3a8a;
  }

  @media (max-width: 768px) {
    nav.container {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
      padding: 16px 0;
    }

    .nav-brand {
      max-width: 100%;
    }

    .nav-title {
      font-size: 1rem;
      line-height: 1.25;
    }

    .nav-links {
      width: 100%;
      justify-content: space-between;
      gap: 0.75rem 1rem;
      flex-wrap: wrap;
      min-height: unset;
      padding-top: 0.75rem;
      border-top: 1px solid #e2e8f0;
    }
  }

  /* INNER PAGES */
  .page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #fff;
    padding: 2.5rem 0;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .page-main {
    padding-bottom: 4rem;
  }

  .page-prose {
    max-width: 42rem;
    margin-inline: auto;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #334155;
  }

  .page-prose p {
    margin-bottom: 1rem;
  }

  .page-prose p:last-child {
    margin-bottom: 0;
  }

  .page-prose h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.02em;
  }

  .page-prose ul {
    margin: 0.5rem 0 1.25rem 1.25rem;
  }

  .page-prose li {
    margin-bottom: 0.35rem;
  }

  .page-prose a {
    color: #1e40af;
    font-weight: 500;
  }

  .page-prose a:hover {
    color: #1e3a8a;
    text-decoration: underline;
  }

  .contact-blocks {
    max-width: 36rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-card {
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #38bdf8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .contact-card p {
    margin: 0;
  }

  .contact-card a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
  }

  .contact-card a:hover {
    text-decoration: underline;
  }

  .contact-form-title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: #0f172a;
    letter-spacing: -0.02em;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  @media (max-width: 520px) {
    .form-row {
      grid-template-columns: 1fr;
    }
  }

  .form-field {
    display: grid;
    gap: 0.35rem;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .form-field input,
  .form-field textarea {
    width: 100%;
    font: inherit;
    font-weight: 500;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    outline: none;
  }

  .form-field textarea {
    resize: vertical;
    min-height: 140px;
  }

  .form-field input:focus,
  .form-field textarea:focus {
    border-color: rgba(56, 189, 248, 0.9);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
    background: #fff;
  }

  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding-top: 0.25rem;
  }

  .btn-form {
    border: 0;
    cursor: pointer;
  }

  .form-note {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
  }

  .gallery-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }

  .gallery-card {
    padding: 0.75rem;
  }

  .gallery-link {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .gallery-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
  }

  body.lightbox-open {
    overflow: hidden;
  }

  .lightbox[hidden] {
    display: none;
  }

  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
  }

  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
  }

  .lightbox-dialog {
    position: relative;
    z-index: 1;
    height: 100%;
    width: min(1100px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .lightbox-img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  }

  .lightbox-nav,
  .lightbox-close {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .lightbox-nav {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    font-size: 2.25rem;
    line-height: 1;
    display: grid;
    place-items: center;
  }

  .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 1.75rem;
    line-height: 1;
    display: grid;
    place-items: center;
  }

  .lightbox-nav:hover,
  .lightbox-close:hover {
    background: rgba(15, 23, 42, 0.75);
  }

  .lightbox-nav:focus-visible,
  .lightbox-close:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.9);
    outline-offset: 3px;
  }

  @media (max-width: 520px) {
    .lightbox-dialog {
      grid-template-columns: 44px 1fr 44px;
      width: 94vw;
      padding: 1.5rem 0;
    }

    .lightbox-nav {
      width: 44px;
      height: 44px;
      font-size: 1.9rem;
    }
  }
  
  /* HERO */
  .hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
  }
  
  /* SLIDES */
  .slides {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  /* OVERLAY */
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
  }
  
  /* HERO CONTENT */
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding-inline: 1rem;
    max-width: 52rem;
    margin-inline: auto;
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }
  
  .hero-content p {
    font-size: clamp(1rem, 2vw + 0.35rem, 1.25rem);
    margin-bottom: 30px;
    color: #cbd5f5;
    line-height: 1.5;
  }
  
  .btn {
    background: #38bdf8;
    color: #0f172a;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* SERVICES */
  .services {
    padding: 70px 0;
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #38bdf8;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }
  
  /* WHY */
  .why {
    background: #e2e8f0;
    padding: 70px 0;
  }
  
  /* ABOUT */
  .about {
    padding: 70px 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
  
  /* CONTACT */
  .contact {
    background: #1e3a8a;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }

  .contact a {
    color: #e0f2fe;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
  }

  .contact a:hover {
    color: #fff;
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }