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

    :root {
      --navy: #1a2744;
      --navy2: #223458;
      --teal: #0d7c66;
      --teal-light: #0fa882;
      --mint: #cdeae3;
      --gold: #c8922a;
      --gold-light: #e0ac48;
      --light-bg: #f7f8fc;
      --white: #ffffff;
      --text: #2c3547;
      --text-muted: #6b7280;
      --border: #e2e8f0;
      --card-shadow: 0 2px 16px rgba(26,39,68,0.08);
      --section-pad: 84px 0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      font-size: 16px;
    }

    svg.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; display: block; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      padding: 0 24px;
    }
    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .nav-brand { display: flex; align-items: center; text-decoration: none; }
    .nav-brand img { height: 50px; width: auto; display: block; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-cta {
      background: var(--teal);
      color: #fff !important;
      padding: 8px 18px;
      border-radius: 6px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--teal-light) !important; color: #fff !important; }
    .lang-toggle {
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 5px 14px !important;
    }
    .lang-toggle:hover { border-color: var(--teal); }

    /* ── HERO ── */
    #hero {
      position: relative;
      padding: 176px 24px 0;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
    }
    #hero .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url('https://images.unsplash.com/photo-1749244768351-2726dc23d26c?w=2000&q=70&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
    }
    #hero .hero-scrim {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(115deg, rgba(15,23,42,0.94) 0%, rgba(26,39,68,0.92) 42%, rgba(13,60,52,0.86) 100%);
    }
    .hero-inner {
      max-width: 920px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #f0d9ab;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero-badge::before { content: '●'; font-size: 0.5rem; color: var(--gold-light); }
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.1rem, 4.8vw, 3.3rem);
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .hero-summary {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.82);
      max-width: 700px;
      margin: 0 auto 38px;
      line-height: 1.8;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin-bottom: 56px;
    }
    .btn-primary {
      background: var(--teal);
      color: #fff;
      padding: 13px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background 0.2s, transform 0.1s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.55);
      color: #fff;
      padding: 11px 26px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

    .hero-cards {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: left;
      transform: translateY(50%);
    }
    .hero-card {
      background: rgba(255,255,255,0.97);
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 18px 40px rgba(10,16,32,0.25);
    }
    .hero-card .icon-badge {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--mint);
      color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .hero-card h3 { font-size: 0.98rem; color: var(--navy); margin-bottom: 6px; }
    .hero-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

    /* ── SECTIONS ── */
    section { padding: var(--section-pad); }
    #about { padding-top: calc(84px + 90px); }
    .alt-bg { background: var(--light-bg); }
    .section-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
    }
    .section-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); display: inline-block; }
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      color: var(--navy);
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .section-intro {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 680px;
      margin-bottom: 48px;
      line-height: 1.7;
    }
    h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 56px;
      align-items: center;
    }
    .about-media { position: relative; }
    .about-media img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(26,39,68,0.18);
    }
    .about-float-card {
      position: absolute;
      bottom: -28px;
      left: -28px;
      background: #fff;
      border-radius: 14px;
      padding: 20px 24px;
      box-shadow: 0 16px 40px rgba(26,39,68,0.2);
      display: flex;
      align-items: center;
      gap: 14px;
      max-width: 280px;
    }
    .about-float-card .num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--teal); line-height: 1; }
    .about-float-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; margin: 0; }
    .about-text p { color: var(--text); line-height: 1.85; margin-bottom: 16px; font-size: 0.98rem; }
    .mission-box {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      color: #fff;
      border-radius: 12px;
      padding: 26px 28px;
      margin-top: 18px;
      position: relative;
      overflow: hidden;
    }
    .mission-box::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 140px; height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,146,42,0.25) 0%, transparent 70%);
    }
    .mission-box h4 { color: var(--gold-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .mission-box p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; position: relative; }

    .fact-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 56px;
    }
    .fact-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px 18px;
      box-shadow: var(--card-shadow);
      text-align: center;
    }
    .fact-card .icon-badge {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--mint);
      color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px;
    }
    .fact-card h4 { font-size: 0.85rem; color: var(--navy); margin-bottom: 4px; }
    .fact-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

    /* ── SERVICES ── */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }
    .service-card {
      border-radius: 16px;
      padding: 30px 26px;
      color: #fff;
      position: relative;
      overflow: hidden;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: 0 10px 30px rgba(26,39,68,0.15);
      transition: transform 0.25s;
    }
    .service-card:hover { transform: translateY(-4px); }
    .service-card.s1 { background: linear-gradient(150deg, #16213a 0%, #1a2744 55%, #0d7c66 130%); }
    .service-card.s2 { background: linear-gradient(150deg, #123028 0%, #0d7c66 60%, #0fa882 130%); }
    .service-card.s3 { background: linear-gradient(150deg, #2a2312 0%, #8a6112 55%, #c8922a 130%); }
    .service-card .icon-badge {
      width: 46px; height: 46px;
      border-radius: 10px;
      background: rgba(255,255,255,0.15);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 40px;
    }
    .service-card h3 { color: #fff; font-size: 1.08rem; }
    .service-card p { font-size: 0.87rem; color: rgba(255,255,255,0.82); line-height: 1.65; }

    /* ── PRODUCTS ── */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 28px;
    }
    .product-card {
      border-radius: 16px;
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--card-shadow);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,39,68,0.16); }
    .product-media { height: 190px; overflow: hidden; position: relative; }
    .product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .product-card:hover .product-media img { transform: scale(1.06); }
    .product-tag {
      position: absolute;
      top: 14px; left: 14px;
      background: rgba(255,255,255,0.92);
      color: var(--teal);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
    }
    .product-body { padding: 22px 24px 26px; }
    .product-body h3 { font-size: 1.03rem; margin-bottom: 8px; }
    .product-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

    /* ── TESTIMONIALS ── */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px;
      box-shadow: var(--card-shadow);
    }
    .testi-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
    .testi-card p.quote { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--teal));
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      flex-shrink: 0;
    }
    .testi-author .name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info p.lead { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
    .contact-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .contact-link-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.875rem;
      color: var(--text);
    }
    .contact-link-item a { color: var(--teal); text-decoration: none; }
    .contact-link-item a:hover { text-decoration: underline; }
    .contact-icon {
      width: 38px; height: 38px;
      border-radius: 9px;
      background: rgba(13,124,102,0.08);
      color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .direct-email-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: #fff;
      text-decoration: none;
      padding: 13px 22px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background 0.2s;
    }
    .direct-email-cta:hover { background: var(--navy2); }
    form { display: flex; flex-direction: column; gap: 16px; }
    .form-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      background: var(--mint);
      border-radius: 8px;
      padding: 10px 14px;
      line-height: 1.5;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    input, textarea, select {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }
    input:focus, textarea:focus { border-color: var(--teal); }
    textarea { resize: vertical; min-height: 120px; }
    ::placeholder { color: #a0aec0; }
    .submit-btn {
      background: var(--teal);
      color: #fff;
      border: none;
      padding: 13px 28px;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      align-self: flex-start;
    }
    .submit-btn:hover { background: var(--teal-light); transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.65);
      text-align: center;
      padding: 40px 24px;
      font-size: 0.85rem;
    }
    footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
    footer a:hover { color: var(--teal-light); }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .footer-emails { margin-bottom: 12px; font-size: 0.82rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .fact-strip { grid-template-columns: repeat(2, 1fr); }
      .hero-cards { grid-template-columns: 1fr; transform: none; margin-top: 40px; }
      #hero { padding-bottom: 40px; }
      #about { padding-top: 84px; }
      .about-float-card { position: static; margin-top: -40px; margin-left: 16px; }
    }
    @media (max-width: 768px) {
      .grid-3, .testi-grid, .product-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
    }
  