 /* =============================================
       MODERN AUTO DYNAMICS — LIGHT MODE 2026
       Orange #F26522  |  Black #0F0F0F  |  White #FFFFFF
    ============================================= */
    :root {
      --orange:        #F26522;
      --orange-bright: #FF7830;
      --orange-deep:   #C4501A;
      --orange-subtle: rgba(242,101,34,0.07);
      --orange-subtle2:rgba(242,101,34,0.12);
      --orange-border: rgba(242,101,34,0.20);
      --orange-border2:rgba(242,101,34,0.35);

      --ink:    #0F0F0F;
      --ink-70: rgba(15,15,15,0.70);
      --ink-40: rgba(15,15,15,0.40);
      --ink-15: rgba(15,15,15,0.15);
      --ink-07: rgba(15,15,15,0.07);
      --ink-04: rgba(15,15,15,0.04);

      --white:  #FFFFFF;
      --grey-1: #F7F7F7;
      --grey-2: #F0F0F0;
      --grey-3: #E5E5E5;
      --grey-4: #D0D0D0;

      --shadow-sm:  0 1px 4px rgba(15,15,15,0.08), 0 2px 8px rgba(15,15,15,0.05);
      --shadow-md:  0 4px 24px rgba(15,15,15,0.10), 0 8px 32px rgba(15,15,15,0.06);
      --shadow-lg:  0 8px 48px rgba(15,15,15,0.12), 0 16px 64px rgba(15,15,15,0.07);
      --shadow-o:   0 4px 24px rgba(242,101,34,0.22);
      --shadow-o-lg:0 8px 48px rgba(242,101,34,0.30);

      --ff-d: 'Bebas Neue', sans-serif;
      --ff-b: 'Outfit', sans-serif;

      --r-xs: 6px;  --r-sm: 10px;  --r-md: 14px;
      --r-lg: 20px; --r-xl: 28px;

      --ease: cubic-bezier(0.4,0,0.2,1);
      --t:    0.26s;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--ff-b);
      font-weight: 400;
      line-height: 1.65;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }

    .container { width: 91%; max-width: 1180px; margin-inline: auto; }

    /* ── TAG ── */
    .tag {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.68rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--orange);
      background: var(--orange-subtle); border: 1px solid var(--orange-border);
      padding: 5px 13px; border-radius: 99px;
    }
    .tag-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--orange); animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: var(--r-md);
      font-family: var(--ff-b); font-size: .9rem; font-weight: 700;
      letter-spacing: .02em; cursor: pointer; border: none;
      transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
                  background var(--t) var(--ease), color var(--t) var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--orange); color: var(--white);
      box-shadow: var(--shadow-o);
    }
    .btn-primary:hover {
      background: var(--orange-bright);
      transform: translateY(-2px) scale(1.02);
      box-shadow: var(--shadow-o-lg);
    }
    .btn-outline {
      background: transparent; color: var(--ink);
      border: 1.5px solid var(--ink-15);
    }
    .btn-outline:hover {
      border-color: var(--orange); color: var(--orange);
      transform: translateY(-2px);
    }
    .btn-white {
      background: var(--white); color: var(--ink);
      box-shadow: var(--shadow-md);
    }
    .btn-white:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: var(--shadow-lg);
    }
    .btn-wout {
      background: transparent; color: var(--white);
      border: 1.5px solid rgba(255,255,255,.55);
    }
    .btn-wout:hover {
      border-color: var(--white);
      background: rgba(255,255,255,.12);
      transform: translateY(-2px);
    }
    .btn-sm { padding: 9px 20px; font-size: .82rem; }

    /* ── CARD ── */
    .card {
      background: var(--white);
      border: 1px solid var(--grey-3);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-sm);
      transition: transform var(--t) var(--ease),
                  border-color var(--t) var(--ease),
                  box-shadow var(--t) var(--ease);
    }
    .card:hover {
      transform: translateY(-6px);
      border-color: var(--orange-border2);
      box-shadow: var(--shadow-md), 0 0 0 3px var(--orange-subtle);
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .d1{transition-delay:.07s} .d2{transition-delay:.14s}
    .d3{transition-delay:.21s} .d4{transition-delay:.28s}

    /* =============================================
       TOPBAR
    ============================================= */
    .topbar {
      background: var(--orange);
      padding: 9px 0;
    }
    .tb-inner {
      display: flex; justify-content: space-between;
      align-items: center; gap: 12px; flex-wrap: wrap;
      font-size: .77rem; font-weight: 600; color: var(--white);
    }
    .tb-left { display: flex; align-items: center; gap: 6px; }
    .tb-right { display: flex; gap: 22px; }
    .tb-right a {
      color: var(--white); display: flex; align-items: center; gap: 5px;
      opacity: .88; transition: opacity var(--t);
    }
    .tb-right a:hover { opacity: 1; }

    /* =============================================
       NAVBAR
    ============================================= */
    .navbar {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(18px) saturate(1.8);
      -webkit-backdrop-filter: blur(18px) saturate(1.8);
      border-bottom: 1px solid var(--grey-3);
      transition: box-shadow var(--t);
    }
    .navbar.scrolled { box-shadow: var(--shadow-md); }

    .nav-inner {
      height: 68px; display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--ff-d); font-size: 1.45rem; letter-spacing: .04em;
      white-space: nowrap; color: var(--ink);
    }
    .logo-mark {
      width: 36px; height: 36px; background: var(--orange);
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; box-shadow: var(--shadow-o);
    }
    .nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
    .nav-links a {
      padding: 7px 15px; border-radius: var(--r-sm);
      font-size: .88rem; font-weight: 500; color: var(--ink-70);
      transition: color var(--t), background var(--t);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--ink-04); }
    .nav-links a.active { color: var(--orange); }
    .nav-cta { display: flex; align-items: center; gap: 10px; }

    .burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 7px; border-radius: var(--r-sm);
      border: none; background: transparent;
    }
    .burger span {
      display: block; width: 22px; height: 2px;
      background: var(--ink); border-radius: 2px;
      transition: transform var(--t), opacity var(--t);
    }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mob-nav {
      display: none; flex-direction: column; gap: 3px;
      padding: 12px 0 16px; border-top: 1px solid var(--grey-3);
      background: var(--white);
    }
    .mob-nav.open { display: flex; }
    .mob-nav a {
      padding: 10px 14px; border-radius: var(--r-sm);
      font-size: .93rem; font-weight: 500; color: var(--ink-70);
      transition: color var(--t), background var(--t);
    }
    .mob-nav a:hover { color: var(--ink); background: var(--ink-04); }
    .mob-nav .btn { margin-top: 6px; justify-content: center; }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      position: relative; overflow: hidden;
      padding: 100px 0 80px; min-height: 90vh;
      display: flex; align-items: center;
      background: var(--white);
    }

    /* Warm off-white panel on the right */
    .hero-panel {
      position: absolute; top: 0; right: 0;
      width: 50%; height: 100%;
      background: var(--grey-1);
      clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 0;
    }
    /* Orange top accent stripe */
    .hero-stripe {
      position: absolute; top: 0; right: 0;
      width: 50%; height: 5px;
      background: linear-gradient(90deg, transparent, var(--orange), var(--orange-bright));
      clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 1;
    }
    /* Dot grid on right panel */
    .hero-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;

  background-image: url('assets/img/logo.png');
  background-repeat: repeat;        /* this makes it repeat */
  background-size: 140px;            /* controls logo size */
  background-position: center;

  clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.05;
  z-index: 0;
}
    /* Subtle orange glow */
    .hero-glow {
      position: absolute; width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242,101,34,.10) 0%, transparent 70%);
      top: 50%; right: -60px; transform: translateY(-50%);
      z-index: 0; pointer-events: none;
      animation: breathe 7s ease-in-out infinite;
    }
    @keyframes breathe {
      0%,100% { transform: translateY(-50%) scale(1); }
      50%      { transform: translateY(-50%) scale(1.07); }
    }

    .hero-wrap {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1.1fr .9fr;
      gap: 60px; align-items: center;
    }
    .hero-left { display: flex; flex-direction: column; gap: 28px; }

    .h1 {
      font-family: var(--ff-d);
      font-size: clamp(3rem, 7vw, 6.2rem);
      line-height: .95; letter-spacing: .02em; color: var(--ink);
    }
    .h1 .o {
      color: var(--orange); display: inline-block;
      position: relative;
    }
    .h1 .o::after {
      content: ''; position: absolute;
      bottom: -3px; left: 0; right: 0; height: 4px;
      background: var(--orange); border-radius: 2px;
      transform: scaleX(0); transform-origin: left;
      animation: line-in .6s .7s var(--ease) forwards;
    }
    @keyframes line-in { to { transform: scaleX(1); } }

    .hero-sub {
      font-size: 1.05rem; color: var(--ink-70);
      line-height: 1.75; max-width: 460px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-stats {
      display: flex; gap: 32px; padding-top: 20px;
      border-top: 1px solid var(--grey-3); flex-wrap: wrap;
    }
    .sn {
      font-family: var(--ff-d); font-size: 2.8rem;
      line-height: 1; color: var(--ink);
    }
    .sn sup { font-size: 1.5rem; color: var(--orange); }
    .sl {
      font-size: .71rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .09em; color: var(--ink-40); margin-top: 5px;
    }

    /* Hero right – floating cards */
    .hero-right { display: flex; flex-direction: column; gap: 14px; }
    .feat-card {
      background: var(--white); border: 1px solid var(--grey-3);
      border-radius: var(--r-lg); padding: 20px 22px;
      display: flex; align-items: center; gap: 16px;
      box-shadow: var(--shadow-sm);
      transition: border-color var(--t), transform var(--t), box-shadow var(--t);
      animation: fc-float 5s ease-in-out infinite;
    }
    .feat-card:nth-child(2) { margin-left: 20px; animation-delay: -1.8s; }
    .feat-card:nth-child(3) { animation-delay: -3.5s; }
    @keyframes fc-float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-7px); }
    }
    .feat-card:hover {
      border-color: var(--orange-border2);
      box-shadow: var(--shadow-md), 0 0 0 3px var(--orange-subtle);
      transform: translateY(-4px) !important;
    }
    .feat-icon {
      width: 46px; height: 46px;
      background: var(--orange-subtle); border: 1px solid var(--orange-border);
      border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
      color: var(--orange); flex-shrink: 0;
    }
    .feat-title { font-weight: 700; font-size: .92rem; color: var(--ink); }
    .feat-desc  { font-size: .78rem; color: var(--ink-40); margin-top: 2px; }

    /* =============================================
       BRAND TICKER
    ============================================= */
    .ticker-wrap {
      overflow: hidden; padding: 28px 0;
      background: var(--grey-1);
      border-top: 1px solid var(--grey-3);
      border-bottom: 1px solid var(--grey-3);
    }
    .ticker-label {
      text-align: center; font-size: .67rem;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--ink-40); margin-bottom: 20px; font-weight: 700;
    }
    .ticker-track {
      display: flex; gap: 36px; width: max-content;
      animation: ticker 26s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .brand-pill {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 18px; background: var(--white);
      border: 1px solid var(--grey-3); border-radius: 99px;
      font-weight: 700; font-size: .82rem; color: var(--ink-70);
      letter-spacing: .06em; white-space: nowrap;
      transition: color var(--t), border-color var(--t), box-shadow var(--t);
    }
    .brand-pill:hover {
      color: var(--orange); border-color: var(--orange-border2);
      box-shadow: var(--shadow-sm);
    }
    .bdot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); opacity: .7; }

    /* =============================================
       SECTION COMMONS
    ============================================= */
    section { padding: 96px 0; }
    .sec-hdr { margin-bottom: 56px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
    .sec-hdr.c { align-items: center; text-align: center; margin-inline: auto; max-width: 620px; }
    .sec-h2 {
      font-family: var(--ff-d);
      font-size: clamp(2rem, 3.8vw, 3.4rem);
      letter-spacing: .03em; line-height: 1; color: var(--ink);
    }
    .sec-h2 span { color: var(--orange); }
    .sec-p { font-size: .98rem; color: var(--ink-70); max-width: 500px; line-height: 1.75; }

    /* =============================================
       SERVICES
    ============================================= */
    .services { background: var(--white); }
    .svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .svc-card { padding: 32px 28px; cursor: default; }
    .svc-icon {
      width: 52px; height: 52px; border-radius: var(--r-md);
      background: var(--orange-subtle); border: 1px solid var(--orange-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); margin-bottom: 24px;
      transition: background var(--t), transform var(--t);
    }
    .svc-card:hover .svc-icon { background: var(--orange-subtle2); transform: scale(1.1) rotate(-4deg); }
    .svc-card h3 {
      font-family: var(--ff-d); font-size: 1.35rem;
      letter-spacing: .03em; color: var(--ink); margin-bottom: 10px;
    }
    .svc-card p { font-size: .88rem; color: var(--ink-70); line-height: 1.72; }
    .svc-arr {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 18px; font-size: .82rem; font-weight: 700;
      color: var(--orange); letter-spacing: .04em;
      transition: gap var(--t);
    }
    .svc-card:hover .svc-arr { gap: 10px; }

    /* =============================================
       ABOUT
    ============================================= */
    .about { background: var(--grey-1); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-left { display: flex; flex-direction: column; gap: 16px; }
    .about-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .anc {
      background: var(--white); border: 1px solid var(--grey-3);
      border-radius: var(--r-lg); padding: 28px 22px;
      box-shadow: var(--shadow-sm);
      transition: border-color var(--t), transform var(--t), box-shadow var(--t);
    }
    .anc:hover { border-color: var(--orange-border2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .anc .big { font-family: var(--ff-d); font-size: 3rem; line-height: 1; color: var(--orange); }
    .anc .lbl {
      font-size: .72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .08em; color: var(--ink-40); margin-top: 6px;
    }
    .about-callout {
      background: var(--orange); border-radius: var(--r-lg);
      padding: 22px 26px; font-size: .92rem;
      color: rgba(255,255,255,.88); line-height: 1.75;
    }
    .about-callout strong { color: var(--white); }
    .about-right { display: flex; flex-direction: column; gap: 26px; }
    .about-right p { font-size: .98rem; color: var(--ink-70); line-height: 1.78; }
    .vals { display: flex; flex-direction: column; gap: 14px; }
    .val-row { display: flex; align-items: flex-start; gap: 14px; }
    .val-icon {
      width: 36px; height: 36px; background: var(--orange-subtle);
      border: 1px solid var(--orange-border); border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); flex-shrink: 0; margin-top: 1px;
    }
    .val-title { font-weight: 700; font-size: .95rem; color: var(--ink); }
    .val-desc  { font-size: .84rem; color: var(--ink-40); margin-top: 2px; }
    .about-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

    /* =============================================
       SECTORS
    ============================================= */
    .sectors { background: var(--white); }
    .sec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    .sec-tile {
      background: var(--white); border: 1px solid var(--grey-3);
      border-radius: var(--r-lg); padding: 24px 22px;
      display: flex; align-items: center; gap: 14px;
      box-shadow: var(--shadow-sm);
      transition: border-color var(--t), transform var(--t), box-shadow var(--t);
      cursor: default;
    }
    .sec-tile:hover {
      border-color: var(--orange-border2); transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .sec-ico {
      width: 42px; height: 42px; background: var(--orange-subtle);
      border: 1px solid var(--orange-border); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); flex-shrink: 0;
    }
    .sec-name { font-weight: 700; font-size: .9rem; color: var(--ink); }
    .sec-cnt  { font-size: .74rem; color: var(--ink-40); margin-top: 3px; }

    /* =============================================
       PROCESS
    ============================================= */
    .process { background: var(--grey-1); }
    .proc-row {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 16px; position: relative;
    }
    .proc-row::before {
      content: ''; position: absolute;
      top: 28px; left: 54px; right: 54px; height: 1px;
      background: linear-gradient(90deg, var(--orange), var(--orange-deep), var(--orange));
      opacity: .25; z-index: 0;
    }
    .p-step {
      background: var(--white); border: 1px solid var(--grey-3);
      border-radius: var(--r-lg); padding: 28px 22px;
      position: relative; z-index: 1; box-shadow: var(--shadow-sm);
      transition: border-color var(--t), transform var(--t), box-shadow var(--t);
    }
    .p-step:hover {
      border-color: var(--orange-border2); transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .p-num {
      width: 42px; height: 42px; background: var(--orange);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-d); font-size: 1.1rem; color: var(--white);
      margin-bottom: 20px; box-shadow: var(--shadow-o);
    }
    .p-step h4 {
      font-family: var(--ff-d); font-size: 1.1rem;
      letter-spacing: .03em; color: var(--ink); margin-bottom: 8px;
    }
    .p-step p { font-size: .84rem; color: var(--ink-70); line-height: 1.68; }

    /* =============================================
       CTA BAND — Full orange
    ============================================= */
    .cta-band { padding: 0; background: var(--orange); position: relative; overflow: hidden; }
    /* subtle texture overlay */
    .cta-band::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-band-inner {
      position: relative; z-index: 1; padding: 72px 0;
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px; flex-wrap: wrap;
    }
    .cta-h {
      font-family: var(--ff-d); font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: .04em; color: var(--white); line-height: 1.05;
    }
    .cta-p { color: rgba(255,255,255,.78); margin-top: 8px; font-size: 1rem; }
    .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

    /* =============================================
       TESTIMONIALS
    ============================================= */
    .testimonials { background: var(--white); }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .testi-card { padding: 30px 26px; display: flex; flex-direction: column; gap: 18px; }
    .stars { display: flex; gap: 3px; }
    .star { color: var(--orange); font-size: .95rem; }
    .testi-q { font-size: .91rem; color: var(--ink-70); line-height: 1.78; font-style: italic; flex: 1; }
    .testi-auth { display: flex; align-items: center; gap: 12px; }
    .testi-av {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--orange); display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-d); font-size: 1rem; color: var(--white); flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: .88rem; color: var(--ink); }
    .testi-role { font-size: .73rem; color: var(--ink-40); margin-top: 2px; }

    /* =============================================
       CONTACT
    ============================================= */
    .contact { background: var(--grey-1); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }
    .contact-left { display: flex; flex-direction: column; gap: 36px; }
    .contact-left p { font-size: .98rem; color: var(--ink-70); line-height: 1.75; }
    .detail-list { display: flex; flex-direction: column; gap: 16px; }
    .detail-item { display: flex; align-items: flex-start; gap: 14px; }
    .det-ico {
      width: 40px; height: 40px; background: var(--orange-subtle);
      border: 1px solid var(--orange-border); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); flex-shrink: 0;
    }
    .det-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--ink-40); }
    .det-val { font-weight: 600; font-size: .93rem; color: var(--ink); margin-top: 3px; }
    .det-val a { color: var(--ink); transition: color var(--t); }
    .det-val a:hover { color: var(--orange); }

    /* Form */
    .contact-form {
      background: var(--white); border: 1px solid var(--grey-3);
      border-radius: var(--r-xl); padding: 40px;
      display: flex; flex-direction: column; gap: 20px;
      box-shadow: var(--shadow-md);
    }
    .form-head { font-family: var(--ff-d); font-size: 1.6rem; letter-spacing: .04em; color: var(--ink); }
    .form-sub  { font-size: .83rem; color: var(--ink-40); margin-top: -10px; }
    .form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .fg { display: flex; flex-direction: column; gap: 6px; }
    .fg label {
      font-size: .74rem; font-weight: 700; letter-spacing: .07em;
      text-transform: uppercase; color: var(--ink-70);
    }
    .fg input, .fg select, .fg textarea {
      background: var(--grey-1); border: 1px solid var(--grey-3);
      border-radius: var(--r-sm); padding: 12px 14px;
      font-family: var(--ff-b); font-size: .9rem; color: var(--ink);
      outline: none; width: 100%;
      transition: border-color var(--t), box-shadow var(--t), background var(--t);
    }
    .fg input::placeholder, .fg textarea::placeholder { color: var(--ink-40); }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--orange); background: var(--white);
      box-shadow: 0 0 0 3px var(--orange-subtle2);
    }
    .fg select { cursor: pointer; appearance: none; }
    .fg textarea { resize: vertical; min-height: 110px; }
    .form-btn { width: 100%; justify-content: center; }

    /* =============================================
       FOOTER
    ============================================= */
    .footer {
      background: var(--ink); border-top: 1px solid rgba(255,255,255,.06);
      padding: 64px 0 28px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .f-brand { display: flex; flex-direction: column; gap: 18px; }
    .f-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--ff-d); font-size: 1.45rem;
      letter-spacing: .05em; color: var(--white);
    }
    .f-desc { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.78; max-width: 260px; }
    .f-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--orange-subtle); border: 1px solid var(--orange-border);
      border-radius: 99px; padding: 5px 14px;
      font-size: .7rem; font-weight: 700; color: var(--orange);
      letter-spacing: .07em; width: fit-content;
    }
    .f-socials { display: flex; gap: 8px; }
    .soc-btn {
      width: 34px; height: 34px; border-radius: 9px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.45);
      transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
    }
    .soc-btn:hover { background: var(--orange-subtle); color: var(--orange); border-color: var(--orange-border); transform: translateY(-2px); }
    .f-col h5 {
      font-size: .68rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: .14em; color: rgba(255,255,255,.35); margin-bottom: 18px;
    }
    .f-links { display: flex; flex-direction: column; gap: 10px; }
    .f-links a { font-size: .86rem; color: rgba(255,255,255,.45); transition: color var(--t); }
    .f-links a:hover { color: var(--orange); }
    .f-links li { font-size: .86rem; color: rgba(255,255,255,.30); line-height: 1.65; }
    .f-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07);
      gap: 16px; flex-wrap: wrap;
    }
    .f-bottom p { font-size: .78rem; color: rgba(255,255,255,.30); }
    .f-blinks { display: flex; gap: 20px; }
    .f-blinks a { font-size: .78rem; color: rgba(255,255,255,.30); transition: color var(--t); }
    .f-blinks a:hover { color: var(--orange); }

    /* back to top */
    .back-top {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px; background: var(--orange);
      border: none; border-radius: 12px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--white); z-index: 999;
      opacity: 0; transform: translateY(16px);
      transition: opacity var(--t), transform var(--t), box-shadow var(--t);
      box-shadow: var(--shadow-o);
    }
    .back-top.show { opacity: 1; transform: translateY(0); }
    .back-top:hover { box-shadow: var(--shadow-o-lg); transform: translateY(-3px); }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width:1024px) {
      .hero-wrap   { grid-template-columns: 1fr; }
      .hero-right  { display: grid; grid-template-columns: 1fr 1fr; }
      .feat-card:nth-child(2) { margin-left: 0; }
      .feat-card:nth-child(3) { display: none; }
      .svc-grid    { grid-template-columns: repeat(2,1fr); }
      .about-grid  { grid-template-columns: 1fr; }
      .sec-grid    { grid-template-columns: repeat(2,1fr); }
      .proc-row    { grid-template-columns: repeat(2,1fr); }
      .proc-row::before { display: none; }
      .testi-grid  { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width:768px) {
      section           { padding: 72px 0; }
      .topbar           { display: none; }
      .nav-links, .nav-cta .btn:not(.burger) { display: none; }
      .burger           { display: flex; }
      .hero             { padding: 72px 0 56px; min-height: unset; }
      .hero-right       { grid-template-columns: 1fr; }
      .svc-grid, .proc-row, .testi-grid, .contact-grid { grid-template-columns: 1fr; }
      .contact-form     { padding: 26px; }
      .form-row         { grid-template-columns: 1fr; }
      .footer-grid      { grid-template-columns: 1fr; }
      .f-bottom         { flex-direction: column; align-items: flex-start; }
      .cta-band-inner   { flex-direction: column; align-items: flex-start; }
      .hero-btns        { flex-direction: column; }
      .hero-btns .btn   { width: 100%; justify-content: center; }
      .about-nums       { grid-template-columns: 1fr 1fr; }
      .sec-grid         { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width:480px) {
      .sec-grid    { grid-template-columns: 1fr; }
      .h1          { font-size: 3rem; }
      .footer-grid { grid-template-columns: 1fr; }
    }