:root {
      --red: #C81018;
      --red-dark: #8E0710;
      --red-soft: #FDECEF;
      --teal: #3F7F7B;
      --teal-dark: #285C59;
      --teal-soft: #E7F2F1;
      --ink: #20242A;
      --charcoal: #292B2F;
      --slate: #5E6772;
      --line: #E7E9ED;
      --mist: #F5F7F9;
      --warm: #FFFCFA;
      --white: #FFFFFF;
      --navy: #162A3D;
      --shadow-sm: 0 12px 30px rgba(32, 36, 42, .08);
      --shadow-md: 0 22px 60px rgba(32, 36, 42, .12);
      --shadow-red: 0 18px 42px rgba(200, 16, 24, .24);
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 34px;
      --container: 1180px;
      --header-h: 82px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 104px; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--warm);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, h4, p { margin-top: 0; }
    h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.035em; }
    p { color: var(--slate); }
    .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
    .section { padding: 112px 0; position: relative; }
    .section-sm { padding: 78px 0; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      color: var(--red);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .section-label::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }
    .section-title {
      max-width: 760px;
      margin-bottom: 22px;
      color: var(--ink);
      font-size: clamp(2rem, 4vw, 3.6rem);
      font-weight: 850;
    }
    .section-intro { max-width: 690px; margin-bottom: 0; font-size: 1.08rem; }
    .text-center { text-align: center; }
    .text-center .section-label, .text-center .section-title, .text-center .section-intro { margin-inline: auto; }
    .skip-link {
      position: fixed;
      z-index: 9999;
      left: 18px;
      top: -80px;
      padding: 12px 18px;
      border-radius: 10px;
      color: var(--white);
      background: var(--ink);
      transition: top .2s ease;
    }
    .skip-link:focus { top: 18px; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: .94rem;
      font-weight: 800;
      letter-spacing: -.01em;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
    }
    .btn svg { width: 18px; height: 18px; transition: transform .22s ease; }
    .btn:hover { transform: translateY(-2px); }
    .btn:hover svg { transform: translateX(3px); }
    .btn-primary { color: var(--white); background: var(--red); box-shadow: var(--shadow-red); }
    .btn-primary:hover { background: var(--red-dark); }
    .btn-light { color: var(--ink); background: var(--white); box-shadow: var(--shadow-sm); }
    .btn-light:hover { color: var(--red); }
    .btn-outline { border-color: rgba(32,36,42,.15); background: transparent; }
    .btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--white); }
    .btn-link { min-height: 42px; padding: 0; color: var(--red); }
    .btn-link:hover { transform: none; color: var(--red-dark); }

    /* Top bar and header */
    .topbar { color: rgba(255,255,255,.82); background: var(--navy); font-size: .82rem; }
    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 40px;
      gap: 24px;
    }
    .topbar-list { display: flex; align-items: center; gap: 26px; }
    .topbar-item { display: inline-flex; align-items: center; gap: 8px; }
    .topbar-item svg { width: 15px; height: 15px; color: #9ED5D1; }
    .topbar a:hover { color: var(--white); }
    .header {
      position: sticky;
      z-index: 1000;
      top: 0;
      border-bottom: 1px solid rgba(231,233,237,.8);
      background: rgba(255,252,250,.9);
      backdrop-filter: blur(18px);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: var(--header-h);
      gap: 36px;
    }
    .logo { flex: 0 0 auto; width: 192px; }
    .nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
    .nav-link {
      position: relative;
      padding: 28px 0;
      color: var(--charcoal);
      font-size: .91rem;
      font-weight: 750;
    }
    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 19px;
      height: 2px;
      border-radius: 999px;
      background: var(--red);
      transition: right .22s ease;
    }
    .nav-link:hover, .nav-link.active { color: var(--red); }
    .nav-link:hover::after, .nav-link.active::after { right: 0; }
    .nav-cta { min-height: 46px; padding-inline: 20px; }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: var(--white);
    }
    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      margin: 4px auto;
      border-radius: 3px;
      background: var(--ink);
      transition: transform .22s ease, opacity .22s ease;
    }
    .menu-open .menu-toggle span { opacity: 0; }
    .menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
    .menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

    /* Hero */
    .hero {
      position: relative;
      min-height: 760px;
      overflow: hidden;
      background:
        radial-gradient(circle at 15% 5%, rgba(253,236,239,.96) 0, rgba(253,236,239,0) 32%),
        linear-gradient(135deg, #fff 0%, #fffbf9 56%, #eef7f6 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 560px;
      height: 560px;
      right: -260px;
      top: 90px;
      border: 1px solid rgba(63,127,123,.15);
      border-radius: 50%;
      box-shadow: 0 0 0 100px rgba(63,127,123,.035), 0 0 0 200px rgba(63,127,123,.025);
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
      align-items: center;
      min-height: 690px;
      gap: 72px;
      padding: 68px 0 86px;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 23px;
      padding: 8px 14px 8px 9px;
      border: 1px solid rgba(200,16,24,.12);
      border-radius: 999px;
      color: var(--red-dark);
      background: rgba(255,255,255,.82);
      box-shadow: 0 8px 24px rgba(32,36,42,.05);
      font-size: .82rem;
      font-weight: 800;
    }
    .hero-kicker::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 5px rgba(200,16,24,.12);
    }
    .hero h1 {
      max-width: 690px;
      margin-bottom: 25px;
      font-size: clamp(3.05rem, 6vw, 5.7rem);
      font-weight: 880;
      letter-spacing: -.065em;
    }
    .hero h1 .accent { position: relative; color: var(--red); white-space: nowrap; }
    .hero h1 .accent::after {
      content: "";
      position: absolute;
      left: 2%;
      right: 1%;
      bottom: .03em;
      z-index: -1;
      height: .16em;
      border-radius: 999px;
      background: rgba(63,127,123,.22);
      transform: rotate(-1.5deg);
    }
    .hero-copy { max-width: 630px; margin-bottom: 34px; font-size: 1.12rem; }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
    .hero-note {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 31px;
      color: var(--slate);
      font-size: .87rem;
    }
    .hero-note strong { color: var(--ink); }
    .avatar-stack { display: flex; padding-left: 8px; }
    .avatar {
      display: grid;
      place-items: center;
      width: 35px;
      height: 35px;
      margin-left: -8px;
      border: 3px solid var(--warm);
      border-radius: 50%;
      color: var(--white);
      background: var(--teal);
      font-size: .7rem;
      font-weight: 800;
    }
    .avatar:nth-child(2) { background: #B76C5B; }
    .avatar:nth-child(3) { background: var(--navy); }

    .hero-visual { position: relative; min-height: 570px; }
    .hero-photo {
      position: absolute;
      inset: 24px 0 24px 42px;
      overflow: hidden;
      border-radius: 54px 18px 54px 18px;
      background: var(--navy);
      box-shadow: var(--shadow-md);
    }
    .hero-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(22,42,61,.02) 30%, rgba(22,42,61,.5) 100%);
    }
    .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
    .hero-panel {
      position: absolute;
      z-index: 3;
      left: 0;
      bottom: 0;
      width: min(325px, 72%);
      padding: 24px;
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 24px;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(15px);
      box-shadow: var(--shadow-md);
    }
    .hero-panel-head { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
    .hero-panel-icon {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border-radius: 15px;
      color: var(--white);
      background: var(--red);
    }
    .hero-panel-icon svg { width: 24px; height: 24px; }
    .hero-panel h3 { margin: 0; font-size: 1.05rem; }
    .hero-panel p { margin: 0; font-size: .87rem; line-height: 1.55; }
    .hero-badge {
      position: absolute;
      z-index: 3;
      top: 0;
      right: -18px;
      display: grid;
      place-items: center;
      width: 136px;
      height: 136px;
      padding: 20px;
      border: 11px solid var(--warm);
      border-radius: 50%;
      color: var(--white);
      background: var(--teal);
      text-align: center;
      box-shadow: var(--shadow-sm);
      transform: rotate(6deg);
    }
    .hero-badge span { display: block; font-size: .74rem; font-weight: 800; line-height: 1.25; }
    .hero-badge strong { display: block; margin-bottom: 3px; font-size: 1.3rem; }
    .hero-dots {
      position: absolute;
      right: 32px;
      bottom: 4px;
      z-index: 2;
      width: 95px;
      height: 95px;
      opacity: .52;
      background-image: radial-gradient(var(--red) 1.6px, transparent 1.6px);
      background-size: 13px 13px;
    }

    /* Trust strip */
    .trust-strip { position: relative; z-index: 3; margin-top: -40px; }
    .trust-card {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid rgba(231,233,237,.9);
      border-radius: 24px;
      background: var(--white);
      box-shadow: var(--shadow-md);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 17px;
      min-height: 124px;
      padding: 28px 30px;
      border-right: 1px solid var(--line);
    }
    .trust-item:last-child { border-right: 0; }
    .trust-icon {
      display: grid;
      flex: 0 0 auto;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 17px;
      color: var(--red);
      background: var(--red-soft);
    }
    .trust-item:nth-child(2) .trust-icon { color: var(--teal); background: var(--teal-soft); }
    .trust-item:nth-child(3) .trust-icon { color: var(--navy); background: #EAF0F6; }
    .trust-icon svg { width: 25px; height: 25px; }
    .trust-item h3 { margin: 0 0 6px; font-size: 1rem; }
    .trust-item p { margin: 0; font-size: .84rem; line-height: 1.5; }

    /* About */
    .about-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 100px; }
    .about-visual { position: relative; min-height: 620px; }
    .about-photo {
      position: absolute;
      inset: 0 42px 55px 0;
      overflow: hidden;
      border-radius: 28px 80px 28px 28px;
      background: var(--mist);
      box-shadow: var(--shadow-sm);
    }
    .about-photo img { width: 100%; height: 100%; object-fit: cover; }
    .about-quote {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 72%;
      padding: 28px 30px;
      border-radius: 24px;
      color: var(--white);
      background: var(--navy);
      box-shadow: var(--shadow-md);
    }
    .about-quote svg { width: 30px; height: 30px; margin-bottom: 12px; color: #8AC3BF; }
    .about-quote p { margin: 0; color: rgba(255,255,255,.86); font-size: .98rem; }
    .about-quote strong { display: block; margin-top: 13px; color: var(--white); font-size: .86rem; }
    .about-shape {
      position: absolute;
      left: -42px;
      top: -36px;
      width: 130px;
      height: 130px;
      border-radius: 32px;
      background: var(--red-soft);
      transform: rotate(13deg);
    }
    .about-content .section-title { font-size: clamp(2.2rem, 4vw, 4rem); }
    .about-content > p { font-size: 1.03rem; }
    .about-points { display: grid; gap: 16px; margin: 30px 0 34px; }
    .about-point { display: flex; align-items: flex-start; gap: 14px; }
    .check {
      display: grid;
      flex: 0 0 auto;
      place-items: center;
      width: 26px;
      height: 26px;
      margin-top: 2px;
      border-radius: 50%;
      color: var(--white);
      background: var(--teal);
    }
    .check svg { width: 14px; height: 14px; }
    .about-point h4 { margin: 0 0 4px; font-size: 1rem; }
    .about-point p { margin: 0; font-size: .9rem; }

    /* Services */
    .services { overflow: hidden; background: var(--mist); }
    .services::before {
      content: "";
      position: absolute;
      left: -220px;
      bottom: -270px;
      width: 610px;
      height: 610px;
      border: 1px solid rgba(200,16,24,.1);
      border-radius: 50%;
      box-shadow: 0 0 0 90px rgba(200,16,24,.025), 0 0 0 180px rgba(200,16,24,.018);
    }
    .services-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
    .services-head .section-intro { max-width: 520px; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(231,233,237,.96);
      border-radius: 28px;
      background: var(--white);
      box-shadow: 0 14px 36px rgba(32,36,42,.055);
      transition: transform .28s ease, box-shadow .28s ease;
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
    .service-image { position: relative; height: 250px; overflow: hidden; }
    .service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(22,42,61,.34) 100%); }
    .service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
    .service-card:hover .service-image img { transform: scale(1.05); }
    .service-number {
      position: absolute;
      z-index: 2;
      top: 18px;
      left: 18px;
      display: grid;
      place-items: center;
      width: 45px;
      height: 45px;
      border: 1px solid rgba(255,255,255,.6);
      border-radius: 50%;
      color: var(--white);
      background: rgba(22,42,61,.58);
      backdrop-filter: blur(8px);
      font-size: .82rem;
      font-weight: 850;
    }
    .service-content { padding: 28px 28px 30px; }
    .service-content h3 { margin-bottom: 13px; font-size: 1.35rem; }
    .service-content p { min-height: 86px; margin-bottom: 17px; font-size: .92rem; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 19px; }
    .tag { padding: 6px 10px; border-radius: 999px; color: var(--teal-dark); background: var(--teal-soft); font-size: .72rem; font-weight: 800; }

    /* Method */
    .method-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: start; gap: 96px; }
    .method-copy { position: sticky; top: 128px; }
    .method-copy-card {
      margin-top: 34px;
      padding: 27px;
      border: 1px solid rgba(200,16,24,.1);
      border-radius: 24px;
      background: var(--red-soft);
    }
    .method-copy-card h3 { margin-bottom: 9px; font-size: 1.15rem; }
    .method-copy-card p { margin: 0; font-size: .9rem; }
    .steps { position: relative; display: grid; gap: 18px; }
    .steps::before {
      content: "";
      position: absolute;
      left: 31px;
      top: 62px;
      bottom: 62px;
      width: 1px;
      background: linear-gradient(var(--red), var(--teal));
    }
    .step {
      position: relative;
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 22px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }
    .step-num {
      position: relative;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 64px;
      height: 64px;
      border: 8px solid var(--white);
      border-radius: 50%;
      color: var(--white);
      background: var(--red);
      box-shadow: 0 0 0 1px rgba(200,16,24,.1);
      font-size: .88rem;
      font-weight: 900;
    }
    .step:nth-child(even) .step-num { background: var(--teal); }
    .step h3 { margin: 4px 0 8px; font-size: 1.18rem; }
    .step p { margin: 0; font-size: .91rem; }

    /* Audience / promise */
    .promise {
      overflow: hidden;
      color: var(--white);
      background: var(--navy);
    }
    .promise::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .19;
      background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
      background-size: 28px 28px;
      mask-image: linear-gradient(90deg, #000, transparent 70%);
    }
    .promise-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 78px; }
    .promise .section-label { color: #A7D7D3; }
    .promise .section-title { color: var(--white); }
    .promise p { color: rgba(255,255,255,.7); }
    .promise-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .promise-card {
      min-height: 180px;
      padding: 25px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 22px;
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(8px);
    }
    .promise-card:first-child { transform: translateY(24px); }
    .promise-card:last-child { transform: translateY(-24px); }
    .promise-card-icon {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-bottom: 18px;
      border-radius: 14px;
      color: var(--navy);
      background: #A7D7D3;
    }
    .promise-card:nth-child(2) .promise-card-icon { background: #FFC9CC; }
    .promise-card:nth-child(3) .promise-card-icon { background: #F7D5B4; }
    .promise-card:nth-child(4) .promise-card-icon { background: #DCE7F2; }
    .promise-card-icon svg { width: 22px; height: 22px; }
    .promise-card h3 { margin-bottom: 8px; color: var(--white); font-size: 1.08rem; }
    .promise-card p { margin: 0; font-size: .84rem; }

    /* FAQ */
    .faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 78px; }
    .faq-aside {
      padding: 34px;
      border-radius: 28px;
      background: var(--teal-soft);
    }
    .faq-aside h3 { margin-bottom: 12px; font-size: 1.45rem; }
    .faq-aside p { margin-bottom: 23px; }
    .faq-list { display: grid; gap: 12px; }
    .faq-item {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--white);
      box-shadow: 0 8px 26px rgba(32,36,42,.04);
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      min-height: 76px;
      padding: 18px 22px;
      border: 0;
      color: var(--ink);
      background: transparent;
      text-align: left;
      font-weight: 820;
    }
    .faq-plus {
      position: relative;
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      margin-left: 20px;
      border-radius: 50%;
      background: var(--mist);
    }
    .faq-plus::before, .faq-plus::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 12px;
      height: 2px;
      border-radius: 2px;
      background: var(--red);
      transform: translate(-50%, -50%);
      transition: transform .22s ease;
    }
    .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
    .faq-item.open .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .faq-answer p { margin: 0; padding: 0 22px 22px; font-size: .91rem; }

    /* Contact */
    .contact-section { padding-top: 30px; }
    .contact-shell {
      position: relative;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      overflow: hidden;
      border-radius: 38px;
      background: var(--white);
      box-shadow: var(--shadow-md);
    }
    .contact-form-wrap { padding: 62px; }
    .contact-form-wrap .section-title { margin-bottom: 16px; font-size: clamp(2.1rem, 4vw, 3.7rem); }
    .contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; margin-top: 32px; }
    .field { display: grid; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: var(--charcoal); font-size: .78rem; font-weight: 800; }
    .field input, .field textarea, .field select {
      width: 100%;
      min-height: 52px;
      padding: 13px 15px;
      border: 1px solid #DDE1E6;
      border-radius: 13px;
      outline: none;
      color: var(--ink);
      background: #FCFCFD;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .field textarea { min-height: 126px; resize: vertical; }
    .field input:focus, .field textarea:focus, .field select:focus {
      border-color: var(--teal);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(63,127,123,.12);
    }
    .form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; color: var(--slate); font-size: .75rem; }
    .form-consent input { margin-top: 4px; accent-color: var(--red); }
    .form-submit { grid-column: 1 / -1; justify-self: start; border: 0; }
    .form-status { display: none; grid-column: 1 / -1; margin: 0; padding: 12px 14px; border-radius: 12px; color: var(--teal-dark); background: var(--teal-soft); font-size: .85rem; font-weight: 700; }
    .form-status.show { display: block; }
    .contact-panel {
      position: relative;
      min-height: 690px;
      overflow: hidden;
      background: var(--navy);
    }
    .contact-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(22,42,61,.08) 30%, rgba(22,42,61,.94) 92%);
    }
    .contact-panel img { width: 100%; height: 100%; object-fit: cover; }
    .contact-info {
      position: absolute;
      z-index: 2;
      left: 36px;
      right: 36px;
      bottom: 36px;
      display: grid;
      gap: 14px;
    }
    .contact-info h3 { margin-bottom: 4px; color: var(--white); font-size: 1.45rem; }
    .contact-info p { margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: .9rem; }
    .contact-line {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 13px 15px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      color: var(--white);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(7px);
      font-size: .86rem;
    }
    .contact-line svg { flex: 0 0 auto; width: 18px; height: 18px; color: #A7D7D3; }

    /* Footer */
    .footer { margin-top: 112px; color: rgba(255,255,255,.68); background: #101E2C; }
    .footer-main { display: grid; grid-template-columns: 1.45fr .75fr .9fr .9fr; gap: 58px; padding: 72px 0 58px; }
    .footer-logo { width: 205px; margin-bottom: 22px; }
    .footer-about { max-width: 370px; margin-bottom: 24px; color: rgba(255,255,255,.62); font-size: .87rem; }
    .socials { display: flex; gap: 10px; }
    .social {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      color: var(--white);
      background: rgba(255,255,255,.04);
      transition: background .2s ease, transform .2s ease;
    }
    .social:hover { background: var(--red); transform: translateY(-2px); }
    .social svg { width: 17px; height: 17px; }
    .footer h4 { margin-bottom: 20px; color: var(--white); font-size: .95rem; letter-spacing: -.01em; }
    .footer-links { display: grid; gap: 11px; }
    .footer-links a { font-size: .84rem; transition: color .2s ease, transform .2s ease; }
    .footer-links a:hover { color: var(--white); transform: translateX(3px); }
    .opening { display: grid; gap: 9px; font-size: .84rem; }
    .opening-row { display: flex; justify-content: space-between; gap: 18px; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      padding: 22px 0;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: .76rem;
    }
    .footer-bottom a { color: rgba(255,255,255,.8); }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* Responsive */
    @media (max-width: 1080px) {
      .topbar-list:last-child { display: none; }
      .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .hero h1 { font-size: clamp(3rem, 7vw, 4.7rem); }
      .hero-visual { min-height: 520px; }
      .about-grid, .method-grid, .promise-grid, .faq-layout { gap: 60px; }
      .contact-form-wrap { padding: 48px; }
      .footer-main { grid-template-columns: 1.25fr repeat(3, .75fr); gap: 38px; }
    }

    @media (max-width: 900px) {
      :root { --header-h: 72px; }
      .topbar { display: none; }
      .menu-toggle { display: block; position: relative; z-index: 1102; }
      .nav-links {
        position: fixed;
        z-index: 1100;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 88px 24px 30px;
        visibility: hidden;
        opacity: 0;
        background: rgba(255,252,250,.985);
        transform: translateY(-12px);
        transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
      }
      .menu-open .nav-links { visibility: visible; opacity: 1; transform: none; }
      .nav-link { width: min(100%, 360px); padding: 14px 0; text-align: center; font-size: 1.2rem; }
      .nav-link::after { display: none; }
      .nav-cta { margin-top: 12px; }
      .hero-grid { grid-template-columns: 1fr; padding-top: 64px; }
      .hero-content { text-align: center; }
      .hero-kicker, .hero h1, .hero-copy, .hero-actions, .hero-note { margin-inline: auto; }
      .hero-actions, .hero-note { justify-content: center; }
      .hero-visual { width: min(100%, 650px); margin-inline: auto; }
      .trust-card { grid-template-columns: 1fr; }
      .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
      .trust-item:last-child { border-bottom: 0; }
      .about-grid, .method-grid, .promise-grid, .faq-layout, .contact-shell { grid-template-columns: 1fr; }
      .about-visual { width: min(100%, 620px); margin-inline: auto; }
      .services-head { display: block; }
      .services-head .section-intro { margin-bottom: 24px; }
      .services-grid { grid-template-columns: 1fr; width: min(100%, 660px); margin-inline: auto; }
      .service-content p { min-height: auto; }
      .method-copy { position: static; }
      .promise-cards { max-width: 600px; }
      .promise-card:first-child, .promise-card:last-child { transform: none; }
      .faq-aside { order: 2; }
      .contact-panel { min-height: 570px; }
      .footer-main { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      .section { padding: 82px 0; }
      .section-sm { padding: 60px 0; }
      .logo { width: 167px; }
      .hero { min-height: auto; }
      .hero-grid { gap: 34px; padding: 52px 0 80px; }
      .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
      .hero-copy { font-size: 1rem; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { width: 100%; }
      .hero-note { align-items: flex-start; text-align: left; }
      .hero-visual { min-height: 440px; }
      .hero-photo { inset: 16px 0 20px 14px; border-radius: 38px 16px 38px 16px; }
      .hero-panel { width: 84%; padding: 19px; }
      .hero-badge { right: -5px; width: 112px; height: 112px; border-width: 8px; }
      .hero-badge strong { font-size: 1.08rem; }
      .trust-strip { margin-top: -28px; }
      .trust-item { min-height: auto; padding: 23px; }
      .about-grid { gap: 56px; }
      .about-visual { min-height: 500px; }
      .about-photo { inset: 0 20px 70px 0; border-radius: 22px 58px 22px 22px; }
      .about-quote { width: 88%; padding: 22px; }
      .about-shape { left: -14px; top: -28px; width: 90px; height: 90px; }
      .services-head { margin-bottom: 32px; }
      .service-image { height: 220px; }
      .method-grid { gap: 45px; }
      .step { grid-template-columns: 52px 1fr; gap: 15px; padding: 20px; }
      .step-num { width: 52px; height: 52px; border-width: 6px; }
      .steps::before { left: 25px; }
      .promise-cards { grid-template-columns: 1fr; }
      .faq-layout { gap: 32px; }
      .faq-aside { padding: 26px; }
      .faq-question { min-height: 70px; padding: 16px 17px; font-size: .92rem; }
      .faq-answer p { padding-inline: 17px; }
      .contact-shell { border-radius: 26px; }
      .contact-form-wrap { padding: 34px 22px; }
      .contact-form { grid-template-columns: 1fr; }
      .field.full, .form-consent, .form-submit, .form-status { grid-column: auto; }
      .form-submit { width: 100%; }
      .contact-panel { min-height: 520px; }
      .contact-info { left: 20px; right: 20px; bottom: 20px; }
      .footer { margin-top: 82px; }
      .footer-main { grid-template-columns: 1fr; gap: 38px; padding-top: 58px; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }

/* WordPress and Najim Care Pro additions */
.logo img,
.logo .custom-logo-link,
.logo .custom-logo {
  display: block;
  width: 100%;
  height: auto;
}
.logo .custom-logo-link { line-height: 0; }
.footer-logo { display: inline-block; }
.footer-logo img { display: block; width: 100%; height: auto; }
.footer-contact { margin-top: 18px; color: rgba(255,255,255,.72); font-size: .84rem; }
.footer-contact a:hover { color: #fff; }
.form-consent a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.form-status.success { border-color: rgba(63,127,123,.28); color: var(--teal-dark); background: var(--teal-soft); }
.form-status.error { border-color: rgba(200,16,24,.22); color: var(--red-dark); background: var(--red-soft); }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit:disabled { cursor: wait; opacity: .72; transform: none; }

/* Growth section */
.growth-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 15%, rgba(63,127,123,.11), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fffaf8 100%);
}
.growth-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 82px;
}
.growth-photo {
  position: relative;
  min-height: 590px;
}
.growth-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -28px 52px 36px -28px;
  border-radius: 44px 120px 44px 44px;
  background: var(--teal-soft);
}
.growth-photo::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 150px;
  right: -28px;
  bottom: 10px;
  border: 24px solid var(--red-soft);
  border-radius: 50%;
}
.growth-photo img {
  position: absolute;
  z-index: 1;
  inset: 0 0 44px 0;
  width: 100%;
  height: calc(100% - 44px);
  object-fit: cover;
  border-radius: 44px 110px 44px 44px;
  box-shadow: var(--shadow-md);
}
.growth-caption {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 12px;
  display: grid;
  min-width: 250px;
  padding: 20px 24px;
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-md);
  font-size: .88rem;
}
.growth-caption strong { color: var(--red); font-size: 1.08rem; }
.growth-content .section-intro { margin-bottom: 30px; }
.growth-stats {
  display: grid;
  gap: 13px;
  margin: 0 0 32px;
}
.growth-stats > div {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
}
.growth-stats strong { color: var(--ink); }
.growth-stats span { color: var(--slate); font-size: .91rem; }

/* Team section */
.team-section { padding-top: 30px; }
.team-shell {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.team-copy {
  padding: 72px 68px;
  background:
    radial-gradient(circle at 0 100%, rgba(63,127,123,.24), transparent 40%),
    var(--navy);
}
.team-copy .section-label { color: #9ed5d1; }
.team-copy .section-title { color: #fff; font-size: clamp(2.1rem, 3.4vw, 3.25rem); }
.team-copy p { color: rgba(255,255,255,.69); }
.team-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.team-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.84);
}
.team-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 12px;
  height: 7px;
  border-left: 2px solid #9ed5d1;
  border-bottom: 2px solid #9ed5d1;
  transform: rotate(-45deg);
}
.team-photo { min-height: 580px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ visual background */
.faq-section {
  isolation: isolate;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255,252,250,.9), rgba(255,252,250,.9)), var(--faq-bg);
  background-size: cover;
  background-position: center;
  opacity: .82;
}
.faq-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 44px 3%;
  border: 1px solid rgba(63,127,123,.09);
  border-radius: 50px;
  pointer-events: none;
}

/* Generic WordPress content */
.site-content {
  min-height: 55vh;
  padding: 88px 0 110px;
}
.page-hero {
  padding: 86px 0 74px;
  background: linear-gradient(135deg, var(--red-soft), #fff 58%, var(--teal-soft));
}
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}
.entry-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.entry-content > * { max-width: 780px; }
.entry-content > .alignwide { max-width: 1080px; }
.entry-content > .alignfull { max-width: none; }
.entry-content h2 { margin-top: 1.6em; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.entry-content h3 { margin-top: 1.5em; font-size: 1.5rem; }
.entry-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { height: auto; border-radius: 18px; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card-content { padding: 25px; }
.post-card h2 { margin-bottom: 12px; font-size: 1.35rem; }
.post-card h2 a:hover { color: var(--red); }
.post-meta { margin-bottom: 10px; color: var(--teal-dark); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pagination { margin-top: 40px; }
.pagination .nav-links { position: static; visibility: visible; opacity: 1; transform: none; display: flex; flex-direction: row; justify-content: flex-start; gap: 8px; padding: 0; background: transparent; }
.pagination a, .pagination span { display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 10px; background: #fff; }
.pagination .current { color: #fff; background: var(--red); }
.error-404 { max-width: 720px; margin-inline: auto; text-align: center; }
.error-404 .error-code { display: block; color: var(--red); font-size: clamp(5rem, 15vw, 10rem); font-weight: 900; line-height: .9; }

@media (max-width: 1080px) {
  .growth-grid { gap: 52px; }
  .team-copy { padding: 58px 46px; }
}

@media (max-width: 900px) {
  .growth-grid, .team-shell { grid-template-columns: 1fr; }
  .growth-photo { min-height: 540px; }
  .team-photo { min-height: 480px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .growth-grid { gap: 42px; }
  .growth-photo { min-height: 440px; }
  .growth-photo::before { inset: -15px 25px 34px -10px; border-radius: 32px 72px 32px 32px; }
  .growth-photo img { border-radius: 32px 72px 32px 32px; }
  .growth-caption { right: 8px; min-width: 210px; }
  .growth-stats > div { grid-template-columns: 1fr; gap: 2px; }
  .team-copy { padding: 42px 25px; }
  .team-photo { min-height: 360px; }
  .faq-section::after { inset: 25px 8px; border-radius: 28px; }
  .posts-grid { grid-template-columns: 1fr; }
  .site-content { padding: 60px 0 80px; }
  .page-hero { padding: 64px 0 58px; }
}

/* Najim Care Pro 2.0 — bilingual navigation and Kara Global Forms */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  background: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1;
}
.language-switcher a { color: var(--slate); }
.language-switcher a:hover,
.language-switcher a.active { color: var(--red); }
.language-switcher span { color: #B5BEC7; }

.najim-kara-form { margin-top: 32px; }
.najim-kara-form .kgf-form {
  --kgf-bg: #fff;
  --kgf-text: var(--charcoal);
  --kgf-muted: var(--slate);
  --kgf-line: var(--line);
  --kgf-accent: var(--red);
  --kgf-accent-text: #fff;
  --kgf-focus: rgba(200,16,24,.12);
  width: 100%;
}
.najim-kara-form .kgf-grid { gap: 17px; }
.najim-kara-form .kgf-field label {
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.najim-kara-form .kgf-field input,
.najim-kara-form .kgf-field select,
.najim-kara-form .kgf-field textarea {
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--charcoal);
  box-shadow: none;
}
.najim-kara-form .kgf-field textarea { min-height: 132px; }
.najim-kara-form .kgf-field input:focus,
.najim-kara-form .kgf-field select:focus,
.najim-kara-form .kgf-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200,16,24,.1);
}
.najim-kara-form .kgf-submit {
  min-height: 54px;
  margin-top: 20px;
  padding: 0 23px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(200,16,24,.2);
}
.najim-kara-form .kgf-submit:hover { filter: brightness(.95); }
.najim-kara-form .kgf-status { font-weight: 700; }
.najim-kara-form .kgf-note {
  margin-top: 8px;
  color: var(--slate);
  font-size: .74rem;
}
.najim-form-privacy { margin: 3px 0 0; font-size: .74rem; }
.najim-form-privacy a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.kgf-missing {
  padding: 22px;
  border: 1px solid rgba(200,16,24,.18);
  border-radius: 16px;
  background: var(--red-soft);
  color: var(--charcoal);
}
.kgf-missing strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.kgf-missing p { margin: 0; color: var(--slate); }
.kgf-missing-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

@media (max-width: 1080px) {
  .nav-links { gap: 22px; }
  .language-switcher { padding-inline: 8px; }
}
@media (max-width: 900px) {
  .language-switcher { margin: 8px 0 2px; padding: 10px 15px; }
}
@media (max-width: 640px) {
  .najim-kara-form .kgf-grid { grid-template-columns: 1fr; }
  .najim-kara-form .kgf-full { grid-column: auto; }
  .najim-kara-form .kgf-submit { width: 100%; }
  .kgf-missing-actions .btn { width: 100%; }
}
