:root {
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --paper: #FAFAF7;
  --paper-pure: #FFFFFF;
  --red: #E11D2E;
  --red-deep: #B8152A;
  --red-soft: #FFF1F2;
  --gray-900: #111111;
  --gray-700: #3F3F3F;
  --gray-500: #7A7A7A;
  --gray-300: #D6D6D6;
  --gray-200: #E8E8E8;
  --gray-100: #F2F2F0;
  --font-display: 'Cairo', 'Archivo', system-ui, sans-serif;
  --font-body: 'Cairo', system-ui, sans-serif;
  --font-mono: 'Archivo', monospace;
  --max-w: 1360px;
  --pad: clamp(1.25rem, 3vw, 2.5rem);
}

/* ===== Container ===== */
.domain-search-box {
    width: 60%;
    margin: 0px auto;
    padding: 22px 30px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 10px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    text-align: center;
    direction: rtl;
}

/* Title */
.domain-search-box h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
}

/* Form */
.domain-search-box form {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Input */
.domain-search-box input[type="text"] {
    width: 100%;
    padding: 16px 18px;
    border: none;
    outline: none;
    border-radius: 0 14px 14px 0;
    font-size: 15px;
    background: #f1f5f9;
}

/* Button */
.domain-search-box button,
.domain-search-box input[type="submit"] {
    width: 17% !important;
    left: 0 !important;
    padding: 10px;
    border: none;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(135deg, #ff3b3b, #d90429);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* إضافة أيقونة 🔍 */

/* Hover Animation */
.domain-search-box button:hover,
.domain-search-box input[type="submit"]:hover {
    transform: translateY(-2px) scale(1.00);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.5);
}

/* Glow Effect */
.domain-search-box button::after,
.domain-search-box input[type="submit"]::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.2);
    top: 0;
    right: 0;
    transition: 0.3s;
}

.domain-search-box button:hover::after,
.domain-search-box input[type="submit"]:hover::after {
    width: 100%;
}

/* ===== Domain Extensions ===== */
.domain-extensions {
    margin-top: 25px;
}

.domain-extensions span {
    display: inline-block;
    background: #334155;
    color: #fff;
    padding: 8px 14px;
    margin: 4px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

/* Hover Extensions */
.domain-extensions span:hover {
    background: #ef4444;
    transform: translateY(-3px);
    cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .domain-search-box {
        width: 100%;
    }

    .domain-search-box form {
        flex-direction: column;
    }

    .domain-search-box input[type="text"],
    .domain-search-box button,
    .domain-search-box input[type="submit"] {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 10px;
    }
}
* { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: #0c0a0a;
      color: var(--ink);
      line-height: 1.55;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul { list-style: none; }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--pad);
    }

    /* ═══════════════════════════════════════════
       NAVIGATION
       ═══════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      inset-inline: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
      background: rgba(10, 10, 10, 0.78);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem var(--pad);
      max-width: var(--max-w);
      margin: 0 auto;
      color: var(--paper);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      position: relative;
      display: grid;
      place-items: center;
      background: var(--red);
      border-radius: 8px;
      overflow: hidden;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      inset: 4px;
      border-radius: 4px;
      background:
        linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.25) 50%, transparent 55%),
        var(--red);
    }

    .logo-mark span {
      position: relative;
      color: white;
      font-weight: 900;
      font-size: 1rem;
      font-family: var(--font-mono);
    }

    /* ─── Custom logo image (uploaded from "Site Identity") ─── */
    .logo--image {
      gap: 0;
    }

    .logo--image .custom-logo-link {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }

    .logo--image .custom-logo {
      height: var(--logo-h, 40px);
      width: auto;
      max-width: 220px;
      display: block;
      object-fit: contain;
    }

    /* Footer logo sizing */
    footer .logo--image .custom-logo {
      height: var(--logo-h-footer, 36px);
      max-width: 200px;
    }

    .nav-links {
      display: flex;
      gap: 2.25rem;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .nav-links a {
      position: relative;
      padding: 0.4rem 0;
      opacity: 0.75;
      transition: opacity 0.2s;
    }

    .nav-links a:hover { opacity: 1; }

    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: 0;
      inset-inline: 50%;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: all 0.3s;
      transform: translateX(50%);
    }

    .nav-links a:hover::after { width: 100%; inset-inline: 0; transform: none; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.65rem 1.25rem;
      background: var(--red);
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
      border-radius: 100px;
      transition: all 0.2s;
    }

    .nav-cta:hover {
      background: white;
      color: var(--ink);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      color: white;
      font-size: 1.5rem;
    }

    /* ═══════════════════════════════════════════
       HERO
       ═══════════════════════════════════════════ */
    .hero {
      background: var(--ink);
      color: var(--paper);
      padding: 9rem var(--pad) 4rem;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 580px;
      height: 580px;
      background: radial-gradient(circle, rgba(225, 29, 46, 0.22), transparent 65%);
      top: -150px;
      inset-inline-start: -150px;
      filter: blur(40px);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 2rem;
      padding: 0.5rem 1rem;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      direction: ltr;
    }

    .hero-kicker .dot {
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--red);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(3rem, 8.5vw, 8rem);
      line-height: 0.95;
      letter-spacing: -0.035em;
      margin-bottom: 1.5rem;
      max-width: 15ch;
    }

    .hero h1 .accent {
      color: var(--red);
      font-style: italic;
      display: inline-block;
      position: relative;
    }

    .hero h1 .accent::after {
      content: "";
      position: absolute;
      inset-inline-start: -4%;
      bottom: 8%;
      width: 108%;
      height: 18%;
      background: var(--red);
      opacity: 0.18;
      z-index: -1;
      transform: skewX(-8deg);
    }

    .hero-sub {
      font-size: clamp(1.1rem, 1.6vw, 1.35rem);
      color: rgba(255,255,255,0.7);
      max-width: 56ch;
      margin-bottom: 3rem;
      font-weight: 400;
      line-height: 1.65;
    }

    /* Hero CTAs */
    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1.05rem 2rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.25s;
    }

    .hero-btn-primary {
      background: var(--red);
      color: white;
      box-shadow: 0 16px 40px -12px rgba(225, 29, 46, 0.5);
    }

    .hero-btn-primary:hover {
      background: white;
      color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 16px 40px -12px rgba(255, 255, 255, 0.3);
    }

    .hero-btn-ghost {
      border: 1.5px solid rgba(255,255,255,0.25);
      color: white;
    }

    .hero-btn-ghost:hover {
      background: white;
      color: var(--ink);
      border-color: white;
    }

    .hero-ticker {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 1rem;
    }

    .ticker-item {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .ticker-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: white;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .ticker-num .plus { color: var(--red); }

    .ticker-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      font-family: var(--font-mono);
      letter-spacing: 0.05em;
    }

    /* ═══════════════════════════════════════════
       TLD PRICING STRIP
       ═══════════════════════════════════════════ */
    .tld-strip {
      background: var(--ink);
      padding: 0 var(--pad) 5rem;
      position: relative;
    }

    .tld-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1px;
      background: rgba(255,255,255,0.08);
      border-radius: 16px;
      overflow: hidden;
      max-width: var(--max-w);
      margin: 0 auto;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .tld-card {
      background: var(--ink);
      padding: 1.75rem 1.5rem;
      color: var(--paper);
      position: relative;
      transition: all 0.25s;
      cursor: pointer;
    }

    .tld-card:hover {
      background: var(--ink-soft);
    }

    .tld-card.featured {
      background: var(--red);
    }

    .tld-card.featured:hover { background: var(--red-deep); }

    .tld-ext {
      font-family: var(--font-mono);
      font-size: 1.75rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
      direction: ltr;
      display: block;
    }

    .tld-price {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      direction: ltr;
    }

    .tld-card.featured .tld-price { color: rgba(255,255,255,0.85); }

    .tld-price strong {
      color: white;
      font-size: 1.05rem;
      font-weight: 700;
      font-family: var(--font-mono);
    }

    .tld-tag {
      position: absolute;
      top: 0.75rem;
      inset-inline-end: 0.75rem;
      background: white;
      color: var(--red);
      font-size: 0.65rem;
      font-weight: 800;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-family: var(--font-mono);
      letter-spacing: 0.05em;
    }

    /* ═══════════════════════════════════════════
       SECTION HEADERS
       ═══════════════════════════════════════════ */
    .section {
      padding: 7rem var(--pad);
      position: relative;
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 4rem;
      max-width: var(--max-w);
      margin-inline: auto;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--font-display);
      font-size: 0.9rem;
      letter-spacing: 0;
      color: var(--red);
      font-weight: 700;
      margin-bottom: 1.25rem;
    }

    .section-eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--red);
    }

    .section h2 {
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 4.5vw, 4rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.03em;
      max-width: 16ch;
    }

    .section h2 em {
      font-style: italic;
      color: var(--red);
    }

    .section-desc {
      color: var(--gray-700);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 50ch;
    }

    /* ═══════════════════════════════════════════
       SERVICES
       ═══════════════════════════════════════════ */
    .services {
      background: var(--paper);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1.25rem;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .service-card {
      background: white;
      border: 1px solid var(--gray-200);
      padding: 2.25rem;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
      cursor: pointer;
      min-height: 260px;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
      border-color: var(--ink);
    }

    .service-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      inset-inline-start: 0;
      width: 0;
      height: 4px;
      background: var(--red);
      transition: width 0.4s;
    }

    .service-card:hover::after { width: 100%; }

    .service-card.lg { grid-column: span 6; min-height: 340px; }
    .service-card.md { grid-column: span 4; }
    .service-card.sm { grid-column: span 3; }
    .service-card.wide { grid-column: span 8; }

    .service-num {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--gray-500);
      letter-spacing: 0.15em;
      margin-bottom: auto;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      background: var(--gray-100);
      border-radius: 12px;
      margin-bottom: 1.5rem;
      color: var(--ink);
      transition: all 0.3s;
    }

    .service-card:hover .service-icon {
      background: var(--red);
      color: white;
      transform: rotate(-6deg) scale(1.05);
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 2vw, 1.75rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }

    .service-card.lg h3 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }

    .service-card p {
      color: var(--gray-700);
      font-size: 0.95rem;
      line-height: 1.65;
      margin-bottom: 1.25rem;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--ink);
      margin-top: auto;
    }

    .service-link svg { transition: transform 0.2s; }
    .service-card:hover .service-link { color: var(--red); }
    .service-card:hover .service-link svg { transform: translateX(-4px); }

    .service-card.dark {
      background: var(--ink);
      color: white;
      border-color: var(--ink);
    }

    .service-card.dark .service-icon {
      background: rgba(255,255,255,0.1);
      color: white;
    }

    .service-card.dark p { color: rgba(255,255,255,0.65); }
    .service-card.dark .service-link { color: white; }
    .service-card.dark .service-num { color: rgba(255,255,255,0.5); }

    /* ═══════════════════════════════════════════
       PORTFOLIO
       ═══════════════════════════════════════════ */
    .portfolio {
      background: white;
      border-block: 1px solid var(--gray-200);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .portfolio-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/5;
      cursor: pointer;
      transition: transform 0.4s;
      isolation: isolate;
    }

    .portfolio-card:hover { transform: translateY(-6px); }

    .portfolio-visual {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .portfolio-card:nth-child(1) .portfolio-visual {
      background: linear-gradient(135deg, #FFE8EC 0%, #FFC9D0 100%);
    }

    .portfolio-card:nth-child(2) .portfolio-visual {
      background: linear-gradient(135deg, #0A0A0A 0%, #2A0A0F 100%);
    }

    .portfolio-card:nth-child(3) .portfolio-visual {
      background: linear-gradient(135deg, #FDFDFD 0%, #E8E8E8 100%);
    }

    /* Saloni visual */
    .visual-saloni {
      width: 80%;
      height: 80%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .visual-saloni::before,
    .visual-saloni::after {
      content: "";
      position: absolute;
      border-radius: 24px;
      background: white;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .visual-saloni::before {
      width: 75%;
      height: 65%;
      top: 12%;
      inset-inline-start: 6%;
      transform: rotate(-6deg);
    }

    .visual-saloni::after {
      width: 70%;
      height: 55%;
      bottom: 8%;
      inset-inline-end: 4%;
      transform: rotate(4deg);
      background: var(--red);
    }

    /* Barq visual */
    .visual-barq {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      width: 75%;
      padding: 2rem;
    }

    .visual-barq span {
      aspect-ratio: 1.6;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(225,29,46,0.9), rgba(184,21,42,0.9));
      position: relative;
    }

    .visual-barq span:nth-child(2) {
      background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
      border: 1px solid rgba(255,255,255,0.2);
    }

    .visual-barq span:nth-child(3) {
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.15);
    }

    .visual-barq span::after {
      content: "";
      position: absolute;
      bottom: 15%;
      inset-inline-start: 15%;
      width: 30%;
      height: 3px;
      background: rgba(255,255,255,0.5);
      border-radius: 2px;
    }

    /* Support visual */
    .visual-support {
      width: 75%;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .visual-support span {
      height: 12px;
      background: var(--ink);
      border-radius: 3px;
      width: 100%;
    }

    .visual-support span:nth-child(2) { width: 75%; background: var(--red); }
    .visual-support span:nth-child(3) { width: 60%; background: var(--gray-300); }
    .visual-support span:nth-child(4) { width: 85%; }
    .visual-support span:nth-child(5) { width: 50%; background: var(--red); }
    .visual-support span:nth-child(6) { width: 70%; background: var(--gray-300); }

    .portfolio-info {
      position: absolute;
      bottom: 0;
      inset-inline: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
      color: white;
    }

    .portfolio-tag {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.35rem;
    }

    .portfolio-info h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .portfolio-info p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      margin-top: 0.4rem;
    }

    .portfolio-card .chip {
      position: absolute;
      top: 1.25rem;
      inset-inline-end: 1.25rem;
      background: white;
      padding: 0.35rem 0.75rem;
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--ink);
      z-index: 5;
    }

    /* ═══════════════════════════════════════════
       FEATURES / WHY
       ═══════════════════════════════════════════ */
    .why {
      background: var(--ink);
      color: white;
    }

    .why h2 { color: white; }

    .why .section-desc { color: rgba(255,255,255,0.65); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-w);
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .why-item {
      padding: 3rem 2rem;
      border-inline-end: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      position: relative;
      transition: background 0.25s;
    }

    .why-item:hover { background: rgba(225, 29, 46, 0.08); }
    .why-item:nth-child(4n) { border-inline-end: none; }

    .why-item .num {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 4.5rem);
      font-weight: 900;
      color: var(--red);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 1rem;
      font-family: var(--font-mono);
    }

    .why-item h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .why-item p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }

    /* ═══════════════════════════════════════════
       PROCESS
       ═══════════════════════════════════════════ */
    .process {
      background: var(--paper);
    }

    .process-list {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .process-item {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 2rem;
      align-items: center;
      padding: 2.25rem 0;
      border-bottom: 1px solid var(--gray-200);
      transition: padding 0.3s;
    }

    .process-item:hover {
      padding-inline: 1.5rem;
      background: white;
    }

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

    .process-num {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: var(--gray-500);
      letter-spacing: 0.1em;
    }

    .process-item h4 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.4rem;
    }

    .process-item p {
      color: var(--gray-700);
      font-size: 1rem;
      max-width: 60ch;
    }

    .process-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--gray-300);
      display: grid;
      place-items: center;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .process-item:hover .process-arrow {
      background: var(--red);
      border-color: var(--red);
      color: white;
      transform: rotate(-45deg);
    }

    /* ═══════════════════════════════════════════
       CTA
       ═══════════════════════════════════════════ */
    .cta {
      background: var(--red);
      color: white;
      padding: 6rem var(--pad);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08), transparent 40%);
    }

    .cta-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

    .cta h2 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5.5vw, 5rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.035em;
      margin-bottom: 1.5rem;
    }

    .cta h2 em {
      font-style: italic;
      background: linear-gradient(135deg, #fff, #ffd6dc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta p {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 2.5rem;
      max-width: 55ch;
      margin-inline: auto;
    }

    .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.25s;
    }

    .btn-primary {
      background: white;
      color: var(--red);
    }

    .btn-primary:hover {
      background: var(--ink);
      color: white;
      transform: translateY(-2px);
    }

    .btn-ghost {
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
    }

    .btn-ghost:hover {
      background: white;
      color: var(--red);
      border-color: white;
    }

    /* ═══════════════════════════════════════════
       FOOTER
       ═══════════════════════════════════════════ */
    footer {
      background: var(--ink);
      color: var(--paper);
      padding: 5rem var(--pad) 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 3rem;
      max-width: var(--max-w);
      margin: 0 auto 3rem;
    }

    .footer-brand .logo { margin-bottom: 1.25rem; color: white; }

    .footer-brand p {
      color: rgba(255,255,255,0.6);
      font-size: 0.95rem;
      max-width: 32ch;
      line-height: 1.7;
    }

    .footer-col h5 {
      font-family: var(--font-display);
      font-size: 0.9rem;
      letter-spacing: 0;
      color: var(--red);
      margin-bottom: 1.25rem;
      font-weight: 800;
    }

    /* Restore uppercase + spacing only for Latin-only headings */
    .footer-col h5:lang(en),
    .footer-col h5.en {
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

    .footer-col a {
      color: rgba(255,255,255,0.7);
      font-size: 0.92rem;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--red); }

    .footer-bottom {
      max-width: var(--max-w);
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .socials { display: flex; gap: 0.75rem; }

    .socials a {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      display: grid;
      place-items: center;
      transition: all 0.2s;
    }

    .socials a:hover {
      background: var(--red);
      border-color: var(--red);
      color: white;
    }

    /* ═══════════════════════════════════════════
       REVEAL ANIMATIONS
       ═══════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .reveal.in { opacity: 1; transform: none; }

    /* ═══════════════════════════════════════════
       RESPONSIVE
       ═══════════════════════════════════════════ */
    @media (max-width: 960px) {
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
      .services-grid { grid-template-columns: repeat(6, 1fr); }
      .service-card.lg, .service-card.md, .service-card.sm, .service-card.wide { grid-column: span 6; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .why-item:nth-child(4n) { border-inline-end: 1px solid rgba(255,255,255,0.1); }
      .why-item:nth-child(2n) { border-inline-end: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .process-item { grid-template-columns: 80px 1fr auto; gap: 1rem; }
    }

    @media (max-width: 600px) {
      .why-grid { grid-template-columns: 1fr; }
      .why-item { border-inline-end: none !important; }
      .footer-top { grid-template-columns: 1fr; }
      .hero-ticker { gap: 1.5rem; }
      .ticker-num { font-size: 1.5rem; }
    }