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

  body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid #d0d8e0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2.5rem;
    height: 72px;
  }
  .nav-logo img {
    height: 52px; width: auto; display: block;
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a {
    text-decoration: none; font-family: Arial, sans-serif;
    font-size: 0.875rem; font-weight: 500;
    color: #444; letter-spacing: 0.01em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: #2090a0; }
  .nav-cta {
    background: #2090a0; color: #fff !important;
    padding: 8px 18px; border-radius: 6px;
    font-size: 0.85rem !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #1a7a88 !important; }
  .nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 8px;
    background: none; border: none; cursor: pointer; margin: -8px;
  }
  .nav-toggle span {
    display: block; width: 100%; height: 2px; background: #1a1a2e;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(160deg, #1a1a2e 0%, #304880 55%, #1a1a2e 100%);
    color: #fff;
    padding: 5rem 2.5rem 3.5rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(32,144,160,0.2) 0%, transparent 70%);
  }
  .hero-inner {
    max-width: 860px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative;
  }
  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 780px;
  }
  .hero h1 em { font-style: normal; color: #5ed4e0; }
  .hero-sub {
    font-family: Arial, sans-serif; font-size: 1rem;
    color: #c7d2fe; max-width: 680px;
    margin: 0 auto 2rem; line-height: 1.75;
  }
  .hero-actions {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap; margin-bottom: 2.5rem;
  }
  .btn-primary {
    background: #2090a0; color: #fff;
    padding: 13px 28px; border-radius: 7px;
    font-family: Arial, sans-serif; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
  }
  .btn-primary:hover { background: #1a7a88; }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
    padding: 13px 28px; border-radius: 7px;
    font-family: Arial, sans-serif; font-size: 0.95rem;
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline:hover { border-color: #5ed4e0; background: rgba(94,212,224,0.08); }
  .hero-eyebrow {
    font-family: Arial, sans-serif; font-size: 0.78rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #5ed4e0; margin-top: 1rem;
  }

  /* ── SECTION LABELS ── */
  .section-label {
    font-family: Arial, sans-serif; font-size: 0.75rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #482068; margin-bottom: 0.5rem; text-align: center;
  }
  .section-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700;
    text-align: center; margin-bottom: 0.75rem; color: #1a1a2e;
  }
  .section-sub {
    font-family: Arial, sans-serif; font-size: 0.97rem;
    color: #5f6b7a; text-align: center; max-width: 560px;
    margin: 0 auto 3rem; line-height: 1.7;
  }

  /* ── SERVICES — stacked 50/50 rows ── */
  .services {
    padding: 5rem 0;
    background: #f7f8fc;
  }
  .services-header {
    text-align: center; padding: 0 2.5rem 3rem;
  }
  .service-row {
    display: flex; align-items: stretch;
    min-height: 400px;
  }
  .service-row.reverse { flex-direction: row-reverse; }
  .service-panel {
    width: 50%; padding: 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
    background: #fff;
  }
  .service-row.alt .service-panel { background: #f7f8fc; }
  .service-visual {
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 360px;
    position: relative; overflow: hidden;
  }
  .service-visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(32,144,160,0.12) 0%, rgba(72,32,104,0.12) 100%);
  }

  .visual-bs {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=900&q=80');
  }
  .visual-lc {
    background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=900&q=80');
  }


  .service-panel h3 {
    font-size: 1.3rem; font-weight: 700;
    margin-bottom: 0.3rem; color: #1a1a2e;
  }
  .service-tagline {
    font-family: Arial, sans-serif; font-size: 0.78rem;
    color: #482068; font-weight: 600; letter-spacing: 0.05em;
    margin-bottom: 1rem; text-transform: uppercase;
  }
  .service-panel p {
    font-family: Arial, sans-serif; font-size: 0.9rem;
    color: #5f6b7a; line-height: 1.7; margin-bottom: 1.25rem;
  }
  .service-bullets { list-style: none; }
  .service-bullets li {
    font-family: Arial, sans-serif; font-size: 0.86rem;
    color: #374151; padding: 0.35rem 0;
    border-top: 1px solid #eef0f5;
    display: flex; align-items: flex-start; gap: 0.5rem;
  }
  .service-bullets li::before {
    content: '→'; color: #2090a0;
    font-size: 0.85rem; flex-shrink: 0; margin-top: 0.05rem;
  }

  /* ── ABOUT ── */
  .about {
    padding: 5.5rem 2.5rem;
    background: #fff;
  }
  .about-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 4rem; align-items: start;
  }
  .about-badge {
    background: linear-gradient(160deg, #2090a0 0%, #482068 100%);
    border-radius: 12px; overflow: hidden;
    color: #fff; text-align: center;
  }
  .about-photo {
    width: 100%; display: block;
    aspect-ratio: 1/1; object-fit: cover; object-position: center top;
  }
  .about-badge-footer {
    padding: 1.25rem 1.5rem;
  }
  .about-badge h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
  .about-badge p { font-size: 0.82rem; opacity: 0.85; }
  .about-content .section-label { text-align: left; }
  .about-content .section-title { text-align: left; font-size: 1.85rem; }
  .about-content p {
    font-family: Arial, sans-serif; font-size: 0.92rem;
    color: #374151; line-height: 1.8; margin-bottom: 1rem;
  }

  /* ── CONTACT ── */
  .contact {
    padding: 5rem 2.5rem;
    background: #304880; color: #fff; text-align: center;
  }
  .contact .section-label { color: #5ed4e0; }
  .contact .section-title { color: #fff; margin-bottom: 0.75rem; }
  .contact-sub {
    font-family: Arial, sans-serif; font-size: 0.95rem;
    color: #b8c8e8; margin-bottom: 2.5rem;
  }
  .contact-form {
    max-width: 480px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; color: #fff;
    font-family: Arial, sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.2s;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: #8ba0c0; }
  .contact-form input:focus, .contact-form textarea:focus { border-color: #5ed4e0; }
  .contact-form textarea { resize: vertical; min-height: 150px; }
  .contact-form .hp-field {
    position: absolute; left: -9999px; top: -9999px;
    width: 1px; height: 1px; overflow: hidden;
  }
  .contact-form .consent-field {
    display: flex; align-items: flex-start; gap: 10px;
  }
  .contact-form .consent-field input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px; accent-color: #2090a0; cursor: pointer;
  }
  .contact-form .consent-field label {
    font-family: Arial, sans-serif; font-size: 0.82rem;
    line-height: 1.5; color: #c7d2fe; cursor: pointer;
  }
  .contact-form .consent-field a { color: #5ed4e0; }
  .contact-form .form-status {
    min-height: 1.2em; margin-top: -0.25rem;
    font-family: Arial, sans-serif; font-size: 0.85rem; text-align: center;
  }
  .contact-form .form-status-ok { color: #5ed4e0; }
  .contact-form .form-status-error { color: #ff8080; }
  .contact-form .btn-primary {
    width: 100%; padding: 13px;
    font-size: 1rem; cursor: pointer; border: none;
  }
  .contact-logo {
    margin-top: 2.5rem;
    display: flex; justify-content: center;
  }
  .contact-logo-card {
    display: inline-flex; align-items: center;
    background: #fff; border-radius: 10px;
    padding: 10px 20px;
  }
  .contact-logo img {
    height: 40px; width: auto; display: block;
  }

  /* ── FOOTER ── */
  footer {
    background: #1a1a2e; color: #6b7a94;
    padding: 1.25rem 2.5rem; text-align: center;
    font-family: Arial, sans-serif; font-size: 0.8rem;
  }
  .footer-menu {
    list-style: none; display: flex; justify-content: center;
    gap: 1.5rem; margin-bottom: 0.6rem; flex-wrap: wrap;
  }
  .footer-menu a {
    color: #9aa8c4; text-decoration: none; transition: color 0.2s;
  }
  .footer-menu a:hover { color: #5ed4e0; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 0 1.25rem; height: 64px; }
    .nav-logo img { height: 42px; }
    .nav-toggle { display: flex; }
    .nav-links {
      display: none; position: absolute; top: 64px; left: 0; right: 0;
      flex-direction: column; align-items: flex-start; gap: 0;
      background: #fff; border-bottom: 1px solid #d0d8e0;
      box-shadow: 0 8px 20px rgba(26,26,46,0.12);
      padding: 0.5rem 1.25rem 1rem;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.75rem 0; }
    .nav-links .nav-cta { display: inline-block; margin-top: 0.5rem; }
    .hero { padding: 3.5rem 1.5rem 2.5rem; }
    .service-row, .service-row.reverse { flex-direction: column; }
    .service-panel, .service-visual { width: 100%; }
    .service-visual { min-height: 240px; }
    .service-panel { padding: 2rem 1.5rem; }
    .about { padding: 3.5rem 1.5rem; }
    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .contact { padding: 3.5rem 1.5rem; }
    .policy { padding: 3rem 1.5rem; }
  }

  /* ── SIMPLE CONTENT PAGE (privacy policy, terms, etc.) ── */
  .policy {
    max-width: 760px; margin: 0 auto;
    padding: 4rem 2.5rem 5rem;
    font-family: Arial, sans-serif; color: #333;
  }
  .policy h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #1a1a2e; margin-bottom: 0.5rem;
  }
  .policy .policy-updated {
    color: #6b7a94; font-size: 0.85rem; margin-bottom: 2.5rem;
  }
  .policy h2 {
    font-size: 1.2rem; color: #1a1a2e;
    margin: 2.25rem 0 0.75rem;
  }
  .policy p, .policy li { font-size: 0.95rem; line-height: 1.75; color: #444; }
  .policy ul { padding-left: 1.25rem; margin-bottom: 1rem; }
  .policy li { margin-bottom: 0.4rem; }
  .policy a { color: #2090a0; }
