﻿:root {
      --navy: #110939;
      --navy-2: #070f22;
      --aqua: #009dc2;
      --aqua-soft: #eaf9fc;
      --ink: #11182f;
      --muted: #556070;
      --line: #dfe7ee;
      --white: #ffffff;
      --shadow: 0 18px 55px rgba(17, 9, 57, 0.13);
      --font-sans: "Satoshi", Arial, sans-serif;
      --font-display: "Ivy Mode", Georgia, serif;
      font-family: var(--font-sans);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background: #f8fbfc;
      font-family: var(--font-sans);
      font-weight: 400;
      overflow-x: hidden;
    }

    a { color: inherit; }

    .site {
      min-height: 100vh;
      overflow: hidden;
    }

    .hero {
      min-height: 545px;
      position: relative;
      color: var(--white);
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(7, 15, 34, 0.98) 0%, rgba(7, 15, 34, 0.92) 35%, rgba(7, 15, 34, 0.48) 67%, rgba(7, 15, 34, 0.25) 100%),
        url("../images/zikr-hero-architecture.png") center / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 115px;
      background: linear-gradient(180deg, rgba(7, 15, 34, 0), rgba(7, 15, 34, 0.38));
      z-index: -1;
    }

    .wrap {
      width: min(1280px, calc(100% - 88px));
      margin: 0 auto;
    }

    .nav {
      height: 136px;
      padding-top: 22px;
      display: grid;
      grid-template-columns: 240px 1fr 170px;
      align-items: center;
      gap: 24px;
    }

    .brand-mark {
      width: 185px;
      display: block;
      filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: clamp(36px, 6vw, 78px);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .nav-links a {
      text-decoration: none;
      opacity: 0.9;
      transition: color 180ms ease, opacity 180ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--aqua);
      opacity: 1;
    }

    .button {
      min-height: 52px;
      padding: 0 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.36);
      border-radius: 8px;
      color: var(--white);
      background: var(--aqua);
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 14px 35px rgba(0, 157, 194, 0.32);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
      background: #08afd6;
      box-shadow: 0 20px 44px rgba(0, 157, 194, 0.44);
    }

    .button.secondary {
      background: rgba(255, 255, 255, 0.04);
      box-shadow: none;
    }

    .hero-copy {
      width: min(590px, 100%);
      padding: 54px 0 62px;
    }

    .hero-wordmark {
      width: min(550px, 100%);
      height: auto;
      display: block;
      filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.34));
    }

    .hero-rule {
      width: 36px;
      height: 3px;
      margin: 25px 0 18px;
      background: var(--aqua);
      border-radius: 999px;
    }

    .hero-lede {
      max-width: 620px;
      margin: 0;
      color: rgba(255, 255, 255, 0.96);
      font-size: clamp(1.45rem, 2.4vw, 2rem);
      line-height: 1.25;
      font-weight: 900;
    }

    .hero-lede strong { color: var(--aqua); }

    .hero-sub {
      margin: 22px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.08rem;
      line-height: 1.65;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 28px;
    }

    .section {
      padding: 30px 0;
      background: #fbfdfe;
    }

    .section.about { border-bottom: 1px solid rgba(223, 231, 238, 0.65); }

    .label {
      margin: 0 0 12px;
      color: var(--aqua);
      font-size: 0.78rem;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
    }

    .approach-panel .label,
    .contact-panel .label {
      color: var(--aqua);
      margin: 0 0 12px;
      font-size: 0.78rem;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      color: var(--ink);
      font-size: clamp(1.65rem, 2.4vw, 2.3rem);
      line-height: 1.18;
      font-weight: 900;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.08fr 1.08fr;
      gap: clamp(34px, 6vw, 82px);
      align-items: start;
    }

    .copy-block {
      display: grid;
      gap: 18px;
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.6;
      font-weight: 500;
    }

    .copy-block p { margin: 0; }

    .copy-block .accent {
      color: #1689a4;
      font-weight: 700;
    }

    .focus { padding-top: 28px; }

    .focus-grid {
      display: grid;
      grid-template-columns: 300px repeat(5, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .focus-intro { padding-top: 8px; }

    .focus-card {
      min-height: 220px;
      padding: 25px 22px 22px;
      border: 1px solid rgba(17, 9, 57, 0.09);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.86);
      text-align: center;
      box-shadow: 0 14px 34px rgba(17, 9, 57, 0.05);
      transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    }

    .focus-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0, 157, 194, 0.42);
      box-shadow: var(--shadow);
    }

    .icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 16px;
      color: var(--aqua);
    }

    .focus-card h3 {
      min-height: 42px;
      margin: 0 0 14px;
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.16;
      font-weight: 700;
    }

    .focus-card p {
      margin: 0;
      color: #273046;
      font-size: 0.86rem;
      line-height: 1.58;
      font-weight: 400;
    }

    .approach-contact {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
      background: var(--navy-2);
    }

    .approach-panel {
      padding: 34px max(44px, calc((100vw - 1280px) / 2 + 44px)) 33px max(44px, calc((100vw - 1280px) / 2 + 44px));
      background: linear-gradient(115deg, #f7fcfe 0%, #edf8fb 100%);
    }

    .approach-panel .section-title {
      font-size: clamp(1.2rem, 1.8vw, 1.58rem);
    }

    .approach-panel p {
      margin: 10px 0 0;
      color: var(--ink);
      font-weight: 400;
      line-height: 1.55;
    }

    .checks {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 36px;
      margin: 18px 0 0;
      padding: 0;
      color: #263146;
      font-size: 0.95rem;
      font-weight: 500;
      list-style: none;
    }

    .checks li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
    }

    .checkmark {
      color: var(--aqua);
      font-weight: 700;
    }

    .contact-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) 1px minmax(210px, 0.8fr);
      gap: 46px;
      align-items: center;
      padding: 36px max(44px, calc((100vw - 1280px) / 2 + 44px)) 34px 62px;
      color: var(--white);
      background:
        radial-gradient(circle at 88% 18%, rgba(0, 157, 194, 0.16), transparent 28%),
        linear-gradient(135deg, #061025 0%, #080d22 58%, #110939 100%);
    }

    .contact-panel .section-title {
      color: var(--white);
      font-size: clamp(1.45rem, 2.2vw, 2rem);
    }

    .contact-panel p {
      max-width: 460px;
      margin: 13px 0 0;
      color: rgba(255, 255, 255, 0.84);
      line-height: 1.6;
      font-weight: 400;
    }

    .email-link {
      min-height: 42px;
      margin-top: 20px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      background: var(--aqua);
      border-radius: 7px;
      text-decoration: none;
      font-weight: 700;
    }

    .divider {
      width: 1px;
      height: 112px;
      background: rgba(255, 255, 255, 0.34);
    }

    .footer-logo {
      width: min(240px, 100%);
      display: block;
    }

    .footer {
      color: rgba(255, 255, 255, 0.8);
      background: #071022;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-row {
      min-height: 66px;
      display: grid;
      grid-template-columns: minmax(280px, 1.3fr) minmax(240px, 0.9fr) minmax(190px, 0.7fr);
      gap: 28px;
      align-items: center;
      font-size: 0.88rem;
      font-weight: 400;
    }

    .address {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pin {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      color: var(--white);
      opacity: 0.9;
    }

    .right { text-align: right; }

    @keyframes rise {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
    }

    @media (max-width: 1120px) {
      .wrap { width: min(100% - 48px, 980px); }

      .nav { grid-template-columns: 210px 1fr 150px; }

      .focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .focus-intro { grid-column: 1 / -1; }

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

      .contact-panel {
        padding-left: max(24px, calc((100vw - 980px) / 2 + 24px));
      }
    }

    @media (max-width: 780px) {
      .hero {
        min-height: auto;
        background-position: 62% center;
      }

      .nav {
        height: auto;
        padding: 28px 0 0;
        grid-template-columns: 1fr;
      }

      .brand-mark { width: 170px; }

      .nav-links {
        justify-content: flex-start;
        gap: 26px;
      }

      .nav .button { width: max-content; }

      .hero-copy { padding: 58px 0 72px; }

      .hero-wordmark { width: min(500px, 100%); }

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

      .section { padding: 38px 0; }

      .focus-grid { grid-template-columns: 1fr; }

      .approach-panel,
      .contact-panel {
        width: 100%;
        max-width: 100vw;
        padding: 34px 24px;
        overflow: hidden;
      }

      .approach-panel > *,
      .contact-panel > * {
        min-width: 0;
        max-width: 100%;
      }

      .approach-panel .section-title,
      .contact-panel .section-title {
        max-width: 100%;
        font-size: 1.35rem;
        line-height: 1.22;
        overflow-wrap: break-word;
      }

      .approach-panel p,
      .contact-panel p {
        max-width: 100%;
        overflow-wrap: break-word;
      }

      .approach-panel .section-title,
      .approach-panel p,
      .approach-panel .checks {
        width: min(100%, 310px);
      }

      .checks { grid-template-columns: 1fr; }

      .contact-panel {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .divider {
        width: 100%;
        height: 1px;
      }

      .footer-row {
        padding: 22px 0;
        grid-template-columns: 1fr;
      }

      .right { text-align: left; }
    }

    @media (max-width: 520px) {
      .wrap {
        width: min(calc(100% - 32px), 358px);
        margin-left: 16px;
        margin-right: auto;
      }

      .hero-actions,
      .nav-links {
        width: 100%;
      }

      .button,
      .nav .button {
        width: 100%;
      }

      .nav-links {
        justify-content: flex-start;
        gap: 28px;
        font-size: 0.84rem;
      }

      .hero-wordmark { width: min(340px, 100%); }

      .hero-lede { font-size: 1.32rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }

      .hero-copy { animation: none; }

      .button,
      .focus-card,
      .nav-links a {
        transition: none;
      }
    }
