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

    :root {
      --navy: #0f2040;
      --navy2: #1a3055;
      --navy3: #0a1628;
      --teal: #0a9e8f;
      --teal-dark: #087d71;
      --teal-light: #e6f7f5;
      --teal-mid: #b2e8e3;
      --bg: #ffffff;
      --bg2: #f8fafc;
      --bg3: #f0faf9;
      --text: #0f2040;
      --muted: #4a5e78;
      --muted2: #546b80;
      --border: #e2e8f0;
      --border-hi: #c8d8e8;
      --amber: #d97706;
      --amber-bg: #fffbeb;
      --amber-mid: #fde68a;
      --shadow-sm: 0 1px 3px rgba(15, 32, 64, 0.08), 0 1px 2px rgba(15, 32, 64, 0.06);
      --shadow-md: 0 4px 24px rgba(15, 32, 64, 0.1);
      --shadow-lg: 0 12px 48px rgba(15, 32, 64, 0.14);
      --radius: 14px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Cairo', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 0 rgba(15, 32, 64, 0.06);
    }

    .nav-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
      height: 96px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo img {
      height: 80px;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }

    .nav-links a:hover {
      color: var(--navy);
      background: var(--bg2);
    }

    .nav-cta {
      background: var(--teal-dark) !important;
      color: #fff !important;
      padding: 8px 20px !important;
      border-radius: 9px !important;
      margin-right: 6px;
    }

    .nav-cta:hover {
      background: #065c54 !important;
    }

    .nav-mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.2rem;
      cursor: pointer;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-right: 10px;
    }

    .lang-switcher a {
      font-size: 0.75rem;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 7px;
      text-decoration: none;
      color: var(--muted);
      border: 1.5px solid var(--border);
      transition: all 0.2s;
      letter-spacing: 0.03em;
    }

    .lang-switcher a:hover {
      color: var(--navy);
      border-color: var(--teal);
      background: var(--teal-light);
    }

    .lang-switcher a.lang-active {
      color: var(--navy);
      border-color: var(--teal);
      background: var(--teal-light);
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 24px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
    }

    .btn-teal {
      background: var(--teal);
      color: #fff;
      box-shadow: 0 4px 20px rgba(10, 158, 143, 0.28);
    }

    .btn-teal:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(10, 158, 143, 0.38);
    }

    .btn-navy {
      background: var(--navy);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }

    .btn-navy:hover {
      background: var(--navy2);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--border-hi);
      color: var(--navy);
    }

    .btn-outline:hover {
      border-color: var(--teal);
      color: var(--teal);
      transform: translateY(-2px);
    }

    .btn-white {
      background: #fff;
      color: var(--navy);
      box-shadow: var(--shadow-sm);
    }

    .btn-white:hover {
      background: #f0faf9;
      transform: translateY(-2px);
    }

    .btn-outline-white {
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      color: #fff;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
    }

    .btn-wa {
      background: #25d366;
      color: #fff;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
    }

    .btn-wa:hover {
      background: #1fba58;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.38);
    }

    .btn-sm {
      padding: 9px 18px;
      font-size: 0.85rem;
    }

    /* ── SECTION HELPERS ── */
    .section {
      padding: 96px 0;
    }

    .section-alt {
      background: var(--bg2);
    }

    .section-teal {
      background: var(--bg3);
    }

    .section-navy {
      background: var(--navy);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--teal);
      background: var(--teal-light);
      border: 1px solid var(--teal-mid);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    h2 {
      font-size: clamp(1.85rem, 3.5vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.8;
    }

    .teal-text {
      color: var(--teal);
    }

    .amber-text {
      color: var(--amber);
    }

    /* ── HERO ── */
    .hero {
      padding: 168px 0 96px;
      background: linear-gradient(155deg, #f0faf9 0%, #ffffff 45%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -180px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(10, 158, 143, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 56px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal-light);
      border: 1px solid var(--teal-mid);
      color: var(--teal-dark);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .hero h1 {
      font-size: clamp(2rem, 4.2vw, 3.2rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .hero-sub {
      font-size: 1.08rem;
      color: var(--muted);
      margin-bottom: 12px;
      line-height: 1.8;
      max-width: 480px;
    }

    .hero-sub-industry {
      font-size: 0.9rem;
      color: var(--muted2);
      margin-bottom: 28px;
      line-height: 1.7;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .hero-trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .htb {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
    }

    .htb i {
      color: var(--teal);
      font-size: 0.75rem;
    }

    .htb-sep {
      color: var(--border-hi);
      font-size: 0.7rem;
    }

    .hero-note {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--muted2);
    }

    .hero-note i {
      color: var(--teal);
    }

    /* ── HERO MOCKUP ── */
    .hero-visual {
      position: relative;
    }

    .mockup-browser {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15, 32, 64, 0.04);
    }

    .mockup-bar {
      background: var(--bg2);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--border);
    }

    .mockup-dots {
      display: flex;
      gap: 7px;
    }

    .mockup-dots span {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .dot-r {
      background: #ff5f57;
    }

    .dot-y {
      background: #febc2e;
    }

    .dot-g {
      background: #28c840;
    }

    .mockup-url {
      flex: 1;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 0.72rem;
      color: var(--muted2);
      text-align: center;
      max-width: 300px;
      margin: 0 auto;
      font-family: monospace;
      direction: ltr;
    }

    .mockup-inner {
      display: grid;
      grid-template-columns: 190px 1fr;
    }

    .mock-sidebar {
      background: var(--navy);
      padding: 18px 13px;
    }

    .mock-logo-area {
      font-size: 0.78rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
      opacity: 0.85;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .mock-logo-area span {
      width: 20px;
      height: 20px;
      background: var(--teal);
      border-radius: 5px;
      display: inline-block;
    }

    .mock-nav-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border-radius: 7px;
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 2px;
    }

    .mock-nav-item.active {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .mock-nav-item i {
      width: 13px;
      text-align: center;
      font-size: 0.68rem;
    }

    .mock-main {
      padding: 18px;
      background: #fff;
    }

    .mock-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .mock-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--navy);
    }

    .mock-tag {
      background: var(--teal-light);
      color: var(--teal-dark);
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      border: 1px solid var(--teal-mid);
    }

    .mock-invoice-card {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .mic-header {
      background: var(--navy);
      padding: 12px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mic-header-left {
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
    }

    .mic-header-right {
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .mic-body {
      padding: 12px 14px;
    }

    .mic-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.68rem;
      color: var(--muted);
      padding: 4px 0;
      border-bottom: 1px solid var(--border);
    }

    .mic-row:last-child {
      border-bottom: none;
      font-weight: 700;
      color: var(--navy);
      font-size: 0.75rem;
    }

    .mic-row span:last-child {
      font-weight: 600;
      color: var(--navy);
    }

    .mic-row:last-child span:last-child {
      color: var(--teal);
    }

    .mock-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-top: 10px;
    }

    .mock-stat {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 10px 12px;
    }

    .mock-stat-label {
      font-size: 0.62rem;
      color: var(--muted2);
      margin-bottom: 3px;
    }

    .mock-stat-val {
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--navy);
    }

    .mock-stat-val.green {
      color: #16a34a;
    }

    .hero-float-badge {
      position: absolute;
      bottom: -12px;
      left: -18px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 11px 15px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hfb-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .hfb-icon-green {
      background: #dcfce7;
      color: #16a34a;
    }

    .hfb-label {
      font-size: 0.65rem;
      color: var(--muted2);
    }

    .hfb-val {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--navy);
      direction: ltr;
    }

    /* ── MARKET BANNER ── */
    .market-banner {
      padding: 20px 0;
      background: var(--navy3);
    }

    .market-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .market-inner span {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .market-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .market-sep {
      color: rgba(255, 255, 255, 0.2);
      font-size: 0.7rem;
    }

    /* ── HOSTING OPTIONS ── */
    .hosting-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 52px;
    }

    .hosting-card {
      border-radius: var(--radius);
      padding: 36px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .hosting-card-your {
      background: #fff;
      border: 2px solid var(--border);
    }

    .hosting-card-our {
      background: var(--navy);
      border: 2px solid var(--navy);
    }

    .hosting-card:hover {
      transform: translateY(-4px);
    }

    .hosting-card-your:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--teal-mid);
    }

    .hosting-card-our:hover {
      box-shadow: 0 12px 48px rgba(15, 32, 64, 0.4);
    }

    .hosting-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    .hi-teal {
      background: var(--teal-light);
      color: var(--teal);
    }

    .hi-white {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .hosting-card-your h3 {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .hosting-card-our h3 {
      font-size: 1.15rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .hosting-card-your p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .hosting-card-our p {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .hosting-list {
      list-style: none;
    }

    .hosting-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.88rem;
      margin-bottom: 9px;
    }

    .hosting-card-your .hosting-list li {
      color: var(--muted);
    }

    .hosting-card-our .hosting-list li {
      color: rgba(255, 255, 255, 0.65);
    }

    .hosting-list li i {
      margin-top: 3px;
      flex-shrink: 0;
    }

    .hosting-card-your .hosting-list li i {
      color: var(--teal);
    }

    .hosting-card-our .hosting-list li i {
      color: rgba(10, 158, 143, 0.8);
    }

    .hosting-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--teal);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
    }

    /* ── PRECAST ENGINE ── */
    .precast-section {
      padding: 100px 0;
      background: linear-gradient(165deg, #0f2040 0%, #0a3030 100%);
      position: relative;
      overflow: hidden;
    }

    .precast-section::before {
      content: '';
      position: absolute;
      top: -150px;
      left: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(10, 158, 143, 0.15) 0%, transparent 65%);
      pointer-events: none;
    }

    .precast-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .precast-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--teal);
      background: rgba(10, 158, 143, 0.15);
      border: 1px solid rgba(10, 158, 143, 0.3);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .precast-excl {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(217, 119, 6, 0.15);
      border: 1px solid rgba(217, 119, 6, 0.3);
      color: #fbbf24;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 12px;
    }

    .precast-section h2 {
      color: #fff;
    }

    .precast-section .section-sub {
      color: rgba(255, 255, 255, 0.6);
      max-width: 480px;
    }

    .precast-features {
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .pf-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 10px;
      padding: 16px;
    }

    .pf-item i {
      color: var(--teal);
      margin-left: 8px;
    }

    .pf-item-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .pf-item-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    .no-competitor-banner {
      margin-top: 28px;
      background: rgba(217, 119, 6, 0.12);
      border: 1px solid rgba(217, 119, 6, 0.25);
      border-radius: 10px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .no-competitor-banner i {
      color: #fbbf24;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .no-competitor-banner p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .no-competitor-banner strong {
      color: #fbbf24;
    }

    /* ── COST ENGINE MOCKUP ── */
    .cost-engine-mockup {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    }

    .cem-header {
      background: rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cem-header-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cem-header-title i {
      color: var(--teal);
    }

    .cem-badge {
      background: rgba(10, 158, 143, 0.2);
      color: #4dd9cb;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      border: 1px solid rgba(10, 158, 143, 0.3);
    }

    .cem-body {
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .cem-label {
      font-size: 0.68rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 5px;
    }

    .cem-select {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 7px;
      padding: 7px 10px;
      font-size: 0.78rem;
      color: #fff;
      width: 100%;
      direction: rtl;
      font-family: 'Cairo', sans-serif;
    }

    .cem-dim-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .cem-dim {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 7px;
      padding: 7px 10px;
      text-align: center;
    }

    .cem-dim-val {
      font-size: 0.88rem;
      font-weight: 700;
      color: #fff;
      direction: ltr;
    }

    .cem-dim-unit {
      font-size: 0.62rem;
      color: rgba(255, 255, 255, 0.4);
    }

    .cem-volume {
      background: rgba(10, 158, 143, 0.12);
      border: 1px solid rgba(10, 158, 143, 0.25);
      border-radius: 8px;
      padding: 10px 12px;
      margin-top: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cem-volume-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .cem-volume-val {
      font-size: 1.1rem;
      font-weight: 900;
      color: #4dd9cb;
      direction: ltr;
    }

    .cem-results-title {
      font-size: 0.72rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .cem-cost-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 7px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.78rem;
    }

    .cem-cost-row:last-child {
      border-bottom: none;
    }

    .cem-cost-label {
      color: rgba(255, 255, 255, 0.55);
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .cem-cost-label i {
      width: 14px;
      text-align: center;
    }

    .cem-cost-val {
      font-weight: 700;
      color: #fff;
      direction: ltr;
    }

    .cem-total {
      background: rgba(10, 158, 143, 0.12);
      border: 1px solid rgba(10, 158, 143, 0.25);
      border-radius: 8px;
      padding: 12px 14px;
      margin-top: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cem-total-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.7);
    }

    .cem-total-val {
      font-size: 1.15rem;
      font-weight: 900;
      color: #4dd9cb;
      direction: ltr;
    }

    .cem-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 12px 18px;
      display: flex;
      justify-content: flex-start;
    }

    .cem-footer-btn {
      background: var(--teal);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 7px 16px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ── FEATURES ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
    }

    .feat-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

    .feat-card:hover {
      border-color: var(--teal-mid);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .feat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 16px;
    }

    .fi-1 {
      background: var(--teal-light);
      color: var(--teal);
    }

    .fi-2 {
      background: #e0f2fe;
      color: #0369a1;
    }

    .fi-3 {
      background: #f3e8ff;
      color: #7c3aed;
    }

    .fi-4 {
      background: var(--amber-bg);
      color: var(--amber);
    }

    .fi-5 {
      background: #dcfce7;
      color: #16a34a;
    }

    .fi-6 {
      background: #ffe4e6;
      color: #be123c;
    }

    .feat-card h3 {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .feat-card p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── HOW IT WORKS ── */
    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 60px;
      position: relative;
    }

    .hiw-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: calc(16.6% + 12px);
      right: calc(16.6% + 12px);
      height: 2px;
      background: linear-gradient(90deg, var(--teal-mid), var(--teal), var(--teal-mid));
    }

    .step {
      text-align: center;
    }

    .step-num {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.35rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 0 8px var(--bg2);
      color: var(--teal);
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .step p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    /* ── PRICING ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 52px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px;
      text-align: center;
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.25s;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(15, 32, 64, 0.14);
      border-color: var(--border-hi);
    }

    .pricing-card.featured {
      border: 2px solid var(--teal);
      box-shadow: 0 8px 32px rgba(10, 158, 143, 0.15);
    }

    .pricing-card.featured:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 64px rgba(10, 158, 143, 0.25);
    }

    .pricing-card.featured::before {
      content: 'موصى به';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--teal);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .pricing-icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin: 0 auto 16px;
    }

    .pi-1 {
      background: var(--bg2);
      color: var(--navy);
    }

    .pi-2 {
      background: var(--teal-light);
      color: var(--teal);
    }

    .pricing-card h3 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .pricing-price {
      font-size: 2rem;
      font-weight: 900;
      color: var(--teal);
      letter-spacing: -0.04em;
      margin: 12px 0 3px;
      line-height: 1;
      direction: ltr;
    }

    .pricing-price-sub {
      font-size: 0.8rem;
      color: var(--muted2);
      margin-bottom: 16px;
      font-weight: 500;
    }

    .pricing-desc {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .pricing-list {
      list-style: none;
      text-align: right;
    }

    .pricing-list li {
      font-size: 0.85rem;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin-bottom: 9px;
      flex-direction: row-reverse;
    }

    .pricing-list li i {
      color: var(--teal);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .pricing-note {
      margin-top: 20px;
      font-size: 0.8rem;
      color: var(--muted2);
      font-style: italic;
    }

    .btn-pricing {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin-top: 22px;
      padding: 12px;
      border-radius: 9px;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      background: var(--bg2);
      border: 1.5px solid var(--border-hi);
      color: var(--navy);
      transition: all 0.2s;
    }

    .btn-pricing:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
      transform: translateY(-2px);
    }

    .pricing-card.featured .btn-pricing {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal);
    }

    .pricing-card.featured .btn-pricing:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
    }

    .pricing-note-top {
      text-align: center;
      font-size: 0.92rem;
      color: var(--muted);
      background: var(--teal-light);
      border: 1px solid var(--teal-mid);
      border-radius: 10px;
      padding: 12px 20px;
      margin-top: 32px;
      margin-bottom: -16px;
    }

    .pricing-note-bottom {
      text-align: center;
      font-size: 0.84rem;
      color: var(--muted2);
      margin-top: 24px;
      font-style: italic;
    }

    /* ── DEPLOY ── */
    .deploy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    .deploy-card {
      border-radius: var(--radius);
      padding: 32px;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .deploy-card-light {
      background: #fff;
      border: 1.5px solid var(--border);
    }

    .deploy-card-light:hover {
      border-color: var(--teal-mid);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .deploy-card-dark {
      background: var(--navy);
      border: 1.5px solid var(--navy);
    }

    .deploy-card-dark:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(15, 32, 64, 0.35);
    }

    .deploy-icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 18px;
    }

    .di-teal {
      background: var(--teal-light);
      color: var(--teal);
    }

    .di-white {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .deploy-card-light h3 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .deploy-card-dark h3 {
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .deploy-card-light .deploy-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .deploy-card-dark .deploy-desc {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .deploy-list {
      list-style: none;
    }

    .deploy-list li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 0.88rem;
      margin-bottom: 9px;
      flex-direction: row-reverse;
      justify-content: flex-end;
    }

    .deploy-card-light .deploy-list li {
      color: var(--muted);
    }

    .deploy-card-dark .deploy-list li {
      color: rgba(255, 255, 255, 0.65);
    }

    .deploy-list li i {
      color: var(--teal);
      flex-shrink: 0;
      font-size: 0.8rem;
    }

    .deploy-trust {
      text-align: center;
      margin-top: 28px;
      background: var(--teal-light);
      border: 1px solid var(--teal-mid);
      border-radius: 10px;
      padding: 14px 24px;
      font-size: 0.9rem;
      color: var(--teal-dark);
      font-weight: 500;
    }

    /* ── CTA ── */
    .cta-section {
      padding: 100px 0;
      background: linear-gradient(140deg, var(--navy) 0%, #0a2535 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(10, 158, 143, 0.15) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-inner h2 {
      color: #fff;
      font-size: clamp(1.9rem, 4vw, 2.7rem);
      margin-bottom: 14px;
    }

    .cta-inner p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 1.05rem;
      margin-bottom: 36px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .cta-contacts {
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      transition: all 0.2s;
      min-width: 210px;
    }

    .contact-card:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.22);
      transform: translateY(-2px);
    }

    .cc-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .cc-teal {
      background: rgba(10, 158, 143, 0.25);
      color: #4dd9cb;
    }

    .cc-blue {
      background: rgba(59, 130, 246, 0.2);
      color: #93c5fd;
    }

    .cc-wa {
      background: rgba(37, 211, 102, 0.2);
      color: #4ade80;
    }

    .cc-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 2px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    .cc-val {
      font-size: 0.9rem;
      font-weight: 700;
      color: #fff;
      direction: ltr;
    }

    /* ── TRUST STRIP ── */
    .trust-strip {
      padding: 48px 0;
      background: var(--navy);
    }

    .trust-strip-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 28px;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-item:last-child {
      border-left: none;
    }

    .trust-item i {
      color: var(--teal);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .trust-item-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
    }

    /* ── INDUSTRY ── */
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 44px;
    }

    .industry-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 18px;
      text-align: center;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

    .industry-card:hover {
      border-color: var(--teal-mid);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .industry-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: var(--teal-light);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin: 0 auto 14px;
    }

    .industry-card h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4;
      margin-bottom: 6px;
    }

    .industry-card p {
      font-size: 0.8rem;
      color: var(--muted2);
      line-height: 1.55;
    }

    /* ── DEMO ── */
    .demo-placeholder {
      background: var(--bg2);
      border: 2px dashed var(--border-hi);
      border-radius: 16px;
      aspect-ratio: 16/9;
      max-height: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 48px;
      cursor: pointer;
      transition: border-color 0.25s, background 0.25s;
    }

    .demo-placeholder:hover {
      border-color: var(--teal);
      background: var(--teal-light);
    }

    .demo-play {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: var(--teal);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 8px 28px rgba(10, 158, 143, 0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .demo-placeholder:hover .demo-play {
      transform: scale(1.08);
      box-shadow: 0 12px 36px rgba(10, 158, 143, 0.4);
    }

    .demo-placeholder p {
      font-size: 0.92rem;
      color: var(--muted2);
      font-weight: 500;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy3);
      padding: 52px 0 30px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.8fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 44px;
    }

    .footer-logo-wrap {
      display: inline-block;
      background: rgba(255, 255, 255, 0.96);
      padding: 8px 14px;
      border-radius: 9px;
      margin-bottom: 16px;
    }

    .footer-logo-wrap img {
      width: 180px;
      height: auto;
      display: block;
    }

    .footer-tagline {
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }

    .footer-brand-desc {
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .footer-bbl {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-bbl a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
    }

    .footer-bbl a:hover {
      color: #fff;
    }

    .footer-col h3,
    .footer-col-head {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.3);
    }

    .footer-copyright-sub {
      font-size: 0.74rem;
      color: rgba(255, 255, 255, 0.2);
      margin-top: 3px;
    }

    .footer-socials {
      display: flex;
      gap: 9px;
    }

    .footer-socials a {
      width: 33px;
      height: 33px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.09);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.8rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .footer-socials a:hover {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal);
    }

    .footer-brand a {
      display: block;
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      margin-top: 8px;
      transition: color 0.2s;
    }

    .footer-brand a:hover {
      color: #fff;
    }

    .footer-hours {
      margin-top: 14px;
    }

    .footer-hours-title {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 6px;
    }

    .footer-hours p {
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 2px;
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .rd1 {
      transition-delay: 0.1s;
    }

    .rd2 {
      transition-delay: 0.2s;
    }

    .rd3 {
      transition-delay: 0.3s;
    }

    /* ── TESTIMONIALS ── */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
    }

    .testimonial-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      display: flex;
      flex-direction: column;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

    .testimonial-card:hover {
      border-color: var(--teal-mid);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .t-stars {
      display: flex;
      gap: 2px;
      color: #f59e0b;
      font-size: 0.8rem;
      margin-bottom: 14px;
    }

    .t-quote {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 22px;
      flex: 1;
    }

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

    .t-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .ta-1 {
      background: linear-gradient(135deg, #0a9e8f, #087d71);
    }

    .ta-2 {
      background: linear-gradient(135deg, #1a3055, #0f2040);
    }

    .ta-3 {
      background: linear-gradient(135deg, #0369a1, #075985);
    }

    .ta-4 {
      background: linear-gradient(135deg, #d97706, #b45309);
    }

    .ta-5 {
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
    }

    .ta-6 {
      background: linear-gradient(135deg, #16a34a, #15803d);
    }

    .t-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--navy);
    }

    .t-role {
      font-size: 0.78rem;
      color: var(--muted2);
      line-height: 1.5;
    }

    /* ── FAQ ── */
    .faq-wrap {
      max-width: 820px;
      margin: 52px auto 0;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 14px;
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .faq-item:hover {
      border-color: var(--border-hi);
    }

    .faq-item.open {
      border-color: var(--teal-mid);
      box-shadow: var(--shadow-sm);
    }

    .faq-q-h {
      margin: 0;
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: start;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.5;
      transition: color 0.2s;
    }

    .faq-q:hover {
      color: var(--teal-dark);
    }

    .faq-icon {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--teal-light);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      transition: transform 0.3s, background 0.3s, color 0.3s;
    }

    .faq-item.open .faq-icon {
      background: var(--teal);
      color: #fff;
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-a-inner {
      padding: 0 24px 22px;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.85;
    }

    .faq-cta {
      text-align: center;
      margin-top: 36px;
    }

    .faq-cta p {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 16px;
    }

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

    @media (max-width: 640px) {
      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .faq-q {
        font-size: 0.92rem;
        padding: 16px 18px;
      }

      .faq-a-inner {
        padding: 0 18px 18px;
      }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.75s ease forwards;
    }

    .d1 {
      animation-delay: 0.1s;
    }

    .d2 {
      animation-delay: 0.25s;
    }

    .d3 {
      animation-delay: 0.4s;
    }

    .d4 {
      animation-delay: 0.55s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(26px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 980px) {

      .hero-inner,
      .precast-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-visual,
      .cost-engine-mockup {
        max-width: 560px;
        margin: 0 auto;
      }

      .hosting-grid,
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hiw-steps {
        grid-template-columns: 1fr;
      }

      .hiw-steps::before {
        display: none;
      }

      .pricing-grid,
      .deploy-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
      }

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

      .mockup-inner {
        grid-template-columns: 1fr;
      }

      .mock-sidebar {
        display: none;
      }

      .cem-body {
        grid-template-columns: 1fr;
      }

      .industry-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .trust-strip-inner {
        flex-direction: column;
        gap: 8px;
      }

      .trust-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }

      .trust-item:last-child {
        border-bottom: none;
      }
    }

    @media (max-width: 640px) {
      .features-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .nav-mobile-toggle {
        display: block;
      }

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

      .section {
        padding: 64px 0;
      }

      .hero {
        padding: 110px 0 56px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .cta-contacts {
        flex-direction: column;
        align-items: center;
      }

      .contact-card {
        width: 100%;
        max-width: 300px;
      }

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

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
      }
    }

/* ===== REGION / COMPARISON / COMPLIANCE (RTL) ===== */
.cmp-wrap { margin-top: 44px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table { width: 100%; min-width: 640px; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; font-size: 0.9rem; }
.cmp-table th, .cmp-table td { padding: 14px 18px; text-align: right; border-bottom: 1px solid var(--border); }
.cmp-table thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 0.85rem; }
.cmp-table thead th.cmp-us { background: var(--teal-dark); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table td.cmp-feature { font-weight: 600; color: var(--navy); }
.cmp-table td.cmp-us { background: var(--teal-light); font-weight: 600; color: var(--navy); }
.cmp-yes { color: var(--teal); font-weight: 700; }
.cmp-no { color: #be123c; }
.cmp-partial { color: var(--amber); }
.compliance-band { margin-top: 44px; background: var(--bg3); border: 1px solid var(--teal-mid); border-radius: var(--radius); padding: 28px 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.compliance-item { display: flex; gap: 12px; align-items: flex-start; }
.compliance-item i { color: var(--teal); font-size: 1.1rem; margin-top: 3px; }
.compliance-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.compliance-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 860px) { .compliance-band { grid-template-columns: 1fr; } }
