
    /* ─── Design Tokens ─────────────────────────────────────── */
    :root {
      --navy:        #1a2f4a;
      --navy-deep:   #0f1e30;
      --navy-mid:    #24405f;
      --gold:        #b8903c;
      --gold-light:  #d4ac5a;
      --gold-pale:   #f5edd9;
      --cream:       #faf8f4;
      --white:       #ffffff;
      --text:        #1c2b3a;
      --text-soft:   #4a5f74;
      --text-muted:  #7a8fa3;
      --border:      #e4ddd3;
      --border-soft: #ede8e0;
      --shadow-sm:   0 2px 8px rgba(15,30,48,0.07);
      --shadow-md:   0 8px 28px rgba(15,30,48,0.10);
      --shadow-lg:   0 20px 60px rgba(15,30,48,0.14);
      --radius-sm:   10px;
      --radius-md:   16px;
      --radius-lg:   24px;
      --max:         1160px;
      --transition:  0.25s ease;
    }

    /* ─── Reset & Base ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Heebo', Arial, sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

    .wrap {
      width: min(100% - 40px, var(--max));
      margin-inline: auto;
    }

    /* ─── Utility ───────────────────────────────────────────── */
    .gold { color: var(--gold); }
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold-pale);
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid rgba(184,144,60,0.2);
      margin-bottom: 18px;
    }

    /* ─── Buttons ───────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 50px;
      padding: 12px 26px;
      border-radius: 999px;
      font-family: 'Heebo', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 4px 18px rgba(26,47,74,0.3);
    }
    .btn-primary:hover {
      background: var(--navy-mid);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(26,47,74,0.38);
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #2c1d08;
      box-shadow: 0 4px 18px rgba(184,144,60,0.32);
    }
    .btn-gold:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(184,144,60,0.42);
    }
    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--border);
    }
    .btn-outline:hover {
      border-color: var(--navy);
      background: rgba(26,47,74,0.04);
    }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.4);
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.7);
    }

    /* ─── Top Bar ───────────────────────────────────────────── */
    .topbar {
      background: var(--navy-deep);
      color: rgba(255,255,255,0.82);
      font-size: 13.5px;
      padding: 10px 0;
    }
    .topbar .wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 20px;
    }
    .topbar-contact {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .topbar-contact a {
      color: rgba(255,255,255,0.82);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color var(--transition);
    }
    .topbar-contact a:hover { color: rgba(255,255,255,0.96); }
    .topbar-tagline {
      color: rgba(255,255,255,0.55);
      font-size: 13px;
    }

    /* ─── Navbar ────────────────────────────────────────────── */
    .navbar {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-soft);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 12px rgba(15,30,48,0.06);
    }
    .navbar .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 0;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--navy);
      line-height: 1.2;
      white-space: nowrap;
    }
    .brand-mark {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 86px;
      padding: 8px 10px 6px;
      border: 1px solid rgba(26,47,74,0.14);
      border-radius: 14px;
      background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
      box-shadow: 0 8px 20px rgba(15,30,48,0.08);
      flex-shrink: 0;
    }
    .brand-mark-top,
    .brand-mark-bottom {
      width: 100%;
      height: 2px;
      background: rgba(26,47,74,0.55);
      border-radius: 999px;
      opacity: 0.9;
    }
    .brand-mark-bottom {
      margin-top: 2px;
    }
    .brand-mark-text {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 34px;
      font-weight: 700;
      color: rgba(15,30,48,0.86);
      letter-spacing: -1px;
      line-height: 1;
      margin: 4px 0 2px;
    }
    .brand-mark-sub {
      font-family: 'Heebo', sans-serif;
      font-size: 9px;
      font-weight: 700;
      color: rgba(15,30,48,0.72);
      letter-spacing: 0.15px;
      line-height: 1.2;
      text-align: center;
    }
    .brand-copy {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .brand-title {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--navy);
    }
    .brand-title-en {
      font-family: 'Heebo', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--navy-mid);
      letter-spacing: 0.15px;
    }
    .brand span {
      display: block;
      font-family: 'Heebo', sans-serif;
      font-size: 11px;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.5px;
      margin-top: 1px;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }
    .nav-links a {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--text-soft);
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
    .nav-links a:hover {
      color: var(--navy);
      background: rgba(26,47,74,0.05);
    }
    .nav-cta {
      background: var(--navy);
      color: var(--white) !important;
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 3px 12px rgba(26,47,74,0.25);
      transition: var(--transition);
    }
    .nav-cta:hover {
      background: var(--navy-mid) !important;
      transform: translateY(-1px);
      box-shadow: 0 5px 18px rgba(26,47,74,0.32) !important;
    }

    /* ─── Hero ──────────────────────────────────────────────── */
    .hero {
      position: relative;
      padding: 80px 0 0;
      background: linear-gradient(160deg, #f0ece4 0%, #faf8f4 55%, #eef2f7 100%);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -180px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(184,144,60,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(26,47,74,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: end;
      position: relative;
      z-index: 1;
    }
    .hero-content { padding-bottom: 60px; }
    h1 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(32px, 4.5vw, 52px);
      font-weight: 700;
      line-height: 1.22;
      color: var(--navy-deep);
      margin-bottom: 20px;
    }
    h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 17px;
      color: var(--text-soft);
      max-width: 540px;
      margin-bottom: 32px;
      line-height: 1.8;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }
    .trust-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--text-soft);
      font-size: 13.5px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
    }
    .chip svg { flex-shrink: 0; }

    /* Hero Image */
    .hero {
      position: relative;
      padding: 92px 0 0;
      background:
        linear-gradient(115deg, rgba(250,248,244,0.92) 0%, rgba(250,248,244,0.86) 38%, rgba(247,242,233,0.74) 100%),
        url('../assets/images/hero-office-background.webp') center center / cover no-repeat;
      overflow: hidden;
      isolation: isolate;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(250,248,244,0.92) 0%, rgba(250,248,244,0.76) 34%, rgba(15,30,48,0.10) 100%);
      z-index: 0;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: auto 0 0 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(250,248,244,0) 0%, rgba(250,248,244,0.88) 100%);
      z-index: 0;
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 42px;
      align-items: end;
      position: relative;
      z-index: 1;
    }
    .hero-content {
      padding: 24px 0 72px;
    }
    h1 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(34px, 4.6vw, 54px);
      font-weight: 700;
      line-height: 1.18;
      color: var(--navy-deep);
      margin-bottom: 22px;
      text-shadow: 0 1px 0 rgba(255,255,255,0.22);
    }
    h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 17px;
      color: #32485d;
      max-width: 590px;
      margin-bottom: 32px;
      line-height: 1.92;
      background: rgba(255,255,255,0.38);
      backdrop-filter: blur(6px);
      padding: 16px 18px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.28);
      box-shadow: 0 12px 34px rgba(15,30,48,0.06);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 34px;
    }
    .trust-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(228,221,211,0.92);
      color: var(--text-soft);
      font-size: 13.5px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(4px);
    }
    .chip svg { flex-shrink: 0; }

    .hero-image-wrap {
      position: relative;
      align-self: end;
      min-height: 560px;
      display: flex;
      align-items: end;
      justify-content: center;
      z-index: 1;
    }
    .hero-img-bg {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(100%, 520px);
      height: 86%;
      background: linear-gradient(160deg, rgba(26,47,74,0.94) 0%, rgba(36,64,95,0.88) 58%, rgba(184,144,60,0.34) 100%);
      border-radius: 34px 34px 0 0;
      box-shadow: 0 26px 60px rgba(15,30,48,0.18);
    }
    .hero-img-bg::before {
      content: '';
      position: absolute;
      inset: 18px 18px auto;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.36) 50%, transparent 100%);
    }
    .hero-photo-area {
      position: relative;
      z-index: 2;
      text-align: center;
      width: min(100%, 470px);
      padding-top: 34px;
    }
    .photo-placeholder {
      width: 100%;
      height: 640px;
      margin: 0 auto;
      border-radius: 30px 30px 0 0;
      position: relative;
      overflow: hidden;
      background: #d8d0c6;
      box-shadow: 0 26px 60px rgba(15,30,48,0.16);
    }
    .photo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .photo-placeholder::after {
      content: '';
      position: absolute;
      inset: auto 0 0;
      height: 28%;
      background: linear-gradient(180deg, rgba(15,30,48,0) 0%, rgba(15,30,48,0.16) 100%);
      pointer-events: none;
    }
    .photo-label {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      font-size: 11px;
      color: rgba(255,255,255,0.82);
      text-align: center;
      background: rgba(15,30,48,0.38);
      padding: 6px 10px;
      border-radius: 999px;
      backdrop-filter: blur(4px);
    }
    .hero-card-float {
      position: absolute;
      bottom: 40px;
      left: -10px;
      background: rgba(255,255,255,0.96);
      border-radius: 18px;
      padding: 16px 20px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(228,221,211,0.92);
      font-size: 13px;
      z-index: 5;
      max-width: 220px;
      text-align: right;
      backdrop-filter: blur(8px);
    }
    .hero-card-float strong {
      display: block;
      color: var(--navy);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 2px;
    }
    .hero-card-float span { color: var(--text-muted); }

    /* ─── Articles ──────────────────────────────────────────── */
    .articles-bg { background: var(--cream); }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .article-card {
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      border-color: rgba(184,144,60,0.35);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .article-card-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 28px 24px 22px;
      position: relative;
      overflow: hidden;
    }
    .article-card-header::after {
      content: '';
      position: absolute;
      top: -30px;
      left: -30px;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(184,144,60,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .article-tag-chip {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(184,144,60,0.2);
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.4px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(184,144,60,0.25);
      margin-bottom: 12px;
    }
    .article-card-header h2 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.4;
      margin: 0;
    }
    .article-card-body {
      padding: 22px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .article-card-body p {
      font-size: 14.5px;
      color: var(--text-soft);
      line-height: 1.78;
      flex: 1;
      margin-bottom: 18px;
    }
    .article-highlights {
      margin-bottom: 18px;
    }
    .article-highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13.5px;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .article-highlight-item::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      min-width: 6px;
      background: var(--gold);
      border-radius: 50%;
      margin-top: 7px;
    }
    .article-read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--navy);
      border: 1.5px solid var(--border);
      border-radius: 999px;
      padding: 8px 18px;
      transition: var(--transition);
      width: fit-content;
    }
    .article-read-more:hover {
      color: var(--gold);
      border-color: var(--gold);
      background: var(--gold-pale);
    }
    .article-read-more[aria-disabled="true"] {
      cursor: default;
      opacity: 0.78;
      pointer-events: none;
    }

    .article-card-featured {
      grid-column: span 3;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
    }
    .article-card-featured .article-card-header {
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .article-card-featured .article-card-header h2 {
      font-size: 22px;
    }
    .article-card-featured .article-card-body {
      padding: 30px 32px;
    }
    .article-legal-note {
      font-size: 12px;
      color: var(--text-muted);
      border-top: 1px solid var(--border-soft);
      padding-top: 12px;
      margin-top: 6px;
    }
    @media (max-width: 860px) {
      .articles-grid { grid-template-columns: 1fr; }
      .article-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
    }

    /* ─── Stats Bar ─────────────────────────────────────────── */
    .stats-bar {
      background: var(--navy-deep);
      padding: 28px 0;
    }
    .stats-grid {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
    }
    .stat {
      text-align: center;
      color: var(--white);
    }
    .stat-num {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 13px;
      color: rgba(255,255,255,0.74);
      font-weight: 400;
    }

    /* ─── Section Base ──────────────────────────────────────── */
    section { padding: 80px 0; }
    .section-head { margin-bottom: 48px; }
    .section-head h2 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 700;
      color: var(--navy-deep);
      line-height: 1.28;
      margin-bottom: 12px;
    }
    .section-head p {
      font-size: 16.5px;
      color: var(--text-soft);
      max-width: 600px;
      line-height: 1.8;
    }

    /* ─── Services ──────────────────────────────────────────── */
    .services-bg { background: var(--white); }
    .service-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--cream);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
      opacity: 0;
      transition: var(--transition);
    }
    .service-card:hover {
      border-color: rgba(184,144,60,0.3);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--gold-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--gold);
    }
    .service-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: 14.5px;
      color: var(--text-soft);
      line-height: 1.75;
      margin-bottom: 16px;
    }
.service-link {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: var(--transition);
      background: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      font-family: inherit;
    }
    .service-link:hover { color: var(--navy); }

    .service-mini-badge {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      margin-bottom: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(184,144,60,0.14);
      color: var(--gold);
      font-size: 11.5px;
      font-weight: 700;
      border: 1px solid rgba(184,144,60,0.22);
    }

    .service-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(15, 30, 48, 0.58);
      backdrop-filter: blur(4px);
      z-index: 220;
    }
    .service-modal {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 24px;
      z-index: 230;
    }
    .service-modal[hidden],
    .service-modal-backdrop[hidden] {
      display: none !important;
    }
    .service-modal-panel {
      width: min(100%, 920px);
      max-height: min(88vh, 900px);
      background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%);
      border: 1px solid rgba(228,221,211,0.92);
      border-radius: 28px;
      box-shadow: 0 24px 70px rgba(15,30,48,0.22);
      overflow: hidden;
      position: relative;
    }
    .service-modal-scroll {
      padding: 34px 34px 30px;
      overflow: auto;
      max-height: min(88vh, 900px);
      direction: rtl;
      text-align: right;
    }
    .service-modal-kicker {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 999px;
      background: var(--gold-pale);
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 18px;
      border: 1px solid rgba(184,144,60,0.18);
    }
    .service-modal h3 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(28px, 3.2vw, 42px);
      line-height: 1.28;
      color: var(--navy-deep);
      margin-bottom: 14px;
      padding-left: 56px;
    }
    .service-modal-lead {
      font-size: 18px;
      line-height: 1.95;
      color: var(--navy);
      margin-bottom: 24px;
      font-weight: 500;
    }
    .service-modal-content h4 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 24px;
      color: var(--navy-deep);
      line-height: 1.35;
      margin: 30px 0 12px;
    }
    .service-modal-content p {
      font-size: 16.5px;
      line-height: 1.95;
      color: var(--text-soft);
      margin-bottom: 14px;
    }
    .service-modal-content ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 16px 0 12px;
      padding: 0;
    }
    .service-modal-content li {
      position: relative;
      padding: 14px 18px 14px 16px;
      background: linear-gradient(180deg, #fffdfa 0%, #f7f1e8 100%);
      border: 1px solid rgba(184,144,60,0.16);
      border-radius: 16px;
      font-size: 15.5px;
      line-height: 1.85;
      color: var(--text);
    }
    .service-modal-content li::before {
      content: '';
      position: absolute;
      top: 24px;
      right: 10px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 5px rgba(184,144,60,0.12);
    }
    .service-modal-note {
      margin-top: 20px;
      padding: 20px 22px;
      border-radius: 18px;
      background: linear-gradient(180deg, #f7f2e8 0%, #fffdf9 100%);
      border: 1px solid rgba(184,144,60,0.18);
      color: var(--text);
      font-size: 15.5px;
      line-height: 1.9;
    }
    .service-modal-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid var(--border-soft);
    }
    .service-modal-close {
      position: absolute;
      top: 14px;
      left: 14px;
      width: 42px;
      height: 42px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      color: var(--navy);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
      transition: var(--transition);
    }
    .service-modal-close:hover {
      background: var(--gold-pale);
      border-color: var(--gold);
      color: var(--gold);
    }
    body.modal-open {
      overflow: hidden;
    }

    /* ─── Why Choose ────────────────────────────────────────── */
    .why-bg {
      background: linear-gradient(160deg, #eef2f7 0%, var(--cream) 100%);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }
    .why-text { padding-left: 32px; }

    .about-lead {
      font-size: 18px;
      color: var(--navy-deep);
      line-height: 2;
      margin-top: 14px;
      font-weight: 500;
    }
    .about-copy {
      display: grid;
      gap: 16px;
      margin-top: 22px;
    }
    .about-copy p {
      font-size: 16px;
      color: var(--text-soft);
      line-height: 1.95;
      margin: 0;
    }

    .why-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .why-feature {
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      padding: 22px 20px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .why-feature:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .feature-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      color: var(--white);
    }
    .why-feature h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .why-feature p {
      font-size: 13.5px;
      color: var(--text-soft);
      line-height: 1.7;
    }

    /* ─── When to Contact ───────────────────────────────────── */
    .when-bg { background: var(--white); }
    .when-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .when-panel {
      background: var(--cream);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      padding: 32px 28px;
    }
    .when-panel.dark {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
      border-color: transparent;
      color: var(--white);
    }
    .when-panel h3 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .when-panel.dark h3 { color: var(--gold-light); }
    .when-list { display: flex; flex-direction: column; gap: 10px; }
    .when-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14.5px;
      color: var(--text);
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
    }
    .when-panel.dark .when-item {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.9);
    }
    .when-item-dot {
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 6px;
    }

    /* ─── Testimonials ──────────────────────────────────────── */
    .testimonials-bg {
      background: linear-gradient(160deg, #f0ece4 0%, #faf8f4 100%);
    }
    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testimonial {
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      position: relative;
      transition: var(--transition);
    }
    .testimonial:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .quote-mark {
      position: absolute;
      top: 20px;
      left: 22px;
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 60px;
      color: var(--gold-pale);
      line-height: 1;
      user-select: none;
    }
    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }
    .star {
      width: 16px;
      height: 16px;
      color: var(--gold);
    }
    .testimonial p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.78;
      margin-bottom: 20px;
      position: relative;
    }
    
    .midrag-highlight {
      margin: 0 0 28px;
      background: linear-gradient(135deg, rgba(15,30,48,0.98) 0%, rgba(36,64,95,0.96) 58%, rgba(184,144,60,0.92) 100%);
      border-radius: 24px;
      padding: 28px 30px;
      color: var(--white);
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 42px rgba(15,30,48,0.16);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .midrag-highlight::before {
      content: '';
      position: absolute;
      inset: auto auto -60px -40px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .midrag-highlight::after {
      content: '';
      position: absolute;
      top: -70px;
      right: -20px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 72%);
      pointer-events: none;
    }
    .midrag-highlight-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) auto;
      align-items: center;
      gap: 22px;
    }
    .midrag-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.92);
      border: 1px solid rgba(255,255,255,0.18);
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 14px;
      backdrop-filter: blur(6px);
    }
    .midrag-highlight h3 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(24px, 2.5vw, 34px);
      line-height: 1.3;
      margin-bottom: 8px;
      color: var(--white);
    }
    .midrag-highlight p {
      font-size: 16px;
      line-height: 1.9;
      color: rgba(255,255,255,0.86);
      margin: 0;
      max-width: 720px;
    }
    .midrag-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      padding: 14px 24px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffffff 0%, #f7f1e5 100%);
      color: var(--navy-deep);
      font-size: 15px;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(15,30,48,0.18);
      border: 1px solid rgba(255,255,255,0.32);
      transition: var(--transition);
      white-space: nowrap;
    }
    .midrag-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 36px rgba(15,30,48,0.24);
      color: var(--navy);
    }
    .midrag-link svg {
      flex-shrink: 0;
    }

    .midrag-link-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: #2c1d08;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
      flex-shrink: 0;
    }
.testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid var(--border-soft);
    }
    .author-avatar {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 15px;
      flex-shrink: 0;
    }
    .author-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--navy);
    }
    .author-title {
      font-size: 12.5px;
      color: var(--text-muted);
    }

    /* ─── CTA Section ───────────────────────────────────────── */
    .cta-section { padding: 0 0 80px; }
    .cta-box {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
      border-radius: var(--radius-lg);
      padding: 56px 48px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -60px;
      left: -60px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(184,144,60,0.15) 0%, transparent 70%);
    }
    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -40px;
      right: 80px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    }
    .cta-content { position: relative; z-index: 1; }
    .cta-content h2 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .cta-content p {
      font-size: 16px;
      color: rgba(255,255,255,0.75);
      max-width: 520px;
      line-height: 1.8;
    }
    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }

    /* ─── Footer ────────────────────────────────────────────── */
    .footer {
      background: var(--navy-deep);
      color: rgba(255,255,255,0.85);
      padding: 56px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 32px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
    }
    .footer-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 8px;
      transition: color var(--transition);
    }
    .footer-contact-item a { color: inherit; }
    .footer-contact-item:hover { color: var(--gold-light); }
    .footer h2 {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }
    .footer ul { display: flex; flex-direction: column; gap: 8px; }
    .footer ul li a {
      font-size: 13.5px;
      color: rgba(255,255,255,0.55);
      transition: color var(--transition);
    }
    .footer ul li a:hover { color: var(--gold-light); }
    .footer-bottom {
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p {
      font-size: 12.5px;
      color: rgba(255,255,255,0.35);
    }
    .footer-gold-line {
      height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%);
    }

    /* ─── Animations ────────────────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }


    /* ─── QA & Boutique Refinements ───────────────────────── */
    html, body {
      max-width: 100%;
    }
    body {
      text-rendering: optimizeLegibility;
    }
    section[id], div[id] {
      scroll-margin-top: 96px;
    }
    h1, h2, h3, h4 {
      text-wrap: balance;
    }
    p, li, .author-title, .service-card p, .about-copy p, .article-full-body p {
      overflow-wrap: anywhere;
    }
    a:focus-visible,
    button:focus-visible {
      outline: 3px solid rgba(184,144,60,0.38);
      outline-offset: 3px;
    }
    .section-head {
      max-width: 760px;
    }
    .section-head p {
      max-width: 680px;
    }
    .navbar .wrap {
      min-height: 82px;
    }
    .nav-links {
      align-items: center;
    }
    .hero-sub,
    .cta-content p,
    .about-copy p {
      max-width: 68ch;
    }
    .service-cards,
    .testimonial-cards {
      align-items: stretch;
    }
    .service-card,
    .testimonial {
      height: 100%;
    }
    .testimonial {
      border-radius: 20px;
    }
    .testimonial p {
      min-height: 132px;
    }
    .midrag-highlight {
      background: linear-gradient(135deg, #13263c 0%, #1a2f4a 62%, #284566 100%);
      border: 1px solid rgba(184,144,60,0.18);
      box-shadow: 0 18px 44px rgba(15,30,48,0.14);
    }
    .midrag-badge {
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.16);
    }
    .midrag-link {
      min-width: 250px;
    }
    .service-modal-panel {
      width: min(100%, 860px);
    }
    .service-modal-scroll::-webkit-scrollbar {
      width: 10px;
    }
    .service-modal-scroll::-webkit-scrollbar-thumb {
      background: rgba(184,144,60,0.35);
      border-radius: 999px;
    }
    .article-full,
    .service-modal-panel,
    .testimonial,
    .service-card,
    .why-feature,
    .when-panel,
    .cta-box {
      will-change: auto;
    }


    /* ─── Responsive ────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-box { grid-template-columns: 1fr; }
      .cta-actions { flex-direction: row; flex-wrap: wrap; }
      .service-cards { grid-template-columns: repeat(2, 1fr); }
      .testimonial-cards { grid-template-columns: repeat(2, 1fr); }
      .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 28px; }
    }

    @media (max-width: 860px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-image-wrap { min-height: auto; width: min(100%, 420px); margin: 8px auto 0; }
      .hero-photo-area { width: 100%; }
      .photo-placeholder { height: 520px; }
      .hero-card-float { left: 12px; bottom: 18px; }
      .why-grid { grid-template-columns: 1fr; }
      .why-text { padding-left: 0; order: -1; }
      .about-lead { font-size: 17px; }
      .about-copy p { font-size: 15.5px; }
      .when-grid { grid-template-columns: 1fr; }
      .testimonial-cards { grid-template-columns: 1fr; }
      .midrag-highlight-inner { grid-template-columns: 1fr; }
      .midrag-link { width: 100%; }
      .hero-actions { width: 100%; }
      .hero-actions .btn { flex: 1 1 220px; }
      .cta-actions .btn { flex: 1 1 220px; }
    }

    @media (max-width: 640px) {
      .brand {
        justify-content: center;
        gap: 10px;
      }
      .brand-mark {
        min-width: 72px;
        padding: 7px 8px 5px;
      }
      .brand-mark-text {
        font-size: 28px;
      }
      .brand-mark-sub {
        font-size: 8px;
      }
      .brand-title {
        font-size: 19px;
      }
      .brand-title-en {
        font-size: 11px;
      }

      .wrap { width: min(100% - 18px, var(--max)); }
      .midrag-highlight {
        padding: 22px 18px;
        border-radius: 20px;
      }
      .midrag-highlight h3 {
        font-size: 24px;
      }
      .midrag-highlight p {
        font-size: 15px;
      }
      .topbar .wrap { flex-direction: column; gap: 4px; }
      .topbar-tagline { display: none; }
      .navbar .wrap { flex-direction: column; align-items: stretch; gap: 12px; padding: 12px 0; }
      .brand { text-align: center; white-space: normal; }
      .nav-links { justify-content: center; flex-wrap: wrap; }
      .nav-links a { text-align: center; }
      .hero, section { padding-top: 64px; }
      .hero-content { padding: 12px 0 24px; }
      .photo-placeholder { height: 420px; border-radius: 24px 24px 0 0; }
      .hero-img-bg { width: 100%; height: 88%; border-radius: 24px 24px 0 0; }
      .hero-card-float { position: static; margin: 14px 12px 0 auto; max-width: calc(100% - 24px); }
      .hero-actions,
      .cta-actions { flex-direction: column; }
      .hero-actions .btn,
      .cta-actions .btn,
      .midrag-link { width: 100%; }
      .service-cards { grid-template-columns: 1fr; }
      .why-features { grid-template-columns: 1fr; }
      .cta-box { padding: 32px 24px; }
      .footer-grid { grid-template-columns: 1fr; }
      .stats-grid { gap: 28px 40px; }
      .service-modal { padding: 12px; }
      .service-modal-panel { border-radius: 22px; }
      .service-modal-scroll { padding: 22px 16px 20px; }
      .service-modal h3 { padding-left: 0; font-size: 30px; }
      .service-modal-actions { flex-direction: column; }
      .service-modal-actions .btn { width: 100%; }
    }
  
    /* ─── Full Articles Reader ───────────────────────────── */
    .articles-bg {
      background:
        radial-gradient(circle at top left, rgba(184,144,60,0.10) 0%, transparent 22%),
        radial-gradient(circle at bottom right, rgba(26,47,74,0.06) 0%, transparent 24%),
        linear-gradient(180deg, #f6f1e8 0%, #fcfbf8 30%, #f4efe6 100%);
      position: relative;
      overflow: hidden;
    }
    .articles-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.52) 18%, transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 24%);
      pointer-events: none;
      opacity: 0.45;
    }
    .articles-wrap {
      width: min(100% - 32px, 1420px);
      position: relative;
      z-index: 1;
    }
    .articles-bg .section-head {
      max-width: 860px;
      margin-right: 0;
      margin-left: auto;
      text-align: right;
    }
    .articles-bg .section-head p {
      max-width: 760px;
      margin-right: 0;
      margin-left: auto;
    }
    .article-read-more[href] {
      cursor: pointer;
      text-decoration: none;
    }
    .articles-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }
    .article-card {
      min-height: 100%;
      box-shadow: 0 14px 36px rgba(15,30,48,0.08);
      border-radius: 24px;
      position: relative;
      isolation: isolate;
    }
    .article-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(180deg, rgba(184,144,60,0.26), rgba(26,47,74,0.05));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      pointer-events: none;
      opacity: 0.9;
    }
    .article-card-header {
      padding: 34px 30px 24px;
    }
    .article-card-header h2 {
      font-size: clamp(22px, 2vw, 28px);
      line-height: 1.36;
      text-wrap: balance;
    }
    .article-card-body {
      padding: 28px 30px 30px;
      text-align: right;
    }
    .article-card-body p {
      font-size: 15.5px;
      line-height: 1.95;
    }
    .article-highlights {
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }
    .article-highlight-item {
      align-items: flex-start;
      padding: 12px 14px;
      border-radius: 14px;
      background: linear-gradient(180deg, #fffdfa 0%, #f8f3ea 100%);
      border: 1px solid rgba(184,144,60,0.16);
    }
    .article-highlight-item::before {
      margin-top: 9px;
      margin-right: 2px;
    }
    .article-read-more {
      margin-top: auto;
      min-height: 46px;
      padding: 10px 22px;
      background: var(--white);
      box-shadow: 0 8px 18px rgba(15,30,48,0.05);
    }
    .article-card-featured {
      grid-column: span 2;
      grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.28fr);
    }
    .article-card-featured .article-card-header,
    .article-card-featured .article-card-body {
      min-height: 100%;
    }
    .article-card-featured .article-card-header {
      padding: 42px 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .article-card-featured .article-card-header h2 {
      font-size: clamp(28px, 2.6vw, 36px);
    }
    .article-card-featured .article-card-body {
      padding: 34px 36px;
    }
    .articles-full-wrap {
      margin-top: 26px;
      padding-top: 26px;
      border-top: 1px solid rgba(184,144,60,0.18);
      display: grid;
      gap: 14px;
      width: 100%;
      align-items: start;
      justify-items: stretch;
    }
    .articles-reader-head::before {
      content: '';
      display: block;
      width: min(100%, 160px);
      height: 2px;
      margin: 0 0 18px auto;
      background: linear-gradient(90deg, transparent 0%, rgba(184,144,60,0.25) 20%, var(--gold) 100%);
      border-radius: 999px;
    }
    .article-full {
      width: min(100%, 1220px);
      margin: 0 0 0 auto;
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(228,221,211,0.92);
      border-radius: 28px;
      box-shadow: 0 16px 42px rgba(15,30,48,0.08);
      overflow: hidden;
      scroll-margin-top: 128px;
      direction: rtl;
      text-align: right;
      backdrop-filter: blur(8px);
    }
    .article-full-hero {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 58%, #315173 100%);
      color: var(--white);
      padding: 26px 42px 22px;
      position: relative;
      overflow: hidden;
    }
    .article-full-hero::before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(180deg, var(--gold-light) 0%, rgba(255,255,255,0.28) 100%);
      opacity: 0.95;
    }
    .article-full-hero::after {
      content: '';
      position: absolute;
      top: -60px;
      left: -60px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(184,144,60,0.20) 0%, transparent 70%);
    }
    .article-full-meta {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: center;
      gap: 10px 12px;
      margin-bottom: 8px;
    }
    .article-full-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      background: rgba(184,144,60,0.22);
      color: #f4d58f;
      border: 1px solid rgba(255,255,255,0.18);
      letter-spacing: 0.2px;
    }
    .article-full-hero h3 {
      position: relative;
      z-index: 1;
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(33px, 3.3vw, 46px);
      line-height: 1.2;
      margin: 0 0 10px auto;
      color: var(--white);
      max-width: 1040px;
    }
    .article-full-subtitle {
      position: relative;
      z-index: 1;
      font-size: 17px;
      line-height: 1.85;
      color: rgba(255,255,255,0.86);
      max-width: 960px;
      margin: 0 0 0 auto;
    }
    .article-full-body {
      padding: 30px 38px 34px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(252,251,248,0.99) 100%);
    }
    .article-full-body > * {
      width: min(100%, 1000px);
      max-width: 1000px;
      margin: 0 0 0 auto;
    }
    .article-full-body p {
      font-size: 17px;
      line-height: 1.95;
      color: var(--text);
      margin-bottom: 16px;
    }
    .article-full-body h4 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 31px;
      color: var(--navy-deep);
      margin: 38px 0 16px auto;
      line-height: 1.32;
      max-width: 1120px;
      position: relative;
      padding-right: 18px;
    }
    .article-full-body h4::before {
      content: '';
      position: absolute;
      right: 0;
      top: 6px;
      width: 5px;
      height: calc(100% - 12px);
      border-radius: 999px;
      background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
    }
    .article-full-body ul {
      list-style: none;
      display: grid;
      gap: 14px;
      margin: 16px 0 26px auto;
      padding: 0;
    }
    .article-full-body li {
      position: relative;
      padding: 16px 22px 16px 18px;
      font-size: 16.5px;
      color: var(--text-soft);
      line-height: 1.95;
      background: linear-gradient(180deg, #fffdfa 0%, #f7f1e7 100%);
      border: 1px solid rgba(184,144,60,0.18);
      border-radius: 18px;
      box-shadow: 0 8px 18px rgba(15,30,48,0.04);
    }
    .article-full-body li::before {
      content: '';
      position: absolute;
      top: 26px;
      right: 11px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(184,144,60,0.12);
    }
    .article-full-note,
    .article-full-checklist,
    .article-full-example {
      background: linear-gradient(180deg, #fdfbf7 0%, #f6efe2 100%);
      border: 1px solid rgba(184,144,60,0.18);
      border-radius: 22px;
      padding: 28px 30px;
      margin: 28px 0 30px auto;
      box-shadow: 0 10px 22px rgba(15,30,48,0.05);
      position: relative;
      overflow: hidden;
    }
    .article-full-note::before,
    .article-full-checklist::before,
    .article-full-example::before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(180deg, var(--gold) 0%, rgba(184,144,60,0.25) 100%);
    }
    .article-full-checklist h5,
    .article-full-note h5,
    .article-full-example h5 {
      font-size: 18px;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .article-inline-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 10px;
      width: min(100%, 1000px);
      margin: 18px 0 0 auto;
      padding-top: 20px;
      border-top: 1px solid var(--border-soft);
    }
    .article-inline-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 10px 20px;
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--navy);
      font-size: 13.5px;
      font-weight: 700;
      transition: var(--transition);
      background: var(--white);
      box-shadow: 0 8px 18px rgba(15,30,48,0.04);
    }
    .article-inline-nav a:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: var(--gold-pale);
    }
    @media (max-width: 1024px) {
      .articles-wrap {
        width: min(100% - 28px, 1180px);
      }
      .articles-grid {
        grid-template-columns: 1fr;
      }
      .article-card-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
      }
      .article-card-featured .article-card-header,
      .article-card-featured .article-card-body {
        padding: 30px 26px;
      }
      .articles-reader-head {
        margin: 26px 0 14px auto;
      }
      .article-full {
        width: 100%;
      }
      .article-full-hero,
      .article-full-body {
        padding: 24px 22px;
      }
      .article-full-body > *,
      .article-full-hero h3,
      .article-full-subtitle,
      .articles-reader-head {
        width: 100%;
        max-width: 100%;
      }
    }
    @media (max-width: 640px) {
      .articles-wrap {
        width: min(100% - 16px, 100%);
      }
      .article-card-header,
      .article-card-body,
      .article-card-featured .article-card-header,
      .article-card-featured .article-card-body {
        padding: 24px 18px;
      }
      .articles-reader-head {
        margin: 24px 0 14px auto;
      }
      .articles-reader-head h2 {
        font-size: 26px;
      }
      .article-full {
        border-radius: 22px;
      }
      .article-full-hero,
      .article-full-body {
        padding: 18px 14px;
      }
      .article-full-hero h3 {
        font-size: 30px;
      }
      .article-full-subtitle,
      .article-full-body p,
      .article-full-body li {
        font-size: 15.5px;
      }
      .article-full-body h4 {
        font-size: 24px;
      }
    }


    /* ─── Articles Visual Refinement ───────────────────────── */
    .article-tag-chip {
      font-size: 13px;
      padding: 6px 14px;
      gap: 7px;
      letter-spacing: 0.25px;
    }
    .article-card-header h2 {
      line-height: 1.28;
    }
    .article-card-featured .article-card-header {
      justify-content: flex-start;
      gap: 22px;
      padding-top: 34px;
    }
    .article-card-featured .article-card-header h2 {
      margin-top: 0;
      font-size: clamp(32px, 2.8vw, 40px);
    }
    @media (max-width: 1024px) {
      .article-card-featured .article-card-header {
        gap: 16px;
        padding-top: 28px;
      }
      .article-card-featured .article-card-header h2 {
        font-size: clamp(28px, 6vw, 34px);
      }
    }
    @media (max-width: 640px) {
      .article-tag-chip {
        font-size: 12px;
        padding: 6px 12px;
      }
      .article-card-featured .article-card-header {
        gap: 14px;
        padding-top: 22px;
      }
      .article-card-featured .article-card-header h2 {
        font-size: 29px;
      }
    }

  

    /* ─── Boutique Media for Services & Articles ───────────────── */
    .service-card,
    .article-card {
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,248,244,0.96) 100%);
    }
    .service-card-media,
    .article-card-media {
      position: relative;
      overflow: hidden;
      background: #e9e3d8;
    }
    .service-card-media {
      margin: -28px -24px 20px;
      border-radius: 16px 16px 0 0;
      border-bottom: 1px solid rgba(228,221,211,0.9);
      aspect-ratio: 1.5 / 1;
    }
    .article-card-media {
      aspect-ratio: 1.9 / 1;
      border-bottom: 1px solid rgba(228,221,211,0.88);
    }
    .service-card-media::after,
    .article-card-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,30,48,0.02) 0%, rgba(15,30,48,0.16) 100%);
      pointer-events: none;
    }
    .service-card-media img,
    .article-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
      transition: transform .45s ease;
      filter: saturate(0.88) contrast(0.96) brightness(1.01);
    }
    .service-card:hover .service-card-media img,
    .article-card:hover .article-card-media img {
      transform: scale(1.05);
    }
    .service-card h3,
    .article-card h3,
    .article-card h2 {
      text-wrap: pretty;
    }
    .article-card {
      box-shadow: 0 12px 34px rgba(15,30,48,0.07);
    }
    .article-card-featured {
      grid-column: span 1;
      display: flex;
      flex-direction: column;
    }
    .article-card-featured .article-card-header,
    .article-card-featured .article-card-body {
      padding: 28px 28px 24px;
    }
    .article-card-featured .article-card-header h2 {
      font-size: clamp(24px, 2.2vw, 30px);
    }
    .article-card-header {
      background: linear-gradient(135deg, rgba(26,47,74,0.98) 0%, rgba(36,64,95,0.96) 100%);
    }
    .article-card-header::after {
      opacity: .38;
    }
    .services-bg .section-head,
    .articles-bg .section-head {
      margin-bottom: 34px;
    }
    @media (max-width: 1024px) {
      .service-card-media {
        aspect-ratio: 1.65 / 1;
      }
      .article-card-media {
        aspect-ratio: 1.8 / 1;
      }
    }
    @media (max-width: 640px) {
      .service-card-media {
        margin: -28px -24px 16px;
        aspect-ratio: 1.7 / 1;
      }
      .article-card-media {
        aspect-ratio: 1.55 / 1;
      }
      .article-card-featured .article-card-header,
      .article-card-featured .article-card-body {
        padding: 22px 18px 20px;
      }
    }


/* ─── Stage 2 | Hero Precision Upgrade ───────────────────── */
.hero {
  padding: 104px 0 0;
  min-height: min(920px, calc(100vh - 72px));
  background-position: center center;
}
.hero::before {
  background: linear-gradient(90deg, rgba(250,248,244,0.94) 0%, rgba(250,248,244,0.82) 33%, rgba(15,30,48,0.14) 100%);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 54px;
  align-items: stretch;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 0 84px;
  max-width: 640px;
}
.hero .tag {
  margin-bottom: 22px;
  width: fit-content;
  box-shadow: 0 8px 24px rgba(15,30,48,0.06);
}
h1 {
  max-width: 11.7ch;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  max-width: 61ch;
  font-size: 17.5px;
  line-height: 1.95;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: 0 16px 36px rgba(15,30,48,0.08);
}
.hero-actions {
  gap: 14px;
  margin-bottom: 28px;
}
.hero-actions .btn {
  min-height: 54px;
  padding-inline: 28px;
}
.trust-chips {
  gap: 12px;
  max-width: 640px;
}
.chip {
  background: rgba(255,255,255,0.92);
  border-color: rgba(228,221,211,0.95);
}
.hero-image-wrap {
  min-height: 690px;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-img-bg {
  left: auto;
  right: 16px;
  transform: none;
  width: min(100%, 520px);
  height: 84%;
  border-radius: 38px 38px 0 0;
  background: linear-gradient(165deg, rgba(18,34,53,0.96) 0%, rgba(28,50,75,0.92) 52%, rgba(184,144,60,0.46) 100%);
}
.hero-img-bg::after {
  content: '';
  position: absolute;
  inset: 14px 14px auto auto;
  width: calc(100% - 28px);
  height: calc(100% - 14px);
  border-radius: 28px 28px 0 0;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
}
.hero-photo-area {
  width: min(100%, 500px);
  padding-top: 48px;
}
.photo-placeholder {
  height: clamp(590px, 48vw, 720px);
  border-radius: 36px 36px 0 0;
  background: linear-gradient(180deg, #d9d1c6 0%, #c8beb1 100%);
}
.photo-placeholder img {
  object-position: center 12%;
}
.photo-label {
  right: 20px;
  bottom: 20px;
  padding: 7px 12px;
  font-size: 11.5px;
}
.hero-card-float {
  left: -26px;
  bottom: 34px;
  max-width: 246px;
  padding: 18px 20px;
  border-radius: 20px;
}
.hero-card-float strong {
  font-size: 15.5px;
  margin-bottom: 4px;
}
.hero-card-float span {
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-top: 88px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 32px;
  }
  .hero-content {
    padding-bottom: 54px;
  }
  h1 {
    font-size: clamp(36px, 5vw, 52px);
    max-width: 12.5ch;
  }
  .hero-image-wrap {
    min-height: 620px;
  }
  .photo-placeholder {
    height: 600px;
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 72px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-content {
    max-width: none;
    padding: 10px 0 8px;
  }
  h1 {
    max-width: none;
    font-size: clamp(34px, 9vw, 48px);
  }
  .hero-sub {
    max-width: none;
    font-size: 16.5px;
    padding: 16px 16px;
  }
  .hero-image-wrap {
    width: min(100%, 470px);
    min-height: auto;
    margin: 10px auto 0;
    justify-content: center;
  }
  .hero-img-bg {
    right: 0;
    width: 100%;
    height: 85%;
  }
  .hero-photo-area {
    width: 100%;
    padding-top: 28px;
  }
  .photo-placeholder {
    height: 560px;
  }
  .hero-card-float {
    left: 10px;
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 58px;
  }
  .hero-content {
    padding-top: 0;
  }
  .hero-sub {
    font-size: 15.8px;
    line-height: 1.9;
    background: rgba(255,255,255,0.62);
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-image-wrap {
    width: min(100%, 400px);
  }
  .hero-photo-area {
    padding-top: 22px;
  }
  .photo-placeholder {
    height: 430px;
    border-radius: 28px 28px 0 0;
  }
  .photo-placeholder img {
    object-position: center 10%;
  }
  .hero-img-bg {
    border-radius: 28px 28px 0 0;
    height: 86%;
  }
  .hero-card-float {
    position: static;
    margin: 14px 0 0 auto;
    max-width: 100%;
  }
}


/* ─── Stage 3: Articles Optimization ───────────────────── */
.articles-wrap {
  width: min(100% - 32px, 1320px);
}
.articles-bg .section-head {
  margin-bottom: 42px;
}
.articles-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
}
.article-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15,30,48,0.08);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15,30,48,0.12);
}
.article-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}
.article-card-media {
  aspect-ratio: 1.72 / 1;
}
.article-card-featured .article-card-media {
  aspect-ratio: auto;
  min-height: 100%;
}
.article-card-header {
  padding: 28px 28px 20px;
}
.article-card-body {
  padding: 22px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card-header h2 {
  font-size: clamp(22px, 1.85vw, 29px);
  line-height: 1.3;
  min-height: 2.6em;
}
.article-card-featured .article-card-header {
  padding: 34px 32px 22px;
}
.article-card-featured .article-card-header h2 {
  font-size: clamp(30px, 2.6vw, 38px);
  min-height: auto;
}
.article-card-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-featured .article-card-body p {
  -webkit-line-clamp: 5;
  font-size: 15.5px;
}
.article-highlights {
  gap: 9px;
  margin-bottom: 18px;
}
.article-highlight-item {
  font-size: 13.5px;
  line-height: 1.7;
  padding: 11px 13px;
}
.article-read-more {
  margin-top: auto;
  align-self: flex-start;
  min-height: 48px;
  padding-inline: 20px;
  font-size: 14px;
  font-weight: 800;
}
.article-legal-note {
  font-size: 12.5px;
  line-height: 1.7;
}
.articles-reader-head {
  width: min(100%, 1180px);
  margin: 36px 0 10px auto;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(228,221,211,0.9);
  box-shadow: 0 12px 28px rgba(15,30,48,0.06);
  backdrop-filter: blur(8px);
  text-align: right;
}
.articles-reader-head h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--navy-deep);
  line-height: 1.3;
  margin-bottom: 8px;
}
.articles-reader-head p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 70ch;
}
.articles-full-wrap {
  gap: 18px;
  margin-top: 8px;
}
.article-full {
  width: min(100%, 1180px);
  box-shadow: 0 18px 46px rgba(15,30,48,0.08);
}
.article-full-hero {
  padding: 24px 34px 20px;
}
.article-full-hero h3 {
  font-size: clamp(31px, 3vw, 42px);
}
.article-full-subtitle {
  font-size: 16px;
  max-width: 72ch;
}
.article-full-body {
  padding: 28px 32px 34px;
}
.article-full-body > * {
  max-width: 920px;
}
.article-inline-nav {
  gap: 12px;
}
.article-inline-nav a {
  min-height: 44px;
}
@media (max-width: 1100px) {
  .article-card { grid-column: span 6; }
  .article-card-featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .articles-wrap { width: min(100% - 22px, 100%); }
  .articles-grid { grid-template-columns: 1fr; gap: 20px; }
  .article-card { grid-column: auto; }
  .article-card-featured { display: flex; }
  .article-card-header,
  .article-card-body,
  .article-card-featured .article-card-header,
  .article-card-featured .article-card-body { padding-inline: 20px; }
  .articles-reader-head { margin-top: 28px; padding: 18px 18px; }
  .article-full,
  .articles-reader-head { width: 100%; }
}
@media (max-width: 640px) {
  .articles-bg .section-head { margin-bottom: 30px; }
  .article-card,
  .article-full,
  .articles-reader-head { border-radius: 20px; }
  .article-card-media { aspect-ratio: 1.48 / 1; }
  .article-card-header,
  .article-card-body,
  .article-card-featured .article-card-header,
  .article-card-featured .article-card-body { padding: 18px 16px; }
  .article-card-header h2 { font-size: 24px; min-height: auto; }
  .article-card-featured .article-card-header h2 { font-size: 28px; }
  .article-card-body p,
  .article-card-featured .article-card-body p { -webkit-line-clamp: 5; }
  .article-highlight-item { font-size: 13px; }
  .articles-reader-head h2 { font-size: 24px; }
  .articles-reader-head p { font-size: 14.5px; }
  .article-full-hero,
  .article-full-body { padding: 18px 14px; }
}


/* ─── Articles reader cleanup after card grid ───────────────── */
.articles-reader-head {
  display: none !important;
}
.articles-full-wrap {
  position: relative;
  gap: 20px;
  margin-top: 26px;
  padding-top: 24px;
  width: 100%;
}
.articles-full-wrap::before {
  content: '';
  display: block;
  width: min(100%, 1180px);
  height: 1px;
  margin: 0 0 4px auto;
  background: linear-gradient(90deg, transparent 0%, rgba(184,144,60,0.18) 16%, rgba(26,47,74,0.14) 50%, rgba(184,144,60,0.18) 84%, transparent 100%);
  border-radius: 999px;
}
.articles-full-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 1180px);
  height: 76px;
  background: linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: 24px;
}
.article-full {
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .articles-full-wrap {
    margin-top: 22px;
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .articles-full-wrap {
    margin-top: 18px;
    padding-top: 16px;
  }
}

/* ─── Stage 6 | Hero Composition Refinement ───────────────── */
.hero {
  padding: 92px 0 0;
  min-height: min(900px, calc(100vh - 54px));
  background-position: center 56%;
  background-size: cover;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(250,248,244,0.86) 0%, rgba(250,248,244,0.72) 26%, rgba(250,248,244,0.52) 48%, rgba(15,30,48,0.18) 100%),
    radial-gradient(circle at 78% 34%, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 34%);
}
.hero::after {
  height: 210px;
  background: linear-gradient(180deg, rgba(250,248,244,0) 0%, rgba(250,248,244,0.94) 100%);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 34px;
  align-items: center;
}
.hero-content {
  position: relative;
  max-width: 660px;
  padding: 32px 0 96px;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 8px -18px 42px -22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.16) 100%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 20px 46px rgba(15,30,48,0.06);
  backdrop-filter: blur(4px);
  z-index: -1;
}
.hero .tag {
  margin-bottom: 18px;
}
h1 {
  max-width: 12ch;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.28);
}
.hero-sub {
  max-width: 59ch;
  padding: 18px 22px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: 0 16px 38px rgba(15,30,48,0.08);
}
.hero-actions {
  margin-bottom: 24px;
}
.hero-image-wrap {
  min-height: 720px;
  justify-content: flex-start;
  padding-inline-start: 6px;
}
.hero-img-bg {
  right: auto;
  left: 0;
  width: min(100%, 560px);
  height: 86%;
  border-radius: 42px 42px 0 0;
  background: linear-gradient(168deg, rgba(17,33,52,0.97) 0%, rgba(26,47,74,0.94) 50%, rgba(184,144,60,0.54) 100%);
  box-shadow: 0 30px 70px rgba(15,30,48,0.20);
}
.hero-img-bg::before {
  inset: 18px 22px auto;
}
.hero-img-bg::after {
  inset: 16px 16px auto auto;
  width: calc(100% - 32px);
  height: calc(100% - 16px);
  border-radius: 32px 32px 0 0;
}
.hero-photo-area {
  width: min(100%, 540px);
  padding-top: 42px;
}
.photo-placeholder {
  height: clamp(610px, 51vw, 760px);
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.photo-placeholder img {
  object-position: center 10%;
}
.hero-card-float {
  left: 18px;
  bottom: 26px;
  max-width: 230px;
  background: rgba(255,255,255,0.94);
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    gap: 28px;
  }
  .hero-content::before {
    inset: 10px -8px 34px -10px;
  }
  .hero-image-wrap {
    min-height: 660px;
  }
}

@media (max-width: 1100px) {
  .hero {
    padding-top: 84px;
    min-height: auto;
    background-position: center 52%;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.88fr);
  }
  h1 {
    font-size: clamp(38px, 4.9vw, 56px);
  }
  .hero-content {
    padding-bottom: 62px;
  }
  .hero-image-wrap {
    min-height: 620px;
  }
  .photo-placeholder {
    height: 590px;
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 72px;
    background-position: center 48%;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-content {
    max-width: none;
    padding: 8px 0 10px;
  }
  .hero-content::before {
    inset: 0;
    border-radius: 26px;
  }
  h1 {
    max-width: none;
    font-size: clamp(34px, 8.6vw, 50px);
  }
  .hero-sub {
    max-width: none;
  }
  .hero-image-wrap {
    width: min(100%, 500px);
    min-height: auto;
    justify-content: center;
    padding-inline-start: 0;
  }
  .hero-img-bg {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
    height: 85%;
    border-radius: 32px 32px 0 0;
  }
  .hero-photo-area {
    width: 100%;
    padding-top: 30px;
  }
  .photo-placeholder {
    height: 560px;
    border-radius: 32px 32px 0 0;
  }
  .hero-card-float {
    left: 12px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 58px;
  }
  .hero-content::before {
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.18) 100%);
  }
  .hero-sub {
    font-size: 15.6px;
    line-height: 1.88;
    padding: 16px 16px;
  }
  .hero-image-wrap {
    width: min(100%, 410px);
  }
  .hero-photo-area {
    padding-top: 22px;
  }
  .photo-placeholder {
    height: 450px;
    border-radius: 28px 28px 0 0;
  }
  .hero-img-bg {
    border-radius: 28px 28px 0 0;
  }
  .hero-card-float {
    position: static;
    margin: 14px 0 0 auto;
    max-width: 100%;
  }
}


/* ─── Stage 8 | Hero Rebalance Refinement ───────────────── */
.hero {
  padding-top: 88px;
  min-height: min(860px, calc(100vh - 72px));
  background-position: center center;
}
.hero::before {
  background: linear-gradient(90deg, rgba(250,248,244,0.92) 0%, rgba(250,248,244,0.80) 34%, rgba(255,255,255,0.50) 58%, rgba(15,30,48,0.08) 100%);
}
.hero::after {
  height: 150px;
  background: linear-gradient(180deg, rgba(250,248,244,0) 0%, rgba(250,248,244,0.82) 100%);
}
.hero-grid {
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  gap: 48px;
  align-items: start;
}
.hero-content {
  padding: 8px 0 40px;
  justify-content: flex-start;
}
.hero .tag {
  margin-bottom: 18px;
}
.hero-sub {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.60);
  box-shadow: 0 14px 34px rgba(15,30,48,0.07);
}
.hero-image-wrap {
  min-height: 640px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  transform: translateY(-34px);
}
.hero-img-bg {
  right: auto;
  left: 12px;
  width: min(100%, 500px);
  height: 85%;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(165deg, rgba(22,40,61,0.94) 0%, rgba(33,57,84,0.84) 58%, rgba(184,144,60,0.28) 100%);
  box-shadow: 0 24px 56px rgba(15,30,48,0.16);
}
.hero-img-bg::after {
  border-color: rgba(255,255,255,0.12);
}
.hero-photo-area {
  width: min(100%, 490px);
  padding-top: 0;
}
.photo-placeholder {
  height: clamp(600px, 46vw, 690px);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 22px 46px rgba(15,30,48,0.14);
}
.photo-placeholder img {
  object-position: center 10%;
}
.hero-card-float {
  left: -12px;
  bottom: 26px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(15,30,48,0.14);
}
@media (max-width: 1200px) {
  .hero-grid {
    gap: 34px;
  }
  .hero-content {
    padding-top: 2px;
  }
  .hero-image-wrap {
    min-height: 610px;
    transform: translateY(-24px);
  }
  .photo-placeholder {
    height: 580px;
  }
}
@media (max-width: 860px) {
  .hero {
    padding-top: 72px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-content {
    padding: 4px 0 8px;
  }
  .hero-sub {
    background: rgba(255,255,255,0.74);
  }
  .hero-image-wrap {
    transform: none;
    min-height: auto;
    width: min(100%, 470px);
    margin: 8px auto 0;
    justify-content: center;
  }
  .hero-img-bg {
    left: 0;
    width: 100%;
    height: 85%;
  }
  .hero-photo-area {
    width: 100%;
  }
  .photo-placeholder {
    height: 560px;
  }
  .hero-card-float {
    left: 10px;
    bottom: 18px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 58px;
  }
  .hero-content {
    padding-top: 0;
  }
  .hero-image-wrap {
    width: min(100%, 400px);
  }
  .photo-placeholder {
    height: 430px;
    border-radius: 28px 28px 0 0;
  }
  .hero-img-bg {
    border-radius: 28px 28px 0 0;
  }
  .hero-card-float {
    position: static;
    margin: 14px 0 0 auto;
    max-width: 100%;
  }
}

/* ─── Stage 8.1: Remove blue block behind portrait ───────────────────── */
.hero-img-bg,
.hero-img-bg::before,
.hero-img-bg::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-image-wrap {
  background: transparent !important;
}

.photo-placeholder {
  box-shadow: 0 22px 48px rgba(15,30,48,0.14) !important;
}

@media (max-width: 640px) {
  .hero-img-bg {
    display: none !important;
  }
}
/* =========================================================
   תחומי השירות — גרסת Boutique עם נוכחות
   יש לטעון את הקובץ הזה אחרי style.css הראשי
   ========================================================= */

.services-bg {
  background:
    radial-gradient(circle at top right, rgba(184,144,60,0.08) 0%, transparent 22%),
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 28%, #f7f4ee 100%);
  position: relative;
  overflow: hidden;
}

.services-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.36) 20%, rgba(255,255,255,0) 44%),
    radial-gradient(circle at bottom left, rgba(26,47,74,0.04) 0%, transparent 24%);
  opacity: 0.85;
}

.services-bg .wrap {
  position: relative;
  z-index: 1;
}

.services-bg .section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.services-bg .section-head h2 {
  margin-bottom: 14px;
}

.services-bg .section-head p {
  max-width: 680px;
  color: #52657a;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(220,211,197,0.95);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(251,248,243,0.97) 100%);
  box-shadow:
    0 10px 26px rgba(15,30,48,0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);
  overflow: hidden;
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(184,144,60,0.28), rgba(26,47,74,0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.92;
  pointer-events: none;
}

.service-card::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,144,60,0.13) 0%, transparent 72%);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184,144,60,0.34);
  box-shadow:
    0 22px 54px rgba(15,30,48,0.12),
    0 10px 26px rgba(184,144,60,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-card-media {
  position: relative;
  margin: 0 -24px 20px;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  border-bottom: 1px solid rgba(223,214,201,0.84);
  background: #e8e0d3;
}

.service-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(15,30,48,0.06) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,48,0) 38%, rgba(15,30,48,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.34s ease;
  filter: saturate(0.9) contrast(0.98) brightness(1.01);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
  filter: saturate(0.96) contrast(1) brightness(1.02);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(250,245,236,0.98) 0%, rgba(243,233,215,0.96) 100%);
  color: var(--gold);
  border: 1px solid rgba(184,144,60,0.18);
  box-shadow: 0 10px 22px rgba(184,144,60,0.08);
}

.service-mini-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184,144,60,0.12);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.15px;
  border: 1px solid rgba(184,144,60,0.2);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.32;
  color: var(--navy-deep);
  text-wrap: balance;
}

.service-card p {
  margin: 0 0 18px;
  color: #566a7f;
  font-size: 15.5px;
  line-height: 1.9;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(209,199,184,0.95);
  background: rgba(255,255,255,0.82);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15,30,48,0.05);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    color 0.26s ease,
    background 0.26s ease;
}

.service-link:hover {
  color: var(--gold);
  border-color: rgba(184,144,60,0.42);
  background: linear-gradient(180deg, #fffdfa 0%, #f7efe2 100%);
  box-shadow: 0 14px 28px rgba(184,144,60,0.12);
  transform: translateY(-1px);
}

.service-card .service-link {
  margin-bottom: 4px;
}

/* Optional visual emphasis for first two cards */
.service-card:nth-child(1),
.service-card:nth-child(2) {
  box-shadow:
    0 14px 30px rgba(15,30,48,0.07),
    inset 0 1px 0 rgba(255,255,255,0.88);
}

/* Modal – polish to match card style */
.service-modal-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  border: 1px solid rgba(222,213,199,0.92);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(15,30,48,0.2);
}

.service-modal-kicker {
  background: linear-gradient(180deg, #fbf5e9 0%, #f5ead4 100%);
  border-color: rgba(184,144,60,0.2);
}

.service-modal h3 {
  color: var(--navy-deep);
}

.service-modal-content li {
  background: linear-gradient(180deg, #fffdfa 0%, #f7f1e8 100%);
  border-color: rgba(184,144,60,0.16);
}

.service-modal-actions .btn-primary {
  box-shadow: 0 14px 28px rgba(26,47,74,0.18);
}

@media (max-width: 1140px) {
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 820px) {
  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-radius: 24px;
  }

  .service-card-media {
    border-radius: 24px 24px 0 0;
    aspect-ratio: 1.7 / 1;
  }
}

@media (max-width: 640px) {
  .services-bg .section-head {
    margin-bottom: 28px;
  }

  .service-card {
    padding: 0 20px 20px;
    border-radius: 22px;
  }

  .service-card-media {
    margin: 0 -20px 18px;
    border-radius: 22px 22px 0 0;
    aspect-ratio: 1.78 / 1;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.82;
  }

  .service-link {
    width: 100%;
  }
}
/* ===== SERVICES – PREMIUM BOUTIQUE UPGRADE ===== */

.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f7f5, #ffffff);
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.92) contrast(0.95);
}

/* IMAGE OVERLAY (עדין מאוד) */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent 60%);
    pointer-events: none;
}

/* CONTENT */
.service-content {
    padding: 28px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #1c2b39;
    margin-bottom: 12px;
}

.service-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* CTA */
.service-link {
    display: inline-block;
    margin-top: 18px;
    font-weight: 600;
    color: #c8a45b;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.98);
}

.service-card:hover .service-link {
    transform: translateX(-5px);
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-icon {
    margin-top: -15px;
}

.service-card {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.service-card:hover {
    box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

.service-link {
    border: 1px solid #e5e7eb;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
}

.service-card:hover .service-link {
    background: #c8a45b;
    color: #fff;
    border-color: #c8a45b;
}
/* =========================================================
   ABOUT SECTION – Premium redesign
   טען/י אחרי style.css הראשי
   ========================================================= */

.why-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(184,144,60,0.10) 0%, transparent 24%),
    linear-gradient(180deg, #f8f7f3 0%, #ffffff 34%, #f5f1ea 100%);
}

.why-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.42) 18%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at bottom left, rgba(26,47,74,0.04) 0%, transparent 24%);
  opacity: 0.9;
}

.why-bg .wrap {
  position: relative;
  z-index: 1;
}

.why-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 40px;
  align-items: start;
}

.why-text {
  padding-left: 0;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(228,221,211,0.92);
  border-radius: 30px;
  padding: 30px 32px;
  box-shadow: 0 16px 40px rgba(15,30,48,0.08);
  backdrop-filter: blur(8px);
}

.why-text .tag {
  margin-bottom: 16px;
}

.why-text h2 {
  max-width: 19ch;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.22;
}

.about-lead {
  margin-top: 0;
  font-size: 19px;
  line-height: 1.95;
  color: var(--navy-deep);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(228,221,211,0.92);
}

.about-copy {
  gap: 14px;
  margin-top: 18px;
}

.about-copy p {
  font-size: 16.2px;
  line-height: 1.95;
  color: #4d6175;
}

.about-copy strong {
  color: var(--navy-deep);
}

.why-features {
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-feature {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,241,0.96) 100%);
  border: 1px solid rgba(223,214,201,0.94);
  box-shadow: 0 12px 28px rgba(15,30,48,0.06);
}

.why-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(184,144,60,0.22), rgba(26,47,74,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.why-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15,30,48,0.10);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(26,47,74,0.14);
}

.why-feature h3 {
  margin: 2px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.why-feature p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #566a7d;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-text {
    order: -1;
  }

  .why-text h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .why-text {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .why-text h2 {
    font-size: 30px;
  }

  .about-lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .about-copy p {
    font-size: 15.4px;
    line-height: 1.9;
  }

  .why-feature {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .why-feature h3 {
    font-size: 17px;
  }

  .why-feature p {
    font-size: 14px;
    line-height: 1.75;
  }
}
/* =========================================================
   ABOUT SECTION – Premium redesign
   טען/י אחרי style.css הראשי
   ========================================================= */

.why-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(184,144,60,0.10) 0%, transparent 24%),
    linear-gradient(180deg, #f8f7f3 0%, #ffffff 34%, #f5f1ea 100%);
}

.why-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.42) 18%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at bottom left, rgba(26,47,74,0.04) 0%, transparent 24%);
  opacity: 0.9;
}

.why-bg .wrap {
  position: relative;
  z-index: 1;
}

.why-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 40px;
  align-items: start;
}

.why-text {
  padding-left: 0;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(228,221,211,0.92);
  border-radius: 30px;
  padding: 30px 32px;
  box-shadow: 0 16px 40px rgba(15,30,48,0.08);
  backdrop-filter: blur(8px);
}

.why-text .tag {
  margin-bottom: 16px;
}

.why-text h2 {
  max-width: 19ch;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.22;
}

.about-lead {
  margin-top: 0;
  font-size: 19px;
  line-height: 1.95;
  color: var(--navy-deep);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(228,221,211,0.92);
}

.about-copy {
  gap: 14px;
  margin-top: 18px;
}

.about-copy p {
  font-size: 16.2px;
  line-height: 1.95;
  color: #4d6175;
}

.about-copy strong {
  color: var(--navy-deep);
}

.why-features {
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-feature {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,241,0.96) 100%);
  border: 1px solid rgba(223,214,201,0.94);
  box-shadow: 0 12px 28px rgba(15,30,48,0.06);
}

.why-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(184,144,60,0.22), rgba(26,47,74,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.why-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15,30,48,0.10);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(26,47,74,0.14);
}

.why-feature h3 {
  margin: 2px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.why-feature p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #566a7d;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-text {
    order: -1;
  }

  .why-text h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .why-text {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .why-text h2 {
    font-size: 30px;
  }

  .about-lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .about-copy p {
    font-size: 15.4px;
    line-height: 1.9;
  }

  .why-feature {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .why-feature h3 {
    font-size: 17px;
  }

  .why-feature p {
    font-size: 14px;
    line-height: 1.75;
  }
}
/* =========================================================
   ABOUT SECTION – Premium redesign
   טען/י אחרי style.css הראשי
   ========================================================= */

.why-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(184,144,60,0.10) 0%, transparent 24%),
    linear-gradient(180deg, #f8f7f3 0%, #ffffff 34%, #f5f1ea 100%);
}

.why-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.42) 18%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at bottom left, rgba(26,47,74,0.04) 0%, transparent 24%);
  opacity: 0.9;
}

.why-bg .wrap {
  position: relative;
  z-index: 1;
}

.why-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 40px;
  align-items: start;
}

.why-text {
  padding-left: 0;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(228,221,211,0.92);
  border-radius: 30px;
  padding: 30px 32px;
  box-shadow: 0 16px 40px rgba(15,30,48,0.08);
  backdrop-filter: blur(8px);
}

.why-text .tag {
  margin-bottom: 16px;
}

.why-text h2 {
  max-width: 19ch;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.22;
}

.about-lead {
  margin-top: 0;
  font-size: 19px;
  line-height: 1.95;
  color: var(--navy-deep);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(228,221,211,0.92);
}

.about-copy {
  gap: 14px;
  margin-top: 18px;
}

.about-copy p {
  font-size: 16.2px;
  line-height: 1.95;
  color: #4d6175;
}

.about-copy strong {
  color: var(--navy-deep);
}

.why-features {
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-feature {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,241,0.96) 100%);
  border: 1px solid rgba(223,214,201,0.94);
  box-shadow: 0 12px 28px rgba(15,30,48,0.06);
}

.why-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(184,144,60,0.22), rgba(26,47,74,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.why-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15,30,48,0.10);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(26,47,74,0.14);
}

.why-feature h3 {
  margin: 2px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.why-feature p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #566a7d;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-text {
    order: -1;
  }

  .why-text h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .why-text {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .why-text h2 {
    font-size: 30px;
  }

  .about-lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .about-copy p {
    font-size: 15.4px;
    line-height: 1.9;
  }

  .why-feature {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .why-feature h3 {
    font-size: 17px;
  }

  .why-feature p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* =========================================================
   ABOUT SECTION — FIXED PREMIUM OVERRIDE
   Load after style.css
   ========================================================= */

.why-bg {
  background:
    radial-gradient(circle at top right, rgba(184,144,60,0.08) 0%, transparent 20%),
    linear-gradient(180deg, #f8f7f4 0%, #fcfbf8 42%, #f5f1ea 100%);
  position: relative;
  overflow: hidden;
}

.why-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.34) 22%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at bottom left, rgba(26,47,74,0.045) 0%, transparent 24%);
  opacity: 0.9;
}

.why-bg .wrap {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.why-text,
.why-features {
  min-width: 0;
}

.why-text {
  padding-left: 0;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(228,221,211,0.92);
  border-radius: 32px;
  padding: 34px 36px;
  box-shadow: 0 18px 44px rgba(15,30,48,0.08);
  backdrop-filter: blur(8px);
}

.why-text .tag {
  margin-bottom: 18px;
}

.why-text h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.24;
  margin-bottom: 18px;
  color: var(--navy-deep);
}

.about-lead {
  font-size: 18px;
  line-height: 1.95;
  color: var(--navy-deep);
  margin-top: 0;
  margin-bottom: 18px;
}

.about-copy {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.95;
  color: #4d6277;
  margin: 0;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: start;
}

.why-feature {
  min-width: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,241,0.98) 100%);
  border: 1px solid rgba(224,215,201,0.95);
  border-radius: 28px;
  padding: 24px 22px 22px;
  box-shadow:
    0 12px 30px rgba(15,30,48,0.06),
    inset 0 1px 0 rgba(255,255,255,0.88);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.why-feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 48px rgba(15,30,48,0.11),
    0 8px 18px rgba(184,144,60,0.08);
  border-color: rgba(184,144,60,0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 16px 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #213a59 0%, #18304d 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(26,47,74,0.16);
}

.why-feature h3,
.why-feature p,
.why-feature * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.why-feature h3 {
  font-size: 20px;
  line-height: 1.4;
  color: var(--navy-deep);
  margin: 0 0 10px;
  max-width: none;
}

.why-feature p {
  font-size: 15px;
  line-height: 1.85;
  color: #5a6d80;
  margin: 0;
  max-width: none;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .why-text {
    order: -1;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .why-text h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .why-features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .why-text {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .about-lead,
  .about-copy p {
    font-size: 15.5px;
    line-height: 1.88;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-feature {
    border-radius: 22px;
    padding: 20px 18px 18px;
  }

  .why-feature h3 {
    font-size: 18px;
  }

  .why-feature p {
    font-size: 14.5px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 14px;
  }
}

/* =========================================================
   ABOUT SECTION — LAYOUT FIX
   Fixes the broken "About" cards layout
   Load after style.css
   ========================================================= */

.why-bg {
  background:
    radial-gradient(circle at top right, rgba(184,144,60,0.08) 0%, transparent 20%),
    linear-gradient(180deg, #f8f7f4 0%, #fcfbf8 42%, #f5f1ea 100%);
  position: relative;
  overflow: hidden;
}

.why-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.34) 22%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at bottom left, rgba(26,47,74,0.045) 0%, transparent 24%);
  opacity: 0.9;
}

.why-bg .wrap {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.why-text,
.why-features {
  min-width: 0;
}

.why-text {
  padding-left: 0;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(228,221,211,0.92);
  border-radius: 32px;
  padding: 34px 36px;
  box-shadow: 0 18px 44px rgba(15,30,48,0.08);
  backdrop-filter: blur(8px);
}

.why-text .tag {
  margin-bottom: 18px;
}

.why-text h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.24;
  margin-bottom: 18px;
  color: var(--navy-deep);
}

.about-lead {
  font-size: 18px;
  line-height: 1.95;
  color: var(--navy-deep);
  margin-top: 0;
  margin-bottom: 18px;
}

.about-copy {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.95;
  color: #4d6277;
  margin: 0;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: start;
}

/* Critical fix:
   The icon, h3 and p are direct children.
   We explicitly place the title and paragraph in column 1,
   and the icon in column 2, so text no longer collapses into a narrow column. */
.why-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  grid-template-areas:
    "title icon"
    "text  icon";
  column-gap: 16px;
  row-gap: 8px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,241,0.98) 100%);
  border: 1px solid rgba(224,215,201,0.95);
  border-radius: 28px;
  padding: 24px 22px 22px;
  box-shadow:
    0 12px 30px rgba(15,30,48,0.06),
    inset 0 1px 0 rgba(255,255,255,0.88);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.why-feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 48px rgba(15,30,48,0.11),
    0 8px 18px rgba(184,144,60,0.08);
  border-color: rgba(184,144,60,0.3);
}

.feature-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #213a59 0%, #18304d 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(26,47,74,0.16);
  justify-self: end;
  align-self: start;
}

.why-feature h3 {
  grid-area: title;
  margin: 2px 0 0;
  font-size: 20px;
  line-height: 1.4;
  color: var(--navy-deep);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: none;
}

.why-feature p {
  grid-area: text;
  font-size: 15px;
  line-height: 1.85;
  color: #5a6d80;
  margin: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: none;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .why-text {
    order: -1;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .why-text h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .why-features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .why-text {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .about-lead,
  .about-copy p {
    font-size: 15.5px;
    line-height: 1.88;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-feature {
    grid-template-columns: minmax(0, 1fr) 52px;
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .why-feature h3 {
    font-size: 18px;
  }

  .why-feature p {
    font-size: 14.5px;
  }
}
.cta-actions .btn-primary {
  background: linear-gradient(135deg, #d4ac5a, #b8903c);
  box-shadow: 0 14px 30px rgba(184,144,60,0.35);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.cta-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(184,144,60,0.45);
}

.cta-actions .btn-outline {
  opacity: 0.85;
  border: 1px solid rgba(255,255,255,0.25);
}

.cta-actions .btn-outline:hover {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}
