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

    :root {
      --red:    #CC1F1F;
      --red-dk: #A01818;
      --red-lt: rgba(204,31,31,.08);
      --navy:   #1E2D4A;
      --navy-lt:#2C4166;
      --steel:  #6B7A90;
      --white:  #FFFFFF;
      --off:    #F5F6F8;
      --light:  #EFF1F5;
      --line:   #D4D8E2;
      --text:   #1A1F2E;
      --sub:    #4A5568;
    }

    html { scroll-behavior: smooth; }
    body { 
      font-family: 'DM Sans', sans-serif; 
      color: var(--text); 
      background: var(--white); 
      overflow-x: hidden;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* ─── TOPBAR ─── */
    .topbar {
      background: var(--navy);
      padding: 9px 5vw;
      display: flex; justify-content: space-between; align-items: center;
    }
    .topbar-left {
      display: flex; gap: 32px;
    }
    .topbar-item {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Rajdhani', sans-serif; font-weight: 500;
      font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.7);
    }
    .topbar-item span { font-size: 14px; }
    .topbar-right {
      display: flex; gap: 14px;
    }
    .social-btn {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,.1); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: rgba(255,255,255,.7);
      transition: background .2s, color .2s;
      text-decoration: none;
    }
    .social-btn:hover { background: var(--red); color: white; }

    /* ─── NAV ─── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(14px);
      border-bottom: 2px solid var(--line);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 76px;
      box-shadow: 0 2px 20px rgba(30,45,74,.07);
    }
    .nav-logo img { height: 52px; width: auto; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
      color: var(--navy); text-decoration: none;
      position: relative; padding-bottom: 2px;
      transition: color .2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 2px; background: var(--red);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-links a:hover::after { width: 100%; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .nav-phone {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 14px; color: var(--navy); text-decoration: none;
      display: flex; align-items: center; gap: 6px;
    }
    .nav-cta {
      background: var(--red); color: #fff;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
      border: none; cursor: pointer; padding: 12px 26px; border-radius: 3px;
      transition: background .2s, transform .2s; text-decoration: none;
    }
    .nav-cta:hover { background: var(--red-dk); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 92vh;
      position: relative; overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; padding: 60px 5vw 60px;
    }
    /* blueprint grid */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(30,45,74,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,45,74,.04) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    /* diagonal red accent */
    .hero-accent {
      position: absolute; top: 0; right: 42%; bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--red) 0%, transparent 100%);
      opacity: .3;
    }
    /* big bold BG text */
    .hero-bg-text {
      position: absolute; right: -20px; bottom: -30px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(120px, 16vw, 220px);
      color: rgba(30,45,74,.04); line-height: 1;
      user-select: none; pointer-events: none; white-space: nowrap;
    }

    .hero-content { 
      position: relative; 
      z-index: 2;
      max-width: 100%;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--red-lt); border: 1px solid rgba(204,31,31,.2);
      border-radius: 2px; padding: 7px 16px; margin-bottom: 28px;
    }
    .hero-badge-dot {
      width: 6px; height: 6px; background: var(--red); border-radius: 50%;
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
    .hero-badge-text {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--red);
    }

    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 6.5vw, 90px);
      line-height: .95; color: var(--navy); letter-spacing: .01em;
      overflow-wrap: break-word;
      word-wrap: break-word;
    }
    h1 em { color: var(--red); font-style: normal; }
    .hero-divider {
      width: 64px; height: 3px;
      background: linear-gradient(to right, var(--red), var(--navy));
      margin: 24px 0;
    }
    .hero-sub {
      font-size: 17px; font-weight: 300; line-height: 1.75;
      color: var(--sub); max-width: 460px; margin-bottom: 36px;
      overflow-wrap: break-word;
      word-wrap: break-word;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
    .btn-red {
      background: var(--red); color: #fff;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
      padding: 15px 36px; border-radius: 3px; border: 2px solid var(--red);
      cursor: pointer; transition: all .25s; text-decoration: none; display: inline-block;
    }
    .btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,31,31,.3); }
    .btn-ghost {
      background: transparent; color: var(--navy);
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
      padding: 15px 36px; border-radius: 3px; border: 2px solid var(--navy);
      cursor: pointer; transition: all .25s; text-decoration: none; display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--red); color: var(--red); }

    /* stats strip */
    .hero-stats {
      display: flex; gap: 0;
      border-top: 1px solid var(--line); padding-top: 32px;
    }
    .stat {
      flex: 1; padding: 0 24px 0 0;
      border-right: 1px solid var(--line);
    }
    .stat:last-child { border-right: none; padding-right: 0; }
    .stat:not(:first-child) { padding-left: 24px; }
    .stat-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 46px; color: var(--navy); line-height: 1;
    }
    .stat-val em { color: var(--red); font-style: normal; }
    .stat-lbl {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
      color: var(--steel); margin-top: 4px;
    }

    /* hero visual */
    .hero-visual {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-stage {
      position: relative; width: min(460px, 90%);
    }
    .logo-stage img {
      width: 100%; height: auto;
      filter: drop-shadow(0 30px 70px rgba(30,45,74,.2));
      animation: logoIn 1.2s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes logoIn {
      from { opacity:0; transform:translateY(50px) scale(.9); }
      to   { opacity:1; transform:translateY(0) scale(1); }
    }
    /* orbiting ring */
    .orbit {
      position: absolute; border-radius: 50%;
      border: 1px dashed;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      pointer-events: none;
    }
    .orbit-1 { width: 500px; height: 500px; border-color: rgba(30,45,74,.08); animation: spin 30s linear infinite; }
    .orbit-2 { width: 600px; height: 600px; border-color: rgba(204,31,31,.06); animation: spin 50s linear infinite reverse; }
    @keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
    /* corner accents */
    .corner { position: absolute; width: 32px; height: 32px; }
    .c-tl { top: -8px; left: -8px; border-top: 3px solid var(--red); border-left: 3px solid var(--red); }
    .c-br { bottom: -8px; right: -8px; border-bottom: 3px solid var(--navy); border-right: 3px solid var(--navy); }
    /* floating pill badges */
    .float-badge {
      position: absolute;
      background: white; border-radius: 8px; padding: 10px 16px;
      box-shadow: 0 8px 30px rgba(30,45,74,.15);
      display: flex; align-items: center; gap: 10px;
    }
    .float-badge-1 { top: 10%; right: -40px; }
    .float-badge-2 { bottom: 15%; left: -50px; }
    .fb-icon { font-size: 22px; }
    .fb-text-main {
      font-family: 'Bebas Neue', sans-serif; font-size: 22px;
      color: var(--navy); line-height: 1;
    }
    .fb-text-sub {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
      color: var(--steel);
    }

    /* ─── SECTION SHELL ─── */
    section { padding: 96px 5vw; }
    .sec-tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--red);
      margin-bottom: 14px;
    }
    .sec-tag::before { content: ''; width: 20px; height: 2px; background: var(--red); }
    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 4.5vw, 60px); color: var(--navy); line-height: 1.02;
    }
    h2 em { color: var(--red); font-style: normal; }
    .sec-desc { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--sub); margin-top: 14px; max-width: 540px; }

    /* ─── WHY CHOOSE US STRIP ─── */
    .why-strip {
      background: var(--navy); padding: 48px 5vw;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
      position: relative; overflow: hidden;
    }
    .why-strip::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, var(--red), transparent);
    }
    .why-item {
      padding: 32px 28px;
      border-right: 1px solid rgba(255,255,255,.07);
      transition: background .3s;
    }
    .why-item:last-child { border-right: none; }
    .why-item:hover { background: rgba(255,255,255,.04); }
    .why-icon {
      font-size: 32px; margin-bottom: 14px; display: block;
    }
    .why-title {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 16px; text-transform: uppercase; letter-spacing: .06em;
      color: #fff; margin-bottom: 8px;
    }
    .why-text {
      font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.6;
    }

    /* ─── SERVICES ─── */
    #services { background: var(--off); }
    .services-head {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 52px; flex-wrap: wrap; gap: 20px;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .svc-card {
      background: white; border: 1px solid var(--line); border-radius: 6px;
      padding: 36px 32px 28px; position: relative; overflow: hidden;
      cursor: default; transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .svc-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, var(--red), var(--navy));
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s cubic-bezier(.22,1,.36,1);
    }
    .svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(30,45,74,.1); border-color: transparent; }
    .svc-card:hover::after { transform: scaleX(1); }
    .svc-num {
      position: absolute; top: 20px; right: 24px;
      font-family: 'Bebas Neue', sans-serif; font-size: 68px; line-height: 1;
      color: rgba(30,45,74,.04); user-select: none;
    }
    .svc-icon {
      width: 54px; height: 54px; border-radius: 8px;
      background: linear-gradient(135deg, rgba(204,31,31,.1), rgba(30,45,74,.06));
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; margin-bottom: 20px;
    }
    .svc-title {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 18px; text-transform: uppercase; letter-spacing: .04em;
      color: var(--navy); margin-bottom: 12px;
    }
    .svc-text {
      font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--sub);
    }
    .svc-tags {
      display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px;
    }
    .svc-tag {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 2px;
      background: rgba(30,45,74,.06); color: var(--navy);
    }

    /* ─── AREAS OF EXPERTISE ─── */
    #expertise {
      background: white;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .expertise-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .exp-card {
      background: var(--off); border-radius: 6px; padding: 24px 20px;
      border-left: 3px solid transparent;
      transition: border-color .3s, background .3s, transform .3s;
    }
    .exp-card:hover { border-color: var(--red); background: white; box-shadow: 0 8px 24px rgba(30,45,74,.08); transform: translateX(4px); }
    .exp-card-icon { font-size: 24px; margin-bottom: 10px; }
    .exp-card-title {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
    }
    .exp-card-sub { font-size: 12px; color: var(--steel); margin-top: 4px; }

    /* software logos strip */
    .software-strip {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; align-items: center;
    }
    .sw-pill {
      display: flex; align-items: center; gap: 6px;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
      padding: 8px 14px; border-radius: 3px;
      background: var(--navy); color: white;
    }
    .sw-pill.red { background: var(--red); }

    /* ─── PROCESS ─── */
    #process { background: var(--off); }
    .process-head { text-align: center; margin-bottom: 60px; }
    .process-head .sec-tag { justify-content: center; }
    .process-head .sec-tag::before { display: none; }
    .process-head h2 { font-size: clamp(36px,4vw,54px); }
    .process-steps {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute; top: 36px; left: 10%; right: 10%;
      height: 2px; background: linear-gradient(to right, var(--red), var(--navy));
      z-index: 0;
    }
    .process-step {
      display: flex; flex-direction: column; align-items: center; text-align: center;
      padding: 0 12px; position: relative; z-index: 1;
    }
    .step-circle {
      width: 72px; height: 72px; border-radius: 50%;
      background: white; border: 3px solid var(--line);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--navy);
      margin-bottom: 24px; position: relative;
      transition: border-color .3s, background .3s; cursor: default;
    }
    .process-step:hover .step-circle { border-color: var(--red); background: var(--red); color: white; }
    .step-icon { font-size: 28px; position: absolute; opacity: 0; transition: opacity .3s; }
    .process-step:hover .step-icon { opacity: 1; }
    .process-step:hover .step-num { opacity: 0; }
    .step-num { transition: opacity .3s; }
    .step-title {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 14px; text-transform: uppercase; letter-spacing: .04em;
      color: var(--navy); margin-bottom: 8px;
    }
    .step-desc { font-size: 13px; color: var(--sub); line-height: 1.6; font-weight: 300; }

    /* ─── ABOUT ─── */
    #about {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .about-visual-wrap { position: relative; }
    .about-img-box {
      border-radius: 8px; overflow: hidden;
      background: linear-gradient(135deg, var(--light), var(--off));
      padding: 48px 32px; text-align: center;
      border: 1px solid var(--line);
    }
    .about-img-box img { width: 75%; height: auto; filter: drop-shadow(0 16px 40px rgba(30,45,74,.2)); }
    .about-deco { position: absolute; top: -12px; left: -12px; width: 72px; height: 72px; border-top: 4px solid var(--navy); border-left: 4px solid var(--navy); border-radius: 4px; }
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--red); color: white; border-radius: 6px; padding: 20px 24px;
      box-shadow: 0 12px 40px rgba(204,31,31,.35); text-align: center;
    }
    .ab-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; }
    .ab-lbl { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }

    .about-points { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
    .apoint {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 18px; border-radius: 6px;
      border: 1px solid transparent; background: var(--off);
      transition: border-color .3s, background .3s;
    }
    .apoint:hover { border-color: var(--line); background: white; }
    .apoint-icon {
      width: 38px; height: 38px; border-radius: 6px;
      background: var(--red-lt); border: 1px solid rgba(204,31,31,.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .apoint-title {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 15px; text-transform: uppercase; letter-spacing: .04em; color: var(--navy); margin-bottom: 3px;
    }
    .apoint-text { font-size: 13px; color: var(--sub); line-height: 1.6; font-weight: 300; }

    /* ─── NUMBERS BAND ─── */
    .numbers-band {
      background: var(--navy); padding: 64px 5vw;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; position: relative; overflow: hidden;
    }
    .numbers-band::before {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .nb-item {
      position: relative; z-index: 1;
      text-align: center; padding: 20px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .nb-item:last-child { border-right: none; }
    .nb-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px,5vw,72px); line-height: 1;
      color: white;
    }
    .nb-val em { color: var(--red); font-style: normal; }
    .nb-lbl {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,255,255,.45); margin-top: 6px;
    }

    /* ─── CONTACT ─── */
    #contact { background: var(--off); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
    }
    .contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
    .ci-card {
      display: flex; align-items: center; gap: 16px;
      padding: 18px 20px; background: white; border-radius: 6px;
      border: 1px solid var(--line);
      transition: border-color .2s, box-shadow .2s;
    }
    .ci-card:hover { border-color: rgba(204,31,31,.3); box-shadow: 0 4px 16px rgba(30,45,74,.06); }
    .ci-icon {
      width: 46px; height: 46px; border-radius: 6px;
      background: var(--navy); display: flex; align-items: center;
      justify-content: center; font-size: 20px; flex-shrink: 0;
    }
    .ci-label {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--red);
    }
    .ci-val { font-size: 15px; color: var(--text); font-weight: 400; margin-top: 2px; }

    .contact-form-wrap {
      background: white; border-radius: 8px;
      border: 1px solid var(--line); overflow: hidden;
      box-shadow: 0 20px 60px rgba(30,45,74,.08);
    }
    .cf-header {
      background: var(--navy); padding: 28px 36px;
      display: flex; align-items: center; gap: 14px;
    }
    .cf-header-dot { width: 12px; height: 12px; background: var(--red); border-radius: 50%; }
    .cf-title {
      font-family: 'Bebas Neue', sans-serif; font-size: 24px;
      color: white; letter-spacing: .04em;
    }
    .cf-body { padding: 36px; display: flex; flex-direction: column; gap: 18px; }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .cf-group { display: flex; flex-direction: column; gap: 6px; }
    .cf-group label {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--steel);
    }
    .cf-group input,
    .cf-group select,
    .cf-group textarea {
      padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 4px;
      font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
      background: var(--off); outline: none; transition: border-color .2s, background .2s;
    }
    .cf-group input::placeholder, .cf-group textarea::placeholder { color: #aab0bc; }
    .cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
      border-color: var(--red); background: white;
    }
    .cf-group textarea { resize: vertical; min-height: 90px; }
    .cf-submit {
      width: 100%; padding: 16px;
      background: var(--red); color: white; border: none; border-radius: 4px;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
      cursor: pointer; transition: background .2s, transform .2s;
    }
    .cf-submit:hover { background: var(--red-dk); transform: translateY(-1px); }

    /* ─── FOOTER ─── */
    footer {
      background: #0D1827; padding: 60px 5vw 32px;
    }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07);
      margin-bottom: 32px;
    }
    .footer-logo img { height: 52px; width: auto; margin-bottom: 16px; }
    .footer-about {
      font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.4);
    }
    .footer-col-title {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
      color: white; margin-bottom: 18px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); text-decoration: none;
      transition: color .2s; display: flex; align-items: center; gap: 6px;
    }
    .footer-links a::before { content: '→'; font-size: 11px; opacity: .5; }
    .footer-links a:hover { color: var(--red); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social {
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
      font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none;
      transition: background .2s, color .2s;
    }
    .footer-social:hover { background: var(--red); color: white; }

    /* ─── FORM VALIDATION STYLES ─── */
    .error-msg {
      display: block;
      color: var(--red);
      font-size: 12px;
      margin-top: 4px;
      font-weight: 500;
      min-height: 16px;
    }
    .cf-group input.error,
    .cf-group select.error,
    .cf-group textarea.error {
      border-color: var(--red) !important;
      background-color: rgba(204,31,31,0.05);
    }

    /* ─── ANIMATIONS ─── */
    .fade-up { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
    .fade-left { opacity:0; transform:translateX(-28px); transition:opacity .7s ease, transform .7s ease; }
    .fade-right { opacity:0; transform:translateX(28px); transition:opacity .7s ease, transform .7s ease; }
    .visible { opacity:1; transform:none; }

    /* ─── RESPONSIVE ─── */
    @media(max-width:1024px){
      .services-grid { grid-template-columns:repeat(2,1fr); }
      .process-steps { grid-template-columns:repeat(3,1fr); }
      .process-steps::before { display:none; }
      .footer-top { grid-template-columns:1fr 1fr; }
      .why-strip { grid-template-columns:1fr 1fr; }
      .numbers-band { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:900px){
      .hero { 
        grid-template-columns:1fr; 
        gap:40px; 
        padding: 40px 4vw; 
        text-align:center; 
      }
      .hero-content {
        padding: 0 2vw;
        max-width: 100%;
      }
      .hero-badge { margin-left:auto; margin-right:auto; }
      .hero-divider { margin:24px auto; }
      .hero-sub { 
        margin-left:auto; 
        margin-right:auto;
        max-width: 100%;
        padding: 0 2vw;
      }
      .hero-btns { 
        justify-content:center;
        flex-wrap: wrap;
        padding: 0 2vw;
      }
      .hero-stats { 
        justify-content:center;
        flex-wrap: wrap;
      }
      .hero-visual { order:-1; }
      .float-badge-1, .float-badge-2 { display:none; }
      #expertise { grid-template-columns:1fr; }
      #about { grid-template-columns:1fr; }
      .about-visual-wrap { order:-1; }
      .contact-grid { grid-template-columns:1fr; }
      .nav-right .nav-phone { display:none; }
      .nav-links { display:none; }
      /* Fix for Rebar Detailing & Estimation section */
      #rebar-notes > div[style*="grid-template-columns"] { 
        grid-template-columns: 1fr !important; 
        gap: 28px !important;
      }
      /* Fix for Career section */
      #careers > div[style*="grid-template-columns"] { 
        grid-template-columns: 1fr !important; 
        gap: 40px !important;
      }
    }
    @media(max-width:600px){
      .services-grid { grid-template-columns:1fr; }
      .process-steps { grid-template-columns:1fr 1fr; }
      .cf-row { grid-template-columns:1fr; }
      .expertise-grid { grid-template-columns:1fr; }
      section { padding:60px 4vw; }
      .footer-top { grid-template-columns:1fr; }
      .why-strip { grid-template-columns:1fr; }
      .numbers-band { grid-template-columns:1fr 1fr; }
      /* Additional mobile optimizations */
      h1 { 
        font-size: clamp(36px, 10vw, 52px) !important; 
        max-width: 100%;
      }
      h2 { 
        font-size: clamp(32px, 8vw, 48px);
        max-width: 100%;
      }
      .hero { 
        padding: 30px 3vw !important;
        min-height: auto;
      }
      .hero-content {
        padding: 0 !important;
        width: 100%;
        max-width: 100%;
      }
      .hero-sub { 
        font-size: 15px; 
        max-width: 100%; 
        padding: 0 !important;
      }
      .hero-btns {
        padding: 0 !important;
        width: 100%;
        flex-direction: column;
      }
      .btn-red, .btn-ghost {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        text-align: center;
        box-sizing: border-box;
      }
      .hero-badge {
        max-width: fit-content;
      }
      .sec-desc { 
        font-size: 14px;
        max-width: 100%;
      }
      /* Ensure all containers respect mobile width */
      * {
        max-width: 100%;
        box-sizing: border-box;
      }
      /* Ensure Rebar section cards are full width on mobile */
      #rebar-notes > div[style*="grid-template-columns"] > div {
        padding: 32px 24px !important;
      }
    }
