    /* ========== RESET & BASE ========== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --orange: #ef7c00;
      --orange-dark: #d8613c;
      --orange-light: #ff9a2e;
      --dark: #111111;
      --dark-mid: #1a1a1a;
      --gray-dark: #313131;
      --gray: #636363;
      --gray-light: #a4a4a4;
      --off-white: #f9f9f9;
      --white: #ffffff;
      --sand: #cfcabe;
      --warm: #c2a990;
      --green: #b1c5a4;
      --teal: #b5bdbc;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-heading: 'Cardo', Georgia, serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* ========== CUSTOM CURSOR ========== */
    .cursor-dot {
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.1s;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 40px; height: 40px;
      border: 2px solid var(--orange);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
      mix-blend-mode: difference;
    }
    .cursor-ring.hover { width: 60px; height: 60px; border-color: var(--orange-light); }

    /* ========== NAVBAR ========== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.25rem 0;
      transition: all 0.4s var(--ease-out);
    }
    .navbar.scrolled,
    .navbar.navbar--solid {
      background: rgba(17, 17, 17, 0.95);
      backdrop-filter: blur(20px);
      padding: 0.75rem 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    }
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
    }
    .nav-logo-img {
      height: 45px;
      width: auto;
      object-fit: contain;
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }
    .nav-links a {
      color: rgba(255,255,255,0.8);
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--orange);
      transition: width 0.3s var(--ease-out);
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 0.65rem 1.5rem;
      border-radius: 100px;
      font-weight: 600 !important;
      transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s !important;
    }
    .nav-cta:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 20px rgba(239, 124, 0, 0.4);
    }
    .nav-cta::after { display: none !important; }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 1001;
    }
    .menu-toggle span {
      width: 28px; height: 2px;
      background: var(--white);
      transition: all 0.3s;
      display: block;
    }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      background: var(--dark);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0;
      transition: opacity 1.5s ease;
    }
    .hero-video.loaded { opacity: 1; }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(17, 17, 17, 0.55);
      z-index: 1;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(239,124,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(216,97,60,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(177,197,164,0.06) 0%, transparent 50%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(239,124,0,0.15);
      border: 1px solid rgba(239,124,0,0.3);
      color: var(--orange-light);
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
    }
    .hero-badge .dot {
      width: 6px; height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    .hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 1s var(--ease-out) 0.5s forwards;
    }
    .hero h1 .highlight {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: clamp(1.05rem, 1.5vw, 1.25rem);
      color: var(--gray-light);
      line-height: 1.7;
      max-width: 580px;
      margin-bottom: 2.5rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s var(--ease-out) 0.7s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s var(--ease-out) 0.9s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--orange);
      color: var(--white);
      padding: 1rem 2.25rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s var(--ease-bounce);
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 30px rgba(239,124,0,0.35);
    }
    .btn-primary svg { transition: transform 0.3s; }
    .btn-primary:hover svg { transform: translateX(4px); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1.5px solid rgba(255,255,255,0.25);
      color: var(--white);
      padding: 1rem 2.25rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s;
      cursor: pointer;
      background: transparent;
    }
    .btn-outline:hover {
      border-color: var(--orange);
      background: rgba(239,124,0,0.1);
    }
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--gray-light);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeIn 1s var(--ease-out) 1.5s forwards;
      z-index: 2;
    }
    .scroll-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, var(--orange), transparent);
      animation: scrollPulse 2s infinite;
    }
    .hero-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.06;
      z-index: 1;
    }
    .hero-shape:nth-child(4) { width: 400px; height: 400px; background: var(--orange); top: -100px; right: -100px; }
    .hero-shape:nth-child(5) { width: 250px; height: 250px; background: var(--green); bottom: -50px; right: 20%; }
    .hero-shape:nth-child(6) { width: 180px; height: 180px; background: var(--warm); top: 30%; right: 10%; }

    /* ========== MARQUEE ========== */
    .marquee-section {
      background: var(--orange);
      padding: 1rem 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-item {
      white-space: nowrap;
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--white);
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .marquee-item .sep {
      width: 6px; height: 6px;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
    }

    /* ========== SECTION HEADERS ========== */
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 1rem;
    }
    .section-label::before, .section-label::after {
      content: '';
      width: 30px; height: 1px;
      background: var(--orange);
    }
    .section-header h2 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section-header p {
      font-size: 1.05rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ========== SERVICES ========== */
    .services {
      padding: 7rem 0;
      background: var(--white);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      position: relative;
      background: var(--off-white);
      border-radius: 20px;
      padding: 2.25rem;
      transition: all 0.4s var(--ease-out);
      overflow: hidden;
      cursor: pointer;
      border: 1px solid transparent;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: 20px;
    }
    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(239,124,0,0.2);
      box-shadow: 0 20px 60px rgba(239,124,0,0.12);
    }
    .service-card:hover::before { opacity: 1; }
    .service-card:hover .service-icon { background: rgba(255,255,255,0.2); color: var(--white); }
    .service-card:hover h3 { color: var(--white); }
    .service-card:hover p { color: rgba(255,255,255,0.8); }
    .service-card:hover .service-arrow { opacity: 1; transform: translate(0, 0); }

    .service-icon {
      position: relative;
      z-index: 1;
      width: 56px; height: 56px;
      background: rgba(239,124,0,0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      color: var(--orange);
      font-size: 1.5rem;
      transition: all 0.4s;
    }
    .service-card h3 {
      position: relative;
      z-index: 1;
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      transition: color 0.4s;
    }
    .service-card p {
      position: relative;
      z-index: 1;
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.6;
      transition: color 0.4s;
    }
    .service-arrow {
      position: absolute;
      z-index: 1;
      bottom: 1.5rem; right: 1.5rem;
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      opacity: 0;
      transform: translate(-10px, 10px);
      transition: all 0.4s var(--ease-out);
    }

    /* ========== ABOUT ========== */
    .about {
      padding: 7rem 0;
      background: var(--dark);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .about-visual { position: relative; }
    .about-image-wrapper {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--gray-dark);
    }
    .about-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-image-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(17,17,17,0.5), transparent 50%);
    }
    .about-accent {
      position: absolute;
      width: 200px; height: 200px;
      background: var(--orange);
      border-radius: 24px;
      bottom: -30px; right: -30px;
      z-index: -1;
      opacity: 0.15;
    }
    .about-stats {
      position: absolute;
      bottom: 2rem; left: 2rem; right: 2rem;
      z-index: 2;
      display: flex;
      gap: 2rem;
    }
    .stat { text-align: center; }
    .stat-number {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--orange);
    }
    .stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.25rem;
    }
    .about-content h2 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1.5rem;
      line-height: 1.15;
    }
    .about-content h2 span { color: var(--orange); }
    .about-content p {
      color: var(--gray-light);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }
    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 2rem;
    }
    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }
    .about-feature-icon {
      width: 40px; height: 40px;
      min-width: 40px;
      background: rgba(239,124,0,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
    }
    .about-feature h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
    .about-feature p { font-size: 0.8rem; color: var(--gray-light); margin-bottom: 0; line-height: 1.4; }

    /* About Brand Showcase (fallback when no image) */
    .about-brand-showcase {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, #1a1a1a 0%, #111 50%, #1a1410 100%);
      overflow: hidden;
    }
    .brand-glow {
      position: absolute;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(239,124,0,0.15) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: glowPulse 4s ease-in-out infinite;
    }
    @keyframes glowPulse {
      0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
    }
    .brand-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .brand-logo-display {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .brand-jc {
      display: block;
      font-family: var(--font-heading);
      font-size: 6rem;
      font-weight: 700;
      color: var(--orange);
      line-height: 1;
      letter-spacing: -0.03em;
      text-shadow: 0 0 40px rgba(239,124,0,0.3);
    }
    .brand-dp {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-top: 0.25rem;
      line-height: 1.3;
    }
    .brand-tagline {
      position: relative;
      z-index: 2;
      margin-top: 1.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(239,124,0,0.5);
      padding: 0.4rem 1.2rem;
      border: 1px solid rgba(239,124,0,0.2);
      border-radius: 20px;
    }
    .brand-decorations { position: absolute; inset: 0; pointer-events: none; }
    .brand-line {
      position: absolute;
      background: linear-gradient(90deg, transparent, rgba(239,124,0,0.12), transparent);
    }
    .brand-line-1 {
      height: 1px; width: 60%;
      top: 25%; left: 20%;
      animation: lineFade 6s ease-in-out infinite;
    }
    .brand-line-2 {
      height: 1px; width: 40%;
      bottom: 30%; right: 15%;
      animation: lineFade 6s ease-in-out 3s infinite;
    }
    @keyframes lineFade {
      0%, 100% { opacity: 0; }
      50% { opacity: 1; }
    }
    .brand-corner {
      position: absolute;
      width: 40px; height: 40px;
      border-color: rgba(239,124,0,0.15);
      border-style: solid;
    }
    .brand-corner-tl {
      top: 2rem; left: 2rem;
      border-width: 2px 0 0 2px;
    }
    .brand-corner-br {
      bottom: 5rem; right: 2rem;
      border-width: 0 2px 2px 0;
    }

    /* ========== PROCESS ========== */
    .process {
      padding: 7rem 0;
      background: var(--off-white);
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 12.5%;
      width: 75%;
      height: 2px;
      background: linear-gradient(to right, var(--orange), var(--orange-light), var(--orange));
      opacity: 0.3;
    }
    .process-step { text-align: center; position: relative; }
    .step-number {
      width: 80px; height: 80px;
      background: var(--white);
      border: 2px solid var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--orange);
      position: relative;
      z-index: 1;
      transition: all 0.4s var(--ease-out);
    }
    .process-step:hover .step-number {
      background: var(--orange);
      color: var(--white);
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(239,124,0,0.3);
    }
    .process-step h3 {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    .process-step p {
      font-size: 0.875rem;
      color: var(--gray);
      line-height: 1.6;
    }

    /* ========== CTA ========== */
    .cta {
      padding: 7rem 0;
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
      position: relative;
      overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(239,124,0,0.2), transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .cta-content {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .cta-content h2 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3.5rem);
      color: var(--white);
      margin-bottom: 1rem;
      line-height: 1.15;
    }
    .cta-content p {
      color: var(--gray-light);
      font-size: 1.1rem;
      max-width: 550px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-info {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }
    .cta-info-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--gray-light);
      font-size: 0.9rem;
    }
    .cta-info-item svg { color: var(--orange); }

    /* ========== CONTACT FORM ========== */
    .contact-form-section {
      padding: 5rem 0;
      background: var(--off-white);
    }
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .contact-info-block h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
    }
    .contact-info-block > p {
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .contact-detail-icon {
      width: 48px; height: 48px;
      min-width: 48px;
      background: rgba(239,124,0,0.1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
    }
    .contact-detail h4 { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }
    .contact-detail p { font-size: 1rem; font-weight: 500; }
    .contact-detail a { color: var(--dark); transition: color 0.3s; }
    .contact-detail a:hover { color: var(--orange); }

    .contact-form {
      background: var(--white);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    }
    .contact-form h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: var(--gray-dark);
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1.5px solid #e5e5e5;
      border-radius: 12px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: border-color 0.3s, box-shadow 0.3s;
      outline: none;
      background: var(--off-white);
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(239,124,0,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .btn-submit {
      width: 100%;
      padding: 1rem;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s var(--ease-bounce);
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(239,124,0,0.35);
    }
    .btn-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }
    .form-success {
      text-align: center;
      padding: 3rem 1rem;
    }
    .form-success h3 {
      font-size: 1.3rem;
      color: var(--dark);
      margin: 1rem 0 0.5rem;
    }
    .form-success p {
      color: var(--gray-light);
      font-size: 0.95rem;
    }

    /* ========== SERVICE MODAL ========== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17,17,17,0.7);
      backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
    }
    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    .modal {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      background: var(--white);
      border-radius: 24px;
      max-width: 700px;
      width: 90%;
      max-height: 85vh;
      overflow-y: auto;
      z-index: 2001;
      padding: 3rem;
      opacity: 0;
      pointer-events: none;
      transition: all 0.4s var(--ease-out);
    }
    .modal.active {
      opacity: 1;
      pointer-events: all;
      transform: translate(-50%, -50%) scale(1);
    }
    .modal-close {
      position: absolute;
      top: 1.25rem; right: 1.25rem;
      width: 40px; height: 40px;
      border-radius: 50%;
      border: none;
      background: var(--off-white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      color: var(--gray);
    }
    .modal-close:hover { background: var(--orange); color: var(--white); }
    .modal-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--orange);
      margin-bottom: 0.75rem;
    }
    .modal h2 {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .modal p {
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }
    .modal ul {
      margin: 1rem 0 1.5rem 1.25rem;
      list-style: disc;
    }
    .modal ul li {
      color: var(--gray);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0.4rem;
    }
    .modal-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--orange);
      color: var(--white);
      padding: 0.85rem 1.75rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-top: 1rem;
      transition: all 0.3s var(--ease-bounce);
    }
    .modal-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(239,124,0,0.35);
    }

    /* ========== SOCIAL BUTTONS ========== */
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.25rem;
      border-radius: 100px;
      background: rgba(239,124,0,0.1);
      color: var(--orange);
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.3s;
    }
    .social-btn:hover {
      background: var(--orange);
      color: var(--white);
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand p {
      color: var(--gray-light);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-top: 1rem;
      max-width: 300px;
    }
    .footer-social {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .footer-social a {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-light);
      transition: all 0.3s;
    }
    .footer-social a:hover {
      background: var(--orange);
      color: var(--white);
      transform: translateY(-2px);
    }
    .footer h4 {
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }
    .footer ul li { margin-bottom: 0.75rem; }
    .footer ul a {
      color: var(--gray-light);
      font-size: 0.875rem;
      transition: all 0.3s;
    }
    .footer ul a:hover { color: var(--orange); padding-left: 4px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p { color: var(--gray); font-size: 0.8rem; }
    .footer-bottom a { color: var(--gray); transition: color 0.3s; }
    .footer-bottom a:hover { color: var(--orange); }

    /* ========== ANIMATIONS ========== */
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { to { opacity: 1; } }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .process-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .contact-wrapper { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .menu-toggle { display: flex; }
      .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(17,17,17,0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
      }
      .nav-links.active a { font-size: 1.25rem; color: var(--white); }
      .services-grid { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .about-stats { flex-direction: row; gap: 1.5rem; }
      .process-steps { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .cta-info { flex-direction: column; align-items: center; }
      .cursor-dot, .cursor-ring { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .modal { padding: 2rem; }
    }
