@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600;700&display=swap');

    /* =========================================================
       CSS CUSTOM PROPERTIES — change colors/fonts here
       ========================================================= */
    :root {
      --color-bg-dark:    #1e3a5f;
      --color-accent:     #c9a84c;
      --color-accent-hover: #b8942e;
      --color-white:      #ffffff;
      --color-white-muted: rgba(255, 255, 255, 0.70);
      --color-white-dim:  rgba(255, 255, 255, 0.12);
      --color-border:     rgba(255, 255, 255, 0.15);
      --color-border-light: #e2e8f0;
      --color-bg-alt:      #f4f8ff;
      --color-text:        #1e2d3d;
      --color-text-muted:  #64748b;

      --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

      --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                    Helvetica, Arial, sans-serif;

      --header-height: 72px;
      --radius:        6px;
      --transition:    0.2s ease;
    }

    /* =========================================================
       RESET & BASE
       ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: var(--font-stack);
      background: #ffffff;
      color: #1e2d3d;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    h1, h2, h3, h4 { font-family: var(--font-heading); }

    /* =========================================================
       UTILITY
       ========================================================= */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* =========================================================
       ██╗  ██╗███████╗ █████╗ ██████╗ ███████╗██████╗
       ██║  ██║██╔════╝██╔══██╗██╔══██╗██╔════╝██╔══██╗
       ███████║█████╗  ███████║██║  ██║█████╗  ██████╔╝
       ██╔══██║██╔══╝  ██╔══██║██║  ██║██╔══╝  ██╔══██╗
       ██║  ██║███████╗██║  ██║██████╔╝███████╗██║  ██║
       ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚══════╝╚═╝  ╚═╝
       ========================================================= */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--color-bg-dark);
      border-bottom: 1px solid var(--color-border);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }

    .header-inner {
      display: flex;
      align-items: center;
      height: var(--header-height);
      gap: 16px;
    }

    /* ── Brand (logo + firm name) ─────────────────────────── */
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      color: var(--color-white);
      transition: opacity var(--transition);
    }
    .brand:hover { opacity: 0.88; }

    .brand__logo {
      width: 44px;
      height: 44px;
      border-radius: var(--radius);
      object-fit: contain;
      /* Placeholder visible when image src is missing */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--color-white-muted);
    }

    /* Inline SVG placeholder shown when no real image is used */
    .brand__logo-placeholder {
      width: 44px;
      height: 44px;
      border-radius: var(--radius);
      background: var(--color-white-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px dashed rgba(201, 168, 76, 0.5);
    }
    .brand__logo-placeholder span {
      font-size: 9px;
      color: var(--color-accent);
      font-weight: 600;
      text-align: center;
      line-height: 1.2;
    }

    .brand__name {
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }

    /* ── Primary navigation ───────────────────────────────── */
    .primary-nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .primary-nav__list {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .primary-nav__link {
      display: block;
      padding: 6px 12px;
      font-size: 14px;
      font-weight: 500;
      color: var(--color-white-muted);
      border-radius: var(--radius);
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }
    .primary-nav__link:hover,
    .primary-nav__link.active {
      color: var(--color-white);
      background: var(--color-white-dim);
    }

    /* ── Header right (contact strip + CTA) ──────────────── */
    .header-contact {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--color-white-muted);
      transition: color var(--transition);
      white-space: nowrap;
    }
    .contact-item:hover { color: var(--color-white); }

    .contact-item svg { flex-shrink: 0; }

    /* messenger icon buttons */
    .messenger-group {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .messenger-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--color-white-dim);
      color: var(--color-white);
      transition: background var(--transition), transform var(--transition);
    }
    .messenger-btn:hover {
      background: var(--color-accent);
      transform: scale(1.1);
    }

    .divider {
      width: 1px;
      height: 20px;
      background: var(--color-border);
      flex-shrink: 0;
    }

    /* CTA button */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 18px;
      background: var(--color-accent);
      color: var(--color-bg-dark);
      font-size: 13px;
      font-weight: 700;
      border-radius: var(--radius);
      white-space: nowrap;
      transition: background var(--transition), transform var(--transition),
                  box-shadow var(--transition);
      box-shadow: 0 2px 8px rgba(201, 168, 76, 0.30);
    }
    .btn-cta:hover {
      background: var(--color-accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(201, 168, 76, 0.45);
    }
    .btn-cta:active { transform: translateY(0); }

    /* ── Hamburger button (mobile) ────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      margin-left: auto;
      flex-shrink: 0;
    }
    .hamburger__bar {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-white);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition),
                  width var(--transition);
    }

    /* open state */
    .hamburger.is-open .hamburger__bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger.is-open .hamburger__bar:nth-child(2) {
      opacity: 0;
      width: 0;
    }
    .hamburger.is-open .hamburger__bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Mobile drawer ────────────────────────────────────── */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--color-bg-dark);
      border-top: 1px solid var(--color-border);
      padding: 16px 24px 24px;
      gap: 4px;
    }
    .mobile-menu.is-open { display: flex; }

    .mobile-menu__link {
      display: block;
      padding: 10px 8px;
      font-size: 15px;
      font-weight: 500;
      color: var(--color-white-muted);
      border-radius: var(--radius);
      transition: color var(--transition), background var(--transition);
    }
    .mobile-menu__link:hover { color: var(--color-white); background: var(--color-white-dim); }

    .mobile-menu__divider {
      height: 1px;
      background: var(--color-border);
      margin: 12px 0;
    }

    .mobile-contact-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      color: var(--color-white-muted);
      font-size: 14px;
    }
    .mobile-contact-row svg { flex-shrink: 0; }

    .mobile-messenger-row {
      display: flex;
      gap: 12px;
      padding: 8px;
    }

    .mobile-cta {
      margin-top: 12px;
      display: block;
      text-align: center;
      padding: 12px;
      background: var(--color-accent);
      color: var(--color-bg-dark);
      font-size: 14px;
      font-weight: 700;
      border-radius: var(--radius);
    }

    /* =========================================================
       MAIN
       ========================================================= */
    main { flex: 1; }

    /* =========================================================
       ███████╗ ██████╗  ██████╗ ████████╗███████╗██████╗
       ██╔════╝██╔═══██╗██╔═══██╗╚══██╔══╝██╔════╝██╔══██╗
       █████╗  ██║   ██║██║   ██║   ██║   █████╗  ██████╔╝
       ██╔══╝  ██║   ██║██║   ██║   ██║   ██╔══╝  ██╔══██╗
       ██║     ╚██████╔╝╚██████╔╝   ██║   ███████╗██║  ██║
       ╚═╝      ╚═════╝  ╚═════╝    ╚═╝   ╚══════╝╚═╝  ╚═╝
       ========================================================= */

    .site-footer {
      background: var(--color-bg-dark);
      color: var(--color-white);
    }

    /* ── Footer top ───────────────────────────────────────── */
    .footer-top {
      padding: 64px 0 48px;
      border-bottom: 1px solid var(--color-border);
    }

    .footer-top__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* brand column */
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }

    .footer-brand__logo-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-brand__logo-placeholder {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      background: var(--color-white-dim);
      border: 1px dashed rgba(201, 168, 76, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .footer-brand__logo-placeholder span {
      font-size: 9px;
      color: var(--color-accent);
      font-weight: 600;
      text-align: center;
      line-height: 1.2;
    }

    .footer-brand__name {
      font-size: 18px;
      font-weight: 700;
    }

    .footer-brand__desc {
      font-size: 14px;
      line-height: 1.75;
      color: var(--color-white-muted);
      max-width: 380px;
    }

    /* nav columns */
    .footer-nav-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .footer-nav-col {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      padding: 24px;
    }

    .footer-nav-col__title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.30);
    }

    .footer-nav-col__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-col__link {
      font-size: 14px;
      color: var(--color-white-muted);
      transition: color var(--transition), padding-left var(--transition);
    }
    .footer-nav-col__link:hover {
      color: var(--color-white);
      padding-left: 4px;
    }

    /* ── Footer middle (contact) ──────────────────────────── */
    .footer-middle {
      padding: 36px 0;
      border-bottom: 1px solid var(--color-border);
    }

    .footer-middle__inner {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      align-items: center;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--color-white-muted);
      transition: color var(--transition);
    }
    .footer-contact-item:hover { color: var(--color-white); }

    .footer-contact-item__icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(201, 168, 76, 0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background var(--transition);
    }
    .footer-contact-item:hover .footer-contact-item__icon {
      background: var(--color-accent);
    }
    .footer-contact-item:hover .footer-contact-item__icon svg {
      color: var(--color-bg-dark);
    }

    .footer-contact-item__text strong {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--color-accent);
      margin-bottom: 2px;
    }

    /* ── Footer bottom (copyright) ────────────────────────── */
    .footer-bottom {
      padding: 20px 0;
    }

    .footer-bottom__inner {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-bottom__copy {
      font-size: 13px;
      color: var(--color-white-muted);
      text-align: center;
    }

    /* =========================================================
       RESPONSIVE
       ========================================================= */

    /* tablet + mobile: show hamburger, hide desktop nav/contact strip */
    @media (max-width: 1023px) {
      .contact-item.hide-tablet { display: none; }

      .primary-nav    { display: none; }
      .header-contact { display: none; }
      .hamburger      { display: flex; }

      .header-inner   { justify-content: space-between; }
    }

    /* mobile-only (≤768px) extra adjustments */
    @media (max-width: 768px) {

      /* footer */
      .footer-top__inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-brand__desc { max-width: 100%; }

      .footer-nav-columns {
        grid-template-columns: 1fr 1fr;
      }

      .footer-middle__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }

    @media (max-width: 480px) {
      .footer-nav-columns {
        grid-template-columns: 1fr;
      }
    }

    /* =========================================================
       CONSULTATION MODAL
       ========================================================= */

    /* Overlay */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    /* Panel */
    .modal-panel {
      position: relative;
      background: #ffffff;
      border: 1px solid var(--color-border-light);
      border-radius: 8px;
      width: 100%;
      max-width: 860px;
      max-height: 90vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
      transform: translateY(16px);
      transition: transform 0.25s ease;
    }
    .modal-overlay.is-open .modal-panel {
      transform: translateY(0);
    }

    /* Scrollbar tint inside panel */
    .modal-panel::-webkit-scrollbar { width: 6px; }
    .modal-panel::-webkit-scrollbar-track { background: transparent; }
    .modal-panel::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }

    /* Close button */
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.06);
      border: none;
      border-radius: 50%;
      color: var(--color-text-muted);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
      z-index: 10;
      flex-shrink: 0;
    }
    .modal-close:hover {
      background: rgba(0,0,0,0.12);
      color: var(--color-text);
    }

    /* ── Left: form column ───────────────────────────────── */
    .modal-form-col {
      padding: 48px 40px 48px;
      border-right: 1px solid var(--color-border-light);
    }

    .modal-form-col__title {
      font-size: 22px;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 8px;
      padding-right: 36px; /* clear the close btn */
    }

    .modal-form-col__subtitle {
      font-size: 14px;
      color: var(--color-text-muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .form-field { margin-bottom: 18px; }

    .form-field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--color-accent);
      margin-bottom: 7px;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      background: #f8fafc;
      border: 1px solid var(--color-border-light);
      border-radius: var(--radius);
      padding: 10px 14px;
      font-size: 14px;
      font-family: var(--font-stack);
      color: var(--color-text);
      outline: none;
      transition: border-color var(--transition), background var(--transition);
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: #9ca3af; }
    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--color-accent);
      background: #ffffff;
    }
    .form-field textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-field__optional {
      font-size: 10px;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
      opacity: 0.55;
      margin-left: 4px;
    }

    .btn-submit {
      width: 100%;
      margin-top: 6px;
      padding: 12px 24px;
      background: var(--color-accent);
      color: var(--color-bg-dark);
      font-size: 14px;
      font-weight: 700;
      font-family: var(--font-stack);
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background var(--transition), transform var(--transition),
                  box-shadow var(--transition);
      box-shadow: 0 2px 8px rgba(201, 168, 76, 0.30);
    }
    .btn-submit:hover {
      background: var(--color-accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(201, 168, 76, 0.45);
    }
    .btn-submit:active { transform: translateY(0); }

    /* ── Right: contact info column ──────────────────────── */
    .modal-info-col {
      padding: 48px 40px;
      background: #f4f8ff;
    }

    .modal-info-col__title {
      font-size: 17px;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 8px;
      padding-right: 36px;
    }

    .modal-info-col__subtitle {
      font-size: 13px;
      color: var(--color-text-muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .modal-contact-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .modal-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      color: var(--color-text-muted);
      font-size: 14px;
      transition: color var(--transition);
    }
    .modal-contact-item:hover { color: var(--color-text); }

    .modal-contact-item__icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background var(--transition);
    }
    .modal-contact-item:hover .modal-contact-item__icon {
      background: var(--color-accent);
    }
    .modal-contact-item:hover .modal-contact-item__icon svg {
      color: var(--color-bg-dark);
    }

    .modal-contact-item__text strong {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--color-accent);
      margin-bottom: 3px;
    }
    .modal-contact-item__text span {
      word-break: break-word;
    }

    /* ── Modal responsive ────────────────────────────────── */
    @media (max-width: 640px) {
      .modal-panel {
        grid-template-columns: 1fr;
      }
      .modal-form-col {
        padding: 40px 24px 32px;
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
      }
      .modal-info-col {
        padding: 32px 24px 40px;
      }
    }

    /* =========================================================
       FONT AWESOME INTEGRATION
       Size FA <i> icons to match former SVG dimensions;
       extend hover colour selectors to cover <i> as well.
       ========================================================= */
    .btn-cta i,
    .hero__btn-primary i           { font-size: 14px; }
    .contact-item i                { font-size: 15px; flex-shrink: 0; }
    .mobile-contact-row i          { font-size: 15px; flex-shrink: 0; }
    .messenger-btn i               { font-size: 15px; }
    .footer-contact-item__icon i   { font-size: 16px; }
    .modal-contact-item__icon i    { font-size: 16px; }
    .hero__trust-icon i            { font-size: 18px; }
    .hero__whatsapp-icon i         { font-size: 18px; }
    .hero__image-placeholder-icon i { font-size: 26px; }

    /* Pass hover colour through to FA icons */
    .footer-contact-item:hover .footer-contact-item__icon i { color: var(--color-bg-dark); }
    .modal-contact-item:hover    .modal-contact-item__icon i { color: var(--color-bg-dark); }
/* =========================================================
   HERO SECTION — hero.css
   All colors and fonts use CSS custom properties defined
   in template.html:
     --color-bg-dark | --color-accent | --color-accent-hover
     --color-white | --color-white-muted | --color-white-dim
     --color-border | --font-stack | --radius | --transition
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.hero {
  background-color: var(--color-bg-dark);
  background-image:
    radial-gradient(ellipse 75% 65% at 88% 50%, rgba(201, 168, 76, 0.055) 0%, transparent 60%),
    radial-gradient(ellipse 50% 90% at -5% 50%, rgba(6, 14, 28, 0.7) 0%, transparent 55%);
  min-height: 85vh;
  display: flex;
  align-items: stretch;
}

.hero .container {
  display: flex;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  width: 100%;
}

/* ── Two-column grid ──────────────────────────────────── */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}

/* ── Left: content column ─────────────────────────────── */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Decorative eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
}

.hero__eyebrow-bar {
  flex-shrink: 0;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

/* H1 */
.hero__heading {
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--color-white);
  margin: 0;
}

/* Subheadline */
.hero__subheadline {
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-white-muted);
  max-width: 500px;
  margin: 0;
}

/* ── CTA row ──────────────────────────────────────────── */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Primary button — opens consultation modal */
.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-stack);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform  var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.hero__btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.50);
}

.hero__btn-primary:active {
  transform: translateY(0);
}

/* Secondary: WhatsApp "Get a Free Call" link */
.hero__whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white-muted);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
  white-space: nowrap;
}

.hero__whatsapp-link:hover {
  color: var(--color-white);
}

.hero__whatsapp-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.hero__whatsapp-link:hover .hero__whatsapp-icon {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.30);
}

/* ── Trust statistics row ─────────────────────────────── */
.hero__trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero__trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero__trust-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.hero__trust-label {
  display: block;
  font-size: 12px;
  color: var(--color-white-muted);
  margin-top: 3px;
  line-height: 1.3;
}

/* ── Right: image visual ──────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative corner frames */
.hero__visual::before {
  content: '';
  position: absolute;
  top: -14px;
  right: -14px;
  width: 54%;
  height: 54%;
  border-top: 2px solid rgba(201, 168, 76, 0.22);
  border-right: 2px solid rgba(201, 168, 76, 0.22);
  border-radius: 0 12px 0 0;
  pointer-events: none;
  z-index: 0;
}

.hero__visual::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 54%;
  height: 54%;
  border-bottom: 2px solid rgba(201, 168, 76, 0.14);
  border-left: 2px solid rgba(201, 168, 76, 0.14);
  border-radius: 0 0 0 12px;
  pointer-events: none;
  z-index: 0;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

/* Real <img> — used after replacing the placeholder */
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder shown before the real image is set */
.hero__image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(201, 168, 76, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero__image-placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.hero__image-placeholder-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.3px;
}

.hero__image-placeholder-hint {
  font-size: 11px;
  color: var(--color-white-muted);
  opacity: 0.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Stack at tablet width */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero .container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Text first, image below */
  .hero__content { order: 1; }
  .hero__visual   { order: 2; }

  .hero__subheadline {
    max-width: 100%;
  }

  /* Landscape placeholder on tablet */
  .hero__image-placeholder {
    aspect-ratio: 16 / 9;
    min-height: 260px;
  }

  /* Hide corner accents to keep layout tidy */
  .hero__visual::before,
  .hero__visual::after { display: none; }
}

/* Small mobile */
@media (max-width: 600px) {
  .hero {
    min-height: unset;
  }

  .hero .container {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__trust {
    gap: 20px;
  }

  .hero__image-placeholder {
    min-height: 200px;
  }
}
/* =========================================================
   TRUST BAR — trust-bar.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.trust-bar {
  background-color: #f0f4f8;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 18px 0;
  overflow: hidden;
}

/* ── Inner flex row ───────────────────────────────────── */
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ── Left label ───────────────────────────────────────── */
.trust-bar__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Thin vertical divider between label and logos */
.trust-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}

/* ── Right: logo row ──────────────────────────────────── */
.trust-bar__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

/* ── Individual logo item ─────────────────────────────── */
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

/* Logo image placeholder */
.trust-bar__logo {
  width: 56px;
  height: 36px;
  object-fit: contain;
  /* Grayscale by default */
  filter: grayscale(100%) brightness(0.75);
  transition: filter var(--transition), transform var(--transition),
              opacity var(--transition);
  opacity: 0.65;
}

/* If the placeholder is a div (no real image yet) */
.trust-bar__logo-placeholder {
  width: 56px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) brightness(0.75);
  transition: filter var(--transition), transform var(--transition),
              opacity var(--transition);
  opacity: 0.65;
}

.trust-bar__logo-placeholder i {
  font-size: 18px;
  color: var(--color-accent);
}

/* Logo label */
.trust-bar__item-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}

/* Hover: reveal full color */
.trust-bar__item:hover .trust-bar__logo,
.trust-bar__item:hover .trust-bar__logo-placeholder {
  filter: grayscale(0%) brightness(0.8);
  opacity: 1;
  transform: translateY(-2px);
}

.trust-bar__item:hover .trust-bar__item-label {
  color: var(--color-text);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet: horizontal scroll so last item is never clipped */
@media (min-width: 769px) and (max-width: 1023px) {
  .trust-bar__inner {
    gap: 16px;
    flex-wrap: nowrap;
  }

  .trust-bar__logos {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 16px;
    flex: 1;
    min-width: 0;
  }

  .trust-bar__logos::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__logo,
  .trust-bar__logo-placeholder {
    width: 48px;
    height: 30px;
    flex-shrink: 0;
  }

  .trust-bar__item {
    flex-shrink: 0;
  }

  .trust-bar__item-label {
    font-size: 9px;
    white-space: nowrap;
  }
}

/* Mobile: wrap to two rows, centred, no clipping */
@media (max-width: 768px) {
  .trust-bar {
    padding: 14px 0 18px;
  }

  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-bar__divider {
    display: none;
  }

  .trust-bar__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .trust-bar__logo,
  .trust-bar__logo-placeholder {
    width: 40px;
    height: 26px;
  }

  .trust-bar__item-label {
    font-size: 9px;
    white-space: normal;
    text-align: center;
    max-width: 72px;
  }
}
/* =========================================================
   ABOUT / INTRODUCTION SECTION — about-section.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.about-section {
  background-color: var(--color-bg-alt); /* midpoint between bg-dark and lighter shades */
  padding: 96px 0;
}

/* ── Section heading ──────────────────────────────────── */
.about-section__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 48px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.about-section__heading span {
  color: var(--color-accent);
}

/* ── Two-column grid ──────────────────────────────────── */
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Left: text content ───────────────────────────────── */
.about-section__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-section__para {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Inline anchor within paragraph text */
.about-section__para a {
  color: var(--color-accent);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.about-section__para a:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* CTA button below text */
.about-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-stack);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.about-section__btn:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.about-section__btn:active {
  transform: translateY(0);
}

/* ── Right: image ─────────────────────────────────────── */
.about-section__image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-section__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.about-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder when no real image is set */
.about-section__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.04);
  border: 2px dashed rgba(201, 168, 76, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-accent);
}

.about-section__image-placeholder i {
  font-size: 48px;
  opacity: 0.5;
}

.about-section__image-placeholder-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.7;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .about-section {
    padding: 72px 0;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Image on top, text below on mobile */
  .about-section__image-wrap,
  .about-section__image-placeholder {
    order: -1;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 56px 0;
  }

  .about-section__heading {
    margin-bottom: 32px;
  }

  .about-section__btn {
    align-self: stretch;
    justify-content: center;
  }
}
/* =========================================================
   SERVICES SECTION — services.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.services-section {
  background-color: #ffffff;
  padding: 96px 0;
}

/* ── Section header ───────────────────────────────────── */
.services-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.services-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.services-section__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.services-section__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
}

/* ── 3-column card grid ───────────────────────────────── */
.services-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Individual service card ──────────────────────────── */
.service-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--color-accent);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Icon */
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.service-card__icon i {
  font-size: 20px;
}

.service-card:hover .service-card__icon {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.45);
}

/* Service name */
.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0;
}

/* Description */
.service-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-muted);
  flex: 1;
  margin: 0;
}

/* Learn More link */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: gap var(--transition), color var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.service-card__link i {
  font-size: 11px;
  transition: transform var(--transition);
}

.service-card:hover .service-card__link {
  gap: 10px;
  color: var(--color-accent-hover);
}

.service-card:hover .service-card__link i {
  transform: translateX(3px);
}

/* ── Bottom CTA ───────────────────────────────────────── */
.services-section__cta {
  text-align: center;
  margin-top: 48px;
}

.services-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-stack);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.services-section__btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.50);
}

.services-section__btn:active {
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .services-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .services-section {
    padding: 64px 0;
  }

  .services-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-section__header {
    margin-bottom: 36px;
  }

  .service-card {
    padding: 28px 22px;
  }
}
/* =========================================================
   PROCESS / HOW WE WORK SECTION — process.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.process-section {
  background-color: var(--color-bg-alt);
  padding: 96px 0;
}

/* ── Section header ───────────────────────────────────── */
.process-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.process-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.process-section__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.process-section__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
}

/* ── Horizontal timeline wrapper ──────────────────────── */
.process-section__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* Connecting gold line (desktop) — sits behind the step circles */
.process-section__timeline::before {
  content: '';
  position: absolute;
  top: 36px; /* vertically center with the step number circle */
  left: calc(100% / 10); /* start from center of first item */
  right: calc(100% / 10); /* end at center of last item */
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.15) 0%,
    rgba(201, 168, 76, 0.60) 50%,
    rgba(201, 168, 76, 0.15) 100%
  );
  z-index: 0;
}

/* ── Individual step ──────────────────────────────────── */
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
  text-align: center;
  z-index: 1;
  cursor: default;
  transition: transform var(--transition);
}

/* Top area: number + icon stacked */
.process-step__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Step number circle */
.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 2px solid rgba(201, 168, 76, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition);
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-alt); /* matches section bg */
}

/* Icon below number */
.process-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--transition), border-color var(--transition),
              color var(--transition);
}

.process-step__icon i {
  font-size: 17px;
}

/* Step body */
.process-step__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.process-step__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* Hover / active state */
.process-step:hover {
  transform: translateY(-4px);
}

.process-step:hover .process-step__number {
  background: var(--color-bg-alt);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.30);
}

.process-step:hover .process-step__icon {
  background: rgba(201, 168, 76, 0.10);
  border-color: rgba(201, 168, 76, 0.40);
  color: var(--color-accent);
}

/* =========================================================
   RESPONSIVE — vertical timeline on mobile
   ========================================================= */

@media (max-width: 1024px) {
  .process-section__timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 16px;
  }

  /* Remove the horizontal line on smaller layouts */
  .process-section__timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 72px 0;
  }

  /* Vertical single-column timeline */
  .process-section__timeline {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 32px;
  }

  /* Vertical gold line on left side */
  .process-section__timeline::before {
    display: block;
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 27px; /* center of number circle */
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(201, 168, 76, 0.15) 0%,
      rgba(201, 168, 76, 0.60) 50%,
      rgba(201, 168, 76, 0.15) 100%
    );
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 20px 0;
  }

  .process-step__top {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .process-step__number {
    width: 48px;
    height: 48px;
    font-size: 16px;
    background-color: var(--color-bg-alt);
  }

  .process-step__icon {
    width: 36px;
    height: 36px;
  }

  .process-step__icon i {
    font-size: 14px;
  }

  .process-step:hover {
    transform: none;
  }

  .process-step:hover .process-step__number {
    box-shadow: none;
    background-color: var(--color-bg-alt);
  }
}

@media (max-width: 480px) {
  .process-section__header {
    margin-bottom: 40px;
  }
}
/* =========================================================
   WHY CHOOSE US SECTION — why-choose-us.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.why-section {
  background-color: #ffffff;
  padding: 96px 0;
}

/* ── Section header ───────────────────────────────────── */
.why-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.why-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.why-section__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.why-section__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
}

/* ── 3-column open grid ───────────────────────────────── */
.why-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

/* ── Individual differentiator item ──────────────────── */
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  /* No card borders — open layout */
}

/* Large gold icon */
.why-item__icon {
  font-size: 36px;
  color: var(--color-accent);
  line-height: 1;
  transition: transform var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

/* Hover: icon scales up slightly */
.why-item:hover .why-item__icon {
  transform: scale(1.15);
  color: var(--color-accent-hover);
}

/* Title */
.why-item__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

/* Description */
.why-item__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .why-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .why-section {
    padding: 64px 0;
  }

  .why-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-section__header {
    margin-bottom: 40px;
  }

  .why-item__icon {
    font-size: 32px;
    width: 64px;
    height: 64px;
  }
}
/* =========================================================
   TESTIMONIALS SECTION — testimonials.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.testimonials-section {
  background-color: var(--color-bg-alt);
  padding: 96px 0;
  overflow: hidden;
}

/* ── Section header ───────────────────────────────────── */
.testimonials-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.testimonials-section__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.testimonials-section__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
}

/* ── Slider container ─────────────────────────────────── */
.testimonials-slider {
  position: relative;
}

/* Overflow mask */
.testimonials-slider__track-wrap {
  overflow: hidden;
}

/* Moving track — JS controls translateX */
.testimonials-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Individual testimonial card ──────────────────────── */
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
  background: rgba(255, 255, 255, 0.045); /* slightly lighter than section bg */
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.40);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* 5 gold stars */
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent);
  font-size: 16px;
}

/* Quote text */
.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-style: italic;
  flex: 1;
  margin: 0;
}

/* Client footer */
.testimonial-card__client {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
}

.testimonial-card__initials {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-card__country {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ── Arrow controls ───────────────────────────────────── */
.testimonials-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.testimonials-slider__arrow i {
  font-size: 16px;
}

.testimonials-slider__arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg-dark);
  transform: scale(1.08);
}

.testimonials-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ── Dot pagination ───────────────────────────────────── */
.testimonials-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition),
              width var(--transition);
}

.testimonials-slider__dot.is-active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet: show 2 cards */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* Mobile: show 1 card */
@media (max-width: 640px) {
  .testimonials-section {
    padding: 64px 0;
  }

  .testimonials-section__header {
    margin-bottom: 36px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
    margin-right: 0;
  }

  /* On mobile the last card in the visible frame needs a gap */
  .testimonials-slider__track {
    gap: 16px;
  }

  .testimonial-card {
    flex: 0 0 85vw;
  }
}
/* =========================================================
   FAQ SECTION — faq.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.faq-section {
  background-color: #ffffff;
  padding: 96px 0;
}

/* ── Section header ───────────────────────────────────── */
.faq-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.faq-section__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.faq-section__heading {
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Accordion wrapper ────────────────────────────────── */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Individual FAQ item ──────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

/* Question button (toggle) */
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-stack);
  color: var(--color-text);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__question-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}

/* Plus/minus icon on the right */
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
  font-size: 14px;
}

.faq-item.is-open .faq-item__icon {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.40);
  transform: rotate(45deg); /* plus → X when open */
}

/* Answer panel — hidden by default */
.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  opacity: 0;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px; /* large enough for any answer */
  opacity: 1;
}

.faq-item__answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ── View All FAQs CTA ────────────────────────────────── */
.faq-section__cta {
  text-align: center;
  margin-top: 48px;
}

.faq-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 32px;
  background: transparent;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-stack);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.faq-section__btn:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.faq-section__btn:active {
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-section__header {
    margin-bottom: 40px;
  }

  .faq-item__question-text {
    font-size: 15px;
  }

  .faq-item__question {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 56px 0;
  }

  .faq-item__question-text {
    font-size: 14px;
  }
}
/* =========================================================
   FINAL CTA SECTION — cta-section.css
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.cta-section {
  background-color: #0b1525; /* slightly different shade to stand out */
  border-top: 1px solid rgba(201, 168, 76, 0.20);
  padding: 96px 0;
}

/* ── Section header ───────────────────────────────────── */
.cta-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.cta-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.cta-section__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.cta-section__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0 0 16px;
}

.cta-section__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-white-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Two-column layout ────────────────────────────────── */
.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT: Contact Form ───────────────────────────────── */
.cta-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-form-col__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
}

/* Form fields */
.cta-form__field {
  margin-bottom: 18px;
}

.cta-form__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-accent);
  margin-bottom: 7px;
}

.cta-form__input,
.cta-form__textarea {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-stack);
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition), background var(--transition),
              box-shadow var(--transition);
}

.cta-form__input::placeholder,
.cta-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

/* Gold border on focus */
.cta-form__input:focus,
.cta-form__textarea:focus {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.cta-form__textarea {
  resize: vertical;
  min-height: 110px;
}

/* Submit button — gold, full width */
.cta-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-stack);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.cta-form__submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.50);
}

.cta-form__submit:active {
  transform: translateY(0);
}

/* ── RIGHT: Contact Info ──────────────────────────────── */
.cta-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-info-col__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
}

/* Contact list */
.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-white-muted);
  font-size: 15px;
  text-decoration: none;
  transition: color var(--transition);
}

.cta-contact-item:hover {
  color: var(--color-white);
}

.cta-contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 17px;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}

.cta-contact-item:hover .cta-contact-item__icon {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.40);
  transform: scale(1.08);
}

.cta-contact-item__text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.cta-contact-item__text span {
  font-size: 14px;
  color: var(--color-white-muted);
  word-break: break-word;
}

/* Confidentiality note */
.cta-info-col__note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-white-muted);
  opacity: 0.75;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
}

.cta-info-col__note i {
  color: var(--color-accent);
  font-size: 14px;
  flex-shrink: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .cta-section {
    padding: 64px 0;
  }

  .cta-section__header {
    margin-bottom: 36px;
  }

  .cta-form__submit {
    font-size: 14px;
    padding: 13px 20px;
  }
}
/* =========================================================
   ABOUT PAGE — about.css
   Styles specific to about.html.
   All colors use CSS custom properties from template.html.
   ========================================================= */

/* =========================================================
   1. ABOUT HERO
   ========================================================= */
.about-hero {
  background-color: var(--color-bg-dark);
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(6, 14, 28, 0.6) 0%, transparent 55%);
  padding: 120px 0 100px;
  text-align: center;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.about-hero__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.about-hero__heading {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
}

.about-hero__subheadline {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-white-muted);
  max-width: 660px;
  margin: 0 auto;
}

/* =========================================================
   2. OUR STORY / MISSION
   ========================================================= */
.about-story {
  background-color: #0d1a2e;
  padding: 96px 0;
}

.about-story__inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-story__heading {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 36px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.about-story__heading span {
  color: var(--color-accent);
}

.about-story__para {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-white-muted);
  margin-bottom: 24px;
}

.about-story__para:last-child {
  margin-bottom: 0;
}

/* =========================================================
   3. OUR VALUES
   ========================================================= */
.about-values {
  background-color: var(--color-bg-dark);
  padding: 96px 0;
}

.about-values__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-values__heading {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0;
}

/* 4-column grid */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-4px);
}

.value-card__icon {
  font-size: 32px;
  color: var(--color-accent);
  line-height: 1;
  transition: transform var(--transition);
}

.value-card:hover .value-card__icon {
  transform: scale(1.12);
}

.value-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.value-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-white-muted);
  margin: 0;
}

/* =========================================================
   4. KEY NUMBERS
   ========================================================= */
.about-numbers {
  background-color: #0b1525;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 72px 0;
}

.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-stat__number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -1px;
}

.about-stat__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================
   5. ABOUT CTA
   ========================================================= */
.about-cta {
  background-color: var(--color-bg-dark);
  padding: 96px 0;
  text-align: center;
}

.about-cta__heading {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 36px;
  line-height: 1.2;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-stack);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.about-cta__btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.50);
}

.about-cta__btn:active {
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 72px;
  }

  .about-story,
  .about-values,
  .about-cta {
    padding: 72px 0;
  }

  .about-numbers {
    padding: 56px 0;
  }

  .about-numbers__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 64px 0 56px;
  }
}
/* =========================================================
   LEGAL PAGES — shared stylesheet
   Used by: privacy-policy.html, terms.html,
            cookie-policy.html, disclaimer.html
   ========================================================= */

/* ── Hero ───────────────────────────────────────────────── */
.legal-hero {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 72px 0 60px;
  border-bottom: 3px solid var(--color-accent);
}

.legal-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.legal-hero__meta {
  font-size: 14px;
  color: var(--color-white-muted);
  letter-spacing: 0.3px;
}

/* ── Two-column layout ──────────────────────────────────── */
.legal-layout {
  padding: 60px 0 80px;
}

.legal-layout__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Sidebar ────────────────────────────────────────────── */
.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.legal-sidebar__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.legal-sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-sidebar__link {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: color var(--transition), background var(--transition),
              border-color var(--transition);
  line-height: 1.4;
}

.legal-sidebar__link:hover {
  color: var(--color-bg-dark);
  background: rgba(201, 168, 76, 0.10);
  border-left-color: var(--color-accent);
}

.legal-sidebar__link.is-active {
  color: var(--color-bg-dark);
  background: rgba(201, 168, 76, 0.14);
  border-left-color: var(--color-accent);
  font-weight: 600;
}

/* ── Content area ───────────────────────────────────────── */
.legal-content {
  min-width: 0; /* prevent overflow in grid */
}

.legal-section {
  padding-top: 16px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8eaed;
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section__heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-section__body {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.legal-section__body p {
  margin-bottom: 12px;
}

.legal-section__body p:last-child {
  margin-bottom: 0;
}

/* ── Mobile: hide sidebar ───────────────────────────────── */
@media (max-width: 768px) {
  .legal-layout__inner {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    display: none;
  }
}
/* =============================================================
   TEAM PAGE — team.css
   Depends on the custom properties defined in template.html / team.html
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   TEAM HERO
   ───────────────────────────────────────────────────────────── */
.team-hero {
  background: var(--color-bg-dark);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.team-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.team-hero__eyebrow-bar {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.team-hero__heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.team-hero__subheadline {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-white-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   TEAM GRID SECTION
   ───────────────────────────────────────────────────────────── */
.team-grid-section {
  background: #f4f5f7;
  padding: 80px 0;
}

.team-grid-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.team-grid-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.team-grid-section__label-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.team-grid-section__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.3px;
}

/* ── Grid layout ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Individual lawyer card ─────────────────────────────────── */
.lawyer-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.lawyer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Photo */
.lawyer-card__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #dde0e6;
}

.lawyer-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.lawyer-card:hover .lawyer-card__photo {
  transform: scale(1.04);
}

/* Accent bar at card top */
.lawyer-card__photo-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
}

/* Body */
.lawyer-card__body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lawyer-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.lawyer-card__position {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lawyer-card__bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: #555870;
  margin-top: 8px;
  flex: 1;
}

/* Footer row: LinkedIn */
.lawyer-card__footer {
  padding: 14px 24px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lawyer-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.07);
  color: var(--color-bg-dark);
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lawyer-card__linkedin:hover {
  background: #0a66c2;
  color: #ffffff;
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────────
   TEAM CTA SECTION
   ───────────────────────────────────────────────────────────── */
.team-cta {
  background: var(--color-bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 50% 100%, rgba(201, 168, 76, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.team-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.team-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.team-cta__eyebrow-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.team-cta__heading {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.4px;
  line-height: 1.2;
  max-width: 560px;
}

.team-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-white-muted);
  max-width: 520px;
}

.team-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-stack);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.team-cta__btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.50);
}

.team-cta__btn:active {
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */

/* Tablet: 2-column grid */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile: single column */
@media (max-width: 640px) {
  .team-hero {
    padding: 56px 0 48px;
  }

  .team-hero__subheadline {
    font-size: 15px;
  }

  .team-grid-section {
    padding: 56px 0;
  }

  .team-grid-section__header {
    margin-bottom: 36px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lawyer-card__photo-wrap {
    aspect-ratio: 4 / 3;
  }

  .team-cta {
    padding: 56px 0;
  }

  .team-cta__heading {
    font-size: 26px;
  }

  .team-cta__text {
    font-size: 14px;
  }

  .team-cta__btn {
    width: 100%;
    justify-content: center;
  }
}
/* =============================================================
   CONTACT PAGE — contact.css
   Depends on the CSS custom properties defined in contact.html
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   CONTACT HERO
   ───────────────────────────────────────────────────────────── */
.contact-hero {
  background: var(--color-bg-dark);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.contact-hero__eyebrow-bar {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.contact-hero__heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.contact-hero__subheadline {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-white-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   MAIN CONTACT SECTION
   ───────────────────────────────────────────────────────────── */
.contact-main {
  padding: 80px 0 96px;
  background: #f4f5f7;
}

/* Two-column grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* ─────────────────────────────────────────────────────────────
   LEFT — CONTACT FORM COLUMN
   ───────────────────────────────────────────────────────────── */
.contact-form-col {
  background: #ffffff;
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.contact-form-col__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.contact-form-col__label-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.contact-form-col__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.contact-form-col__subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: #555870;
  margin-bottom: 36px;
}

/* Form fields */
.contact-field {
  margin-bottom: 22px;
}

.contact-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: #f8f9fb;
  border: 1px solid #dde0e8;
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-stack);
  color: #1a1a2e;
  outline: none;
  transition: border-color var(--transition), background var(--transition),
    box-shadow var(--transition);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9fa3b0;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color-accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-field__optional {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.50;
  margin-left: 4px;
}

/* Two-column field row */
.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Submit button */
.contact-submit {
  width: 100%;
  margin-top: 4px;
  padding: 13px 24px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-stack);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.28);
}

.contact-submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.42);
}

.contact-submit:active {
  transform: translateY(0);
}

/* Success state message */
.contact-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.30);
  border-radius: var(--radius);
  font-size: 14px;
  color: #166534;
}

.contact-success.is-visible {
  display: flex;
}

/* ─────────────────────────────────────────────────────────────
   RIGHT — CONTACT INFO COLUMN
   ───────────────────────────────────────────────────────────── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Section heading */
.contact-info-col__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.contact-info-col__label-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.contact-info-col__title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.contact-info-col__intro {
  font-size: 14px;
  line-height: 1.7;
  color: #555870;
  margin-bottom: 8px;
}

/* Individual contact info card */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  color: #1a1a2e;
}

.contact-info-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--color-accent);
  transition: background var(--transition), color var(--transition);
}

.contact-info-card:hover .contact-info-card__icon {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.contact-info-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-info-card__value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  word-break: break-word;
}

.contact-info-card__note {
  font-size: 12px;
  color: #9fa3b0;
  margin-top: 1px;
}

/* Address card variant — taller, no link hover shift */
.contact-info-card--address {
  align-items: flex-start;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */

/* Narrow desktop / wide tablet: equal columns */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }
}

/* Tablet → stack vertically (form on top, info below) */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    /* keep info cards in a two-column mini-grid on tablet */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }

  /* header text spans full width */
  .contact-info-col__label,
  .contact-info-col__title,
  .contact-info-col__intro {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .contact-hero {
    padding: 56px 0 48px;
  }

  .contact-hero__subheadline {
    font-size: 15px;
  }

  .contact-main {
    padding: 48px 0 64px;
  }

  .contact-form-col {
    padding: 32px 24px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-col {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   NAV DROPDOWN (desktop)
   ========================================================= */
@media (min-width: 1024px) {
  .primary-nav__item--has-dropdown {
    position: relative;
  }

  .primary-nav__link--dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: default;
    user-select: none;
  }

  .primary-nav__dropdown-icon {
    font-size: 10px;
    transition: transform var(--transition);
  }

  /* show dropdown on hover */
  .primary-nav__item--has-dropdown:hover .primary-nav__dropdown-icon {
    transform: rotate(180deg);
  }

  .primary-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--color-bg-dark);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    list-style: none;
    padding: 10px 0 6px;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .primary-nav__item--has-dropdown:hover .primary-nav__dropdown,
  .primary-nav__item--has-dropdown:focus-within .primary-nav__dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav__dropdown-link {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white-muted);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
  }

  .primary-nav__dropdown-link:hover {
    color: var(--color-white);
    background: var(--color-white-dim);
  }
}

/* =========================================================
   MOBILE SERVICES ACCORDION
   ========================================================= */
.mobile-menu__accordion {
  border-bottom: none;
}

.mobile-menu__accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition), background var(--transition);
}

.mobile-menu__accordion-toggle:hover {
  color: var(--color-white);
  background: var(--color-white-dim);
}

.mobile-menu__accordion-icon {
  font-size: 11px;
  transition: transform var(--transition);
}

.mobile-menu__accordion-toggle[aria-expanded="true"] .mobile-menu__accordion-icon {
  transform: rotate(180deg);
}

.mobile-menu__accordion-list {
  list-style: none;
  padding: 0 0 4px 0;
}

.mobile-menu__accordion-link {
  display: block;
  padding: 8px 8px 8px 22px;
  font-size: 14px;
  color: var(--color-white-muted);
  transition: color var(--transition), background var(--transition);
}

.mobile-menu__accordion-link:hover {
  color: var(--color-white);
  background: var(--color-white-dim);
}

/* =========================================================
   SERVICE CARD LINK + BUTTON
   ========================================================= */
.service-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card__link:hover .service-card__title {
  color: var(--color-accent);
}

.service-card__link:hover .service-card__icon {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.service-card__btn:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

/* =============================================================
   SERVICE PAGE
   ============================================================= */

/* ── Hero ──────────────────────────────────────────────────── */
.service-hero {
  background: var(--color-bg-dark);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 0% 50%, rgba(201, 168, 76, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero .container {
  position: relative;
}

.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.service-hero__content {
  display: flex;
  flex-direction: column;
}

.service-hero__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.service-hero__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.service-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.service-hero__subheadline {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-white-muted);
  margin-bottom: 36px;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.service-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-stack);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.service-hero__cta:hover {
  background: var(--color-accent-hover);
}

.service-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white-muted);
  transition: color var(--transition);
}

.service-hero__link:hover {
  color: var(--color-white);
}

/* ── Content body ──────────────────────────────────────────── */
.service-page {
  padding: 72px 0 96px;
  background: #fff;
}

.service-body {
  width: 100%;
}

.service-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  line-height: 1.3;
  margin: 52px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border-light);
}

.service-body h2:first-child {
  margin-top: 0;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 28px 0 10px;
  line-height: 1.35;
}

.service-body p {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 16px;
}

.service-body p:last-child {
  margin-bottom: 0;
}

.service-body ul,
.service-body ol {
  margin: 12px 0 24px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-body ul li,
.service-body ol li {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  padding-left: 24px;
  position: relative;
}

.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.service-body ol {
  counter-reset: ol-counter;
}

.service-body ol li {
  counter-increment: ol-counter;
}

.service-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.75;
}

/* Also style legal-content gen output (pp_content_gen etc.) */
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  line-height: 1.3;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-light);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 14px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul,
.legal-content ol {
  margin: 10px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-content ul li,
.legal-content ol li {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}

.legal-content a {
  color: var(--color-bg-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--color-accent);
}

/* ── Bottom CTA strip ──────────────────────────────────────── */
.service-cta {
  background: var(--color-bg-dark);
  padding: 64px 0;
}

.service-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-cta__text {
  flex: 1;
}

.service-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 12px;
}

.service-cta__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-white-muted);
  max-width: 480px;
}

.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.service-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-stack);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.service-cta__btn--primary {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
}

.service-cta__btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.service-cta__btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-border);
}

.service-cta__btn--secondary:hover {
  background: var(--color-white-dim);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-hero__inner {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 56px 0 48px;
  }

  .service-hero__inner {
    grid-template-columns: 1fr;
  }

  .service-hero__image-wrap {
    display: none;
  }

  .service-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta__actions {
    width: 100%;
  }

  .service-cta__btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-cta__actions {
    flex-direction: column;
  }
}