
    /* ============================================================
   ROOT & RESET
============================================================ */
    :root {
      --black: #0a0a0a;
      --deep: #0f0f14;
      --card: #141419;
      --border: #1e1e28;
      --accent: #ff4d00;
      --accent2: #ff8c42;
      --gold: #f5c842;
      --white: #f5f4f0;
      --muted: #6b6b7a;
      --text: #c8c7c0;
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      background: #000;
      color: var(--white);
      font-family: var(--font-body);
      overflow-x: hidden
    }

    body.site-ready {
      background: var(--black)
    }

    /* ============================================================
   INTRO OVERLAY — wraps all 4 phases
============================================================ */
    #intro {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    #intro.done {
      display: none
    }

    /* ── CANVAS behind everything ── */
    #intro-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%
    }

    /* ============================================================
   PHASE 1 — COUNTDOWN WAR ROOM
============================================================ */
    #phase-countdown {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      opacity: 0;
      pointer-events: none;
    }

    .cd-scanlines {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, rgba(0, 255, 0, 0.02) 0px, rgba(0, 255, 0, 0.02) 1px, transparent 1px, transparent 4px);
      pointer-events: none;
    }

    .cd-border {
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(255, 77, 0, 0.3);
      animation: borderPulse 1s infinite;
    }

    @keyframes borderPulse {

      0%,
      100% {
        opacity: 0.3
      }

      50% {
        opacity: 1
      }
    }

    .cd-corner {
      position: absolute;
      width: 20px;
      height: 20px;
      border-color: var(--accent);
      border-style: solid
    }

    .cd-corner.tl {
      top: 20px;
      left: 20px;
      border-width: 2px 0 0 2px
    }

    .cd-corner.tr {
      top: 20px;
      right: 20px;
      border-width: 2px 2px 0 0
    }

    .cd-corner.bl {
      bottom: 20px;
      left: 20px;
      border-width: 0 0 2px 2px
    }

    .cd-corner.br {
      bottom: 20px;
      right: 20px;
      border-width: 0 2px 2px 0
    }

    .cd-label {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255, 77, 0, 0.7);
      margin-bottom: 1rem;
    }

    .cd-number {
      font-size: clamp(8rem, 25vw, 18rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      text-shadow: 0 0 80px rgba(255, 77, 0, 0.5);
      transition: none;
    }

    .cd-number.flash {
      animation: numFlash 0.15s ease
    }

    @keyframes numFlash {
      0% {
        opacity: 0;
        transform: scale(1.3)
      }

      100% {
        opacity: 1;
        transform: scale(1)
      }
    }

    .cd-bar {
      width: 300px;
      height: 2px;
      background: rgba(255, 255, 255, 0.1);
      margin-top: 2rem;
      border-radius: 2px;
      overflow: hidden;
    }

    .cd-bar-fill {
      height: 100%;
      background: var(--accent);
      width: 0%;
      transition: width 0.9s linear;
    }

    .cd-status {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: var(--muted);
      margin-top: 1rem;
      text-transform: uppercase;
    }

    /* ============================================================
   PHASE 2 — COSMIC BIG BANG
============================================================ */
    #phase-bigbang {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
    }

    .bb-ring {
      position: absolute;
      border-radius: 50%;
      border: 2px solid var(--accent);
      transform: scale(0);
      opacity: 0;
    }

    /* ============================================================
   PHASE 3 — HERO SILHOUETTES ASSEMBLE
============================================================ */
    #phase-assemble {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .assemble-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 8vw, 7rem);
      letter-spacing: -0.02em;
      color: var(--white);
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .assemble-title .word {
      display: inline-block;
      overflow: hidden;
    }

    .assemble-title .letter {
      display: inline-block;
      transform: translateY(120%);
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    }

    .assemble-sub {
      font-size: 0.85rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 1rem;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .hero-stage {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 55%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 0px;
    }

    .hero-sil {
      position: absolute;
      bottom: 0;
      transform: translateY(100%);
      opacity: 0;
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
      filter: drop-shadow(0 0 20px var(--accent));
    }

    .lightning {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 0;
      background: linear-gradient(to bottom, transparent, #fff, var(--accent), transparent);
      opacity: 0;
      border-radius: 2px;
      box-shadow: 0 0 10px #fff, 0 0 20px var(--accent);
    }

    /* ============================================================
   PHASE 4 — EXPLOSION + LOGO REVEAL
============================================================ */
    #phase-explosion {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .exp-flash {
      position: absolute;
      inset: 0;
      background: #fff;
      opacity: 0;
      pointer-events: none;
    }

    .exp-shockwave {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 4px solid #fff;
      transform: scale(0);
      opacity: 0;
    }

    .exp-debris {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 1px;
      background: var(--accent);
      opacity: 0;
      transform: translate(-50%, -50%);
    }

    .exp-fire {
      position: absolute;
      border-radius: 50%;
      opacity: 0;
      background: radial-gradient(circle, #fff 0%, var(--gold) 20%, var(--accent) 50%, transparent 70%);
    }

    .exp-logo {
      position: relative;
      z-index: 10;
      text-align: center;
      transform: scale(0);
      opacity: 0;
    }

    .exp-logo-text {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(3rem, 10vw, 9rem);
      letter-letters: -0.03em;
      background: linear-gradient(135deg, #fff 0%, var(--accent2) 40%, var(--accent) 70%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 40px rgba(255, 77, 0, 0.8));
      line-height: 1;
    }

    .exp-logo-sub {
      font-size: 0.8rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 0.5rem;
      opacity: 0;
    }

    .exp-crack {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cpath d='M50%25 0 L48%25 30%25 L52%25 30%25 L49%25 60%25 L53%25 60%25 L50%25 100%25' stroke='rgba(255,77,0,0.4)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 50%25 L30%25 48%25 L30%25 52%25 L70%25 50%25 L70%25 53%25 L100%25 50%25' stroke='rgba(255,77,0,0.4)' stroke-width='1' fill='none'/%3E%3C/svg%3E") center/cover;
      opacity: 0;
    }

    /* ============================================================
   PARTICLE CANVAS PARTICLES (JS-driven)
============================================================ */

    /* ============================================================
   SITE — same as before
============================================================ */
    #site {
      opacity: 0;
      transition: opacity 1.2s ease
    }

    #site.visible {
      opacity: 1
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.2rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.4rem;
      letter-spacing: -0.02em;
      color: var(--white)
    }

    .nav-logo span {
      color: var(--accent)
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s
    }

    .nav-links a:hover {
      color: var(--white)
    }

    .nav-cta {
      background: var(--accent);
      color: #fff;
      padding: 0.55rem 1.4rem;
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s
    }

    .nav-cta:hover {
      background: #e03d00;
      transform: translateY(-1px)
    }

    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 10rem 5% 6rem;
      position: relative;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(255, 77, 0, 0.12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245, 200, 66, 0.07) 0%, transparent 55%), var(--black)
    }

    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%)
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 77, 0, 0.12);
      border: 1px solid rgba(255, 77, 0, 0.3);
      color: var(--accent2);
      padding: 0.35rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1.8rem
    }

    .hero-badge::before {
      content: '●';
      font-size: 0.5rem;
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--white)
    }

    h1 em {
      font-style: normal;
      color: var(--accent)
    }

    .hero-sub {
      margin-top: 1.4rem;
      max-width: 520px;
      font-size: 1.1rem;
      color: var(--text);
      font-weight: 300;
      line-height: 1.65
    }

    .hero-actions {
      margin-top: 2.4rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 0.85rem 2rem;
      border-radius: 5px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(255, 77, 0, 0.35)
    }

    .btn-primary:hover {
      background: #e03d00;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 77, 0, 0.45)
    }

    .btn-outline {
      border: 1px solid var(--border);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 5px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s
    }

    .btn-outline:hover {
      border-color: var(--accent);
      background: rgba(255, 77, 0, 0.06)
    }

    .hero-trust {
      margin-top: 3.5rem;
      font-size: 0.8rem;
      color: var(--muted);
      letter-spacing: 0.04em;
      text-transform: uppercase
    }

    #proof {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.4rem 5%;
      background: var(--deep);
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      justify-content: center
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text);
      letter-spacing: 0.02em
    }

    .proof-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 77, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 0.7rem;
      flex-shrink: 0
    }

    section {
      padding: 6rem 5%
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.8rem
    }

    h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--white)
    }

    h2 em {
      font-style: normal;
      color: var(--accent)
    }

    #about {
      background: var(--deep)
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto
    }

    .about-visual {
      position: relative;
      aspect-ratio: 4/3;
      background: var(--card);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border)
    }

    .about-visual-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden
    }

    .about-visual-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 40% 40%, rgba(255, 77, 0, 0.2), transparent 65%), radial-gradient(ellipse at 80% 80%, rgba(245, 200, 66, 0.1), transparent 55%)
    }

    .about-graphic {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 2rem
    }

    .about-stat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.2rem;
      text-align: center
    }

    .about-stat strong {
      display: block;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent)
    }

    .about-stat span {
      font-size: 0.75rem;
      color: var(--muted)
    }

    .about-text p {
      color: var(--text);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 1rem
    }

    .about-text p strong {
      color: var(--white);
      font-weight: 500
    }

    #services {
      background: var(--black)
    }

    .services-header {
      max-width: 560px;
      margin-bottom: 3.5rem
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1100px
    }

    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2rem;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s
    }

    .service-card:hover::before {
      transform: scaleX(1)
    }

    .service-card:hover {
      border-color: rgba(255, 77, 0, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4)
    }

    .service-icon {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: rgba(255, 77, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1.2rem
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--white)
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65
    }

    #why {
      background: var(--deep)
    }

    .why-header {
      max-width: 560px;
      margin-bottom: 3.5rem
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1100px
    }

    .why-item {
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--card)
    }

    .why-icon {
      font-size: 1.6rem;
      margin-bottom: 1rem
    }

    .why-item h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.4rem
    }

    .why-item p {
      font-size: 0.88rem;
      color: var(--muted)
    }

    #portfolio {
      background: var(--black)
    }

    .portfolio-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 3.5rem
    }

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

    .portfolio-card {
      aspect-ratio: 4/3;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      border: 1px solid var(--border)
    }

    .portfolio-card-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transition: transform 0.4s
    }

    .portfolio-card:hover .portfolio-card-inner {
      transform: scale(1.04)
    }

    .portfolio-bg {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      position: relative
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.75);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      opacity: 0;
      transition: opacity 0.3s
    }

    .portfolio-card:hover .portfolio-overlay {
      opacity: 1
    }

    .portfolio-overlay span {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--white)
    }

    .portfolio-overlay small {
      font-size: 0.75rem;
      color: var(--accent)
    }

    .pc1 {
      background: linear-gradient(135deg, #1a1a2e, #16213e)
    }

    .pc2 {
      background: linear-gradient(135deg, #0f2027, #203a43)
    }

    .pc3 {
      background: linear-gradient(135deg, #1e1e1e, #2d1b00)
    }

    .pc4 {
      background: linear-gradient(135deg, #0d0d0d, #1a0a1a)
    }

    .pc5 {
      background: linear-gradient(135deg, #0a1628, #112240)
    }

    .pc6 {
      background: linear-gradient(135deg, #1a0a0a, #2d1515)
    }

    #testimonials {
      background: var(--deep)
    }

    .testimonials-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 3.5rem
    }

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

    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2rem
    }

    .testi-stars {
      color: var(--gold);
      font-size: 0.85rem;
      letter-spacing: 2px;
      margin-bottom: 1rem
    }

    .testi-card blockquote {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 1.5rem
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 0.8rem
    }

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

    .av1 {
      background: linear-gradient(135deg, #ff4d00, #ff8c42)
    }

    .av2 {
      background: linear-gradient(135deg, #5b21b6, #8b5cf6)
    }

    .av3 {
      background: linear-gradient(135deg, #0ea5e9, #06b6d4)
    }

    .testi-info strong {
      font-size: 0.85rem;
      color: var(--white);
      display: block
    }

    .testi-info small {
      font-size: 0.75rem;
      color: var(--muted)
    }

    #bigcta {
      background: var(--black);
      padding: 6rem 5%;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .bigcta-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 77, 0, 0.1) 0%, transparent 65%)
    }

    .bigcta-border {
      position: absolute;
      inset: 2rem;
      border: 1px solid rgba(255, 77, 0, 0.15);
      border-radius: 16px;
      pointer-events: none
    }

    .bigcta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto
    }

    .bigcta-content h2 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      margin-bottom: 1rem
    }

    .bigcta-content p {
      color: var(--text);
      font-size: 1.1rem;
      margin-bottom: 2.5rem
    }

    .bigcta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn-white {
      background: var(--white);
      color: var(--black);
      padding: 0.85rem 2rem;
      border-radius: 5px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s
    }

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

    #contact {
      background: var(--deep)
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start
    }

    .contact-details {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: var(--text);
      font-size: 0.95rem
    }

    .contact-detail-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      flex-shrink: 0;
      background: rgba(255, 77, 0, 0.1);
      border: 1px solid rgba(255, 77, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem
    }

    .contact-form input,
    .contact-form textarea {
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 0.9rem 1.2rem;
      border-radius: 6px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      outline: none;
      resize: vertical;
      transition: border-color 0.2s
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: var(--muted)
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--accent)
    }

    .contact-form textarea {
      min-height: 130px
    }

    footer {
      background: #060606;
      border-top: 1px solid var(--border);
      padding: 4rem 5% 2rem
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      max-width: 1100px;
      margin: 0 auto 3rem
    }

    .footer-brand p {
      color: var(--muted);
      font-size: 0.88rem;
      max-width: 260px;
      line-height: 1.7
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.2rem
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem
    }

    .footer-col a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s
    }

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

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: var(--muted)
    }

    .social-row {
      display: flex;
      gap: 0.8rem
    }

    .social-btn {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      text-decoration: none;
      color: var(--muted);
      transition: border-color 0.2s, color 0.2s, background 0.2s
    }

    .social-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(255, 77, 0, 0.08)
    }

    .wa-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      font-size: 1.6rem;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: waBounce 2s 2s ease-in-out infinite
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
      animation: none
    }

    @keyframes waBounce {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    .wa-tooltip {
      position: absolute;
      right: 68px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
      font-size: 0.78rem;
      font-weight: 500;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s
    }

    .wa-float:hover .wa-tooltip {
      opacity: 1
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease
    }

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

    @media(max-width:900px) {

      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .services-grid,
      .why-grid,
      .testi-grid {
        grid-template-columns: 1fr 1fr
      }

      .portfolio-grid {
        grid-template-columns: 1fr 1fr
      }

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

      .nav-links {
        display: none
      }
    }

    @media(max-width:600px) {

      .services-grid,
      .why-grid,
      .testi-grid,
      .portfolio-grid {
        grid-template-columns: 1fr
      }

      #proof {
        gap: 1.5rem
      }

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