  :root {
    --bg: #000000;
    --bg-2: #131313;
    --bg-3: #1A1A1A;
    --accent: #1A5CFF;
    --accent-2: #00D4FF;
    --accent-glow: rgba(26,92,255,0.12);
    --white: #FFFFFF;
    --gray: #999999;
    --gray-dim: #555555;
    --border: rgba(255,255,255,0.07);
    --r: 20px;
    --r-lg: 28px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  /* Gradient accent used throughout */
  .g-text {
    background: linear-gradient(135deg, #0047FF, #00B4FF, #00D4FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
  }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 100px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease;
  }
  nav.scrolled { padding: 12px 40px; }
  .nav-logo {
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 28px;
    color: var(--white); text-decoration: none; letter-spacing: -0.5px;
  }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    text-decoration: none; color: var(--gray); font-size: 13px; font-weight: 500;
    padding: 8px 16px; border-radius: 100px; transition: all 0.2s ease;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
  .nav-cta {
    background: linear-gradient(135deg, #0047FF, #00B4FF); color: white; border: none;
    padding: 10px 24px; border-radius: 100px;
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
  }
  .nav-cta:hover { background: linear-gradient(135deg, #0033CC, #009CE6); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,92,255,0.3); }

  /* ─── UNIVERSAL BUTTON SWEEP (orange shimmer on hover/hover-off) ─── */
  .btn-orange, .btn-ghost, .nav-cta {
    position: relative; overflow: hidden; isolation: isolate;
  }
  .btn-orange::before, .btn-ghost::before, .nav-cta::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, transparent 0%, rgba(255,122,0,0.55) 40%, rgba(255,164,61,0.55) 60%, transparent 100%);
    transform: translateX(-110%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .btn-orange:hover::before, .btn-ghost:hover::before, .nav-cta:hover::before {
    transform: translateX(110%);
  }

  /* ─── TILE HOVER — quick orange glow outline ─── */
  .proj-card, .svc-card, .about-stat-card, .price-card, .testimonial-card {
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  }
  .proj-card:hover, .svc-card:hover, .about-stat-card:hover, .price-card:hover, .testimonial-card:hover {
    border-color: #FF7A00 !important;
    box-shadow: 0 0 0 2px rgba(255,122,0,0.55), 0 0 28px rgba(255,122,0,0.4), 0 0 68px rgba(255,122,0,0.18), 0 16px 40px rgba(0,0,0,0.45) !important;
    transform: translateY(-6px);
  }

  /* ─── SCROLL EXPANSION HERO ─── */
  .expansion-hero {
    position: relative; min-height: 100vh; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  }
  .expansion-bg { position: absolute; inset: 0; z-index: 0; transition: opacity 0.1s ease; animation: logoScaleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; will-change: transform; }
  @keyframes logoScaleIn {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
  }
  .expansion-bg img, .expansion-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .expansion-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
  #hero-particles { position: absolute; inset: 0; z-index: 1; }
  .expansion-media {
    position: absolute; z-index: 10;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.4);
    max-width: 95vw; max-height: 85vh;
  }
  .expansion-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .expansion-media iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 0; display: block; pointer-events: none; }
  .expansion-media-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.35);
    border-radius: 16px; transition: opacity 0.15s ease; pointer-events: none;
  }
  .expansion-title {
    position: absolute; z-index: 15;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    pointer-events: none; width: 100%;
  }
  .expansion-title-line {
    font-family: 'Outfit', sans-serif; font-weight: 800;
    font-size: clamp(40px, 6.5vw, 90px); line-height: 1;
    letter-spacing: -2px; color: #FFFFFF;
    white-space: nowrap; transition: none;
    text-shadow: 0 2px 6px rgba(0,0,0,0.75), 0 6px 28px rgba(0,0,0,0.85), 0 0 60px rgba(0,0,0,0.6);
  }
  .expansion-hint {
    position: absolute; z-index: 15;
    bottom: calc(50% - 280px); left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    transition: opacity 0.4s ease;
  }
  .expansion-hint-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 100px;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,138,46,0.55);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    cursor: default; position: relative; overflow: hidden;
    animation: hintPulse 3s ease-in-out infinite;
  }
  .expansion-hint-pill::before {
    content: ''; position: absolute; inset: -1px;
    border-radius: 100px; padding: 1px;
    background: linear-gradient(135deg, rgba(255,138,46,0.9), rgba(255,180,80,0.7), rgba(255,106,0,0.5));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude; -webkit-mask-composite: xor;
    pointer-events: none;
    animation: hintBorderRotate 4s linear infinite;
  }
  .expansion-hint-pill::after {
    content: ''; position: absolute; inset: 0; border-radius: 100px;
    box-shadow: 0 0 20px rgba(255,122,0,0.35), 0 0 60px rgba(255,164,61,0.15), inset 0 0 20px rgba(255,122,0,0.08);
    pointer-events: none;
  }
  @keyframes hintPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(255,122,0,0.25), 0 0 44px rgba(255,164,61,0.1); }
    50%      { box-shadow: 0 0 30px rgba(255,122,0,0.55), 0 0 70px rgba(255,164,61,0.25); }
  }
  @keyframes hintBorderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(30deg); }
  }
  .expansion-hint-text {
    font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255,138,46,0.8), 0 0 16px rgba(255,106,0,0.4);
  }
  .expansion-hint-arrow {
    width: 26px; height: 26px; color: #FF8A2E;
    animation: bounceDown 1.3s cubic-bezier(0.5, 0.05, 0.2, 1) infinite;
    filter: drop-shadow(0 0 10px rgba(255,138,46,0.85)) drop-shadow(0 0 22px rgba(255,106,0,0.55));
  }
  @keyframes bounceDown {
    0%   { transform: translateY(-4px) scale(0.92); opacity: 0.55; }
    40%  { transform: translateY(10px) scale(1.08); opacity: 1; }
    60%  { transform: translateY(10px) scale(1.08); opacity: 1; }
    100% { transform: translateY(-4px) scale(0.92); opacity: 0.55; }
  }
  .expansion-hint-pill {
    animation: hintPulse 2.2s ease-in-out infinite, hintHover 3.2s ease-in-out infinite;
  }
  @keyframes hintHover {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  .hero-below {
    opacity: 0; transition: opacity 1.5s ease; pointer-events: none;
    background: var(--bg);
  }
  .hero-below.visible { opacity: 1; pointer-events: auto; }
  .hero-actions { display: flex; gap: 16px; align-items: center; justify-content: center; margin-bottom: 44px; }
  .btn-orange {
    background: linear-gradient(135deg, #0047FF, #00B4FF); color: white; border: none;
    padding: 16px 38px; border-radius: 100px;
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-orange:hover { background: linear-gradient(135deg, #0033CC, #009CE6); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,71,255,0.3); }
  .btn-ghost {
    background: transparent; color: var(--white); border: 1px solid var(--border);
    padding: 15px 34px; border-radius: 100px;
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
  .hero-stats { display: flex; gap: 56px; padding-top: 44px; border-top: 1px solid var(--border); justify-content: center; }
  .stat-num {
    font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 8px;
    background: linear-gradient(135deg, #0047FF, #00B4FF, #00D4FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-num em {
    font-style: normal;
    background: linear-gradient(135deg, #0047FF, #00D4FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-suffix {
    font-style: normal; opacity: 0; transition: opacity 0.6s ease;
    background: linear-gradient(135deg, #0047FF, #00D4FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-suffix.visible { opacity: 1; }
  .stat-label { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 700; letter-spacing: 0.3px; }

  /* ─── CONTENT WRAPPER ─── */
  .page-content { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 20px 0; background: var(--bg-2);
  }
  .marquee-track { display: flex; gap: 48px; animation: marquee 35s linear infinite; width: max-content; }
  .marquee-item {
    display: flex; align-items: center; gap: 10px; white-space: nowrap;
    color: var(--gray-dim); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  }
  .m-dot { width: 4px; height: 4px; border-radius: 50%; background: linear-gradient(135deg, #0047FF, #00D4FF); flex-shrink: 0; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ─── SECTION LABEL ─── */
  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
    background: linear-gradient(135deg, #0047FF, #00D4FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .section-label::before { content: ''; width: 20px; height: 2px; background: linear-gradient(90deg, #0047FF, #00D4FF); border-radius: 100px; }
  .section-title {
    font-family: 'Outfit', sans-serif; font-weight: 800;
    font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -1.5px;
  }

  /* ─── ABOUT — BENTO GRID ─── */
  .about-section { padding: 80px 0; }
  .about-bento {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .about-text-card {
    background: var(--bg-2); border-radius: var(--r-lg); padding: 48px 40px;
    border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center;
  }
  .about-text-card .section-title { margin-bottom: 20px; }
  .about-text-card p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
  .about-text-card p strong { color: rgba(255,255,255,0.85); font-weight: 600; }
  .about-img-card {
    border-radius: var(--r-lg); overflow: hidden; position: relative;
    min-height: 400px;
  }
  .about-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-bottom-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px;
  }
  .about-feature-card {
    background: var(--bg-2); border-radius: var(--r); padding: 28px 24px;
    border: 1px solid var(--border); transition: all 0.3s ease;
  }
  .about-feature-card:hover { border-color: rgba(26,92,255,0.2); transform: translateY(-3px); }
  .about-feature-card .af-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-glow); border: 1px solid rgba(26,92,255,0.2);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  }
  .about-feature-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
  .about-feature-card p { font-size: 12px; color: var(--gray); line-height: 1.55; }
  .about-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px;
  }
  .about-stat-card {
    background: var(--bg-2); border-radius: var(--r); padding: 24px;
    border: 1px solid var(--border); text-align: center;
  }
  .about-stat-card .num {
    font-family: 'Outfit', sans-serif; font-size: 34px; font-weight: 800;
    line-height: 1; display: block; margin-bottom: 6px;
    background: linear-gradient(135deg, #0047FF, #00D4FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .about-stat-card p { font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

  /* ─── PROJECTS — BENTO GRID ─── */
  .projects-section { padding: 80px 0; }
  .projects-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
  .projects-bento {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px;
  }
  .proj-card {
    border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer;
    border: 1px solid var(--border); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
  }
  .proj-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
  .proj-card.tall { grid-row: span 2; }
  .proj-card.wide { grid-column: span 2; }
  .proj-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
  .proj-card:hover img { transform: scale(1.04); }
  .proj-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  }
  .proj-tag {
    display: inline-block; background: linear-gradient(135deg, #0047FF, #00B4FF); color: white;
    padding: 4px 12px; border-radius: 100px; font-size: 10px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; align-self: flex-start;
  }
  .proj-name { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
  .proj-card.wide .proj-name, .proj-card.tall .proj-name { font-size: 24px; }
  .proj-sub { font-size: 12px; color: rgba(255,255,255,0.5); }
  .proj-card a.proj-link { position: absolute; inset: 0; z-index: 10; }
  .proj-name a { color: inherit; text-decoration: none; }
  .projects-collapsed { max-height: 592px; overflow: clip; overflow-clip-margin: 40px; position: relative; }
  .projects-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none; z-index: 5; transition: opacity 0.4s ease;
  }
  .projects-collapsed.expanded { max-height: none; }
  .projects-collapsed.expanded .projects-fade { opacity: 0; }
  .projects-toggle {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 32px; cursor: pointer;
    background: var(--bg-2); color: var(--white);
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 16px 38px; border-radius: 100px;
    border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    width: auto; margin-left: auto; margin-right: auto;
    position: relative; overflow: hidden; isolation: isolate;
  }
  .projects-toggle::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, transparent 0%, rgba(255,122,0,0.35) 40%, rgba(255,164,61,0.35) 60%, transparent 100%);
    transform: translateX(-110%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .projects-toggle:hover::before { transform: translateX(110%); }
  .projects-toggle svg { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .projects-toggle:hover svg { transform: translateY(3px); }
  .projects-toggle.flipped svg { transform: rotate(180deg); }
  .projects-toggle.flipped:hover svg { transform: rotate(180deg) translateY(3px); }

  /* ─── GLOBE SECTION ─── */
  .globe-section { padding: 100px 24px 80px; max-width: 1100px; margin: 0 auto; text-align: center; }
  .globe-header { margin-bottom: 32px; }
  .globe-header p {
    font-size: 15px; color: var(--gray); max-width: 520px;
    margin: 16px auto 0; line-height: 1.7;
  }
  .globe-stage {
    position: relative; width: 100%; max-width: 780px;
    aspect-ratio: 1 / 1; margin: 0 auto;
  }
  .globe-canvas {
    width: 100%; height: 100%;
    cursor: grab; opacity: 0;
    transition: opacity 1.2s ease;
    touch-action: none;
    contain: layout paint;
  }
  .globe-canvas:active { cursor: grabbing; }

  /* ─── SERVICES — HORIZONTAL SCROLL ─── */
  .services-section { padding: 80px 0; overflow: hidden; }
  .services-header { margin-bottom: 32px; }
  .services-scroll-wrap {
    position: relative; width: 100%; overflow: clip; overflow-clip-margin: 40px;
  }
  .services-scroll-wrap::before, .services-scroll-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 5; pointer-events: none;
  }
  .services-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .services-scroll-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
  .services-scroll-track {
    display: flex; gap: 16px; padding: 8px 0 20px;
    width: max-content;
    animation: svcScroll 35s linear infinite;
  }
  .services-scroll-track:hover { animation-play-state: paused; }
  @keyframes svcScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .svc-card {
    flex-shrink: 0; width: 280px;
    background: var(--bg-2); border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border);
  }
  .svc-card { position: relative; }
  .svc-card .svc-link { position: absolute; inset: 0; z-index: 10; cursor: pointer; }
  .svc-card-img { height: 160px; overflow: hidden; }
  .svc-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
  .svc-card:hover .svc-card-img img { transform: scale(1.04); }
  .svc-card-body { padding: 16px 18px; }
  .svc-card-body h3 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; line-height: 1.2; }
  .svc-card-body p { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 10px; }
  .svc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
  .tag {
    font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--accent); border: 1px solid rgba(26,92,255,0.25); padding: 4px 10px; border-radius: 100px;
  }

  /* ─── PRICING ─── */
  .pricing-section { padding: 80px 0; }
  .pricing-header { text-align: center; margin-bottom: 48px; }
  .pricing-header .section-label { justify-content: center; }
  .pricing-header .section-title { margin-bottom: 10px; }
  .pricing-header p { font-size: 15px; color: var(--gray); line-height: 1.75; max-width: 480px; margin: 0 auto; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .price-card {
    background: var(--bg-2); border-radius: var(--r-lg); padding: 36px 28px;
    border: 1px solid var(--border); position: relative; transition: all 0.3s ease;
  }
  .price-card:hover { border-color: rgba(26,92,255,0.2); transform: translateY(-4px); }
  .price-card.featured {
    border-color: rgba(0,100,255,0.4);
    background: linear-gradient(160deg, rgba(0,80,255,0.1) 0%, var(--bg-2) 50%);
    box-shadow: 0 0 24px rgba(0,80,255,0.12), 0 0 60px rgba(0,120,255,0.06);
  }
  .featured-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #0047FF, #00B4FF); font-size: 9px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase; color: white;
    padding: 5px 14px; border-radius: 0 0 8px 8px;
  }
  .price-tier { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
  .price-card h3 {
    font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 12px rgba(100,160,255,0.15));
  }
  .price-card.featured h3 {
    background: linear-gradient(135deg, #fff, #99CCFF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 16px rgba(0,120,255,0.3));
  }
  .price-note { font-size: 12px; color: var(--gray); display: block; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
  .price-desc { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
  .price-features li { font-size: 13px; color: var(--gray); display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
  .price-features li::before { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
  .price-features li.highlight { color: rgba(255,255,255,0.85); }

  /* ─── LEAD MAGNET BANNER ─── */
  .leadmag-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
  .leadmag-card {
    background: linear-gradient(135deg, rgba(0,71,255,0.08) 0%, rgba(0,180,255,0.04) 100%);
    border: 1px solid rgba(0,71,255,0.2);
    border-radius: var(--r-lg);
    padding: 56px 48px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
    align-items: center;
    position: relative; overflow: hidden;
  }
  .leadmag-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at top right, rgba(0,180,255,0.12), transparent 60%);
    pointer-events: none;
  }
  .leadmag-text { position: relative; }
  .leadmag-text h2 {
    font-family: 'Outfit', sans-serif; font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800; letter-spacing: -1px; line-height: 1.1;
    margin: 12px 0 14px;
  }
  .leadmag-subhead {
    font-size: 16px; color: var(--accent-2); font-weight: 600;
    margin-bottom: 18px;
  }
  .leadmag-body { font-size: 14px; color: var(--gray); line-height: 1.7; }
  .leadmag-form { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
  @media (max-width: 768px) {
    .leadmag-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  }

  /* ─── PRIVATE ADVISORY ─── */
  .advisory-section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
  .advisory-header { text-align: center; margin-bottom: 48px; }
  .advisory-header .section-label {
    justify-content: center;
    background: linear-gradient(135deg, #C9A96E, #E5C896);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .advisory-header .section-label::before { background: linear-gradient(90deg, #C9A96E, #E5C896); }
  .advisory-header p { font-size: 15px; color: var(--gray); max-width: 580px; margin: 14px auto 0; line-height: 1.7; }
  .advisory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .advisory-card {
    background: linear-gradient(160deg, rgba(201,169,110,0.05) 0%, var(--bg-2) 60%);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    position: relative; transition: all 0.3s ease;
  }
  .advisory-card:hover { border-color: rgba(201,169,110,0.45); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(201,169,110,0.1); }
  .advisory-card.featured {
    border-color: rgba(201,169,110,0.4);
    background: linear-gradient(160deg, rgba(201,169,110,0.1) 0%, var(--bg-2) 50%);
    box-shadow: 0 0 28px rgba(201,169,110,0.12), 0 0 60px rgba(201,169,110,0.05);
  }
  .advisory-card .price-tier { color: #C9A96E; }
  .advisory-card h3 {
    font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800;
    margin-bottom: 12px; letter-spacing: -0.5px; color: #fff;
  }
  .advisory-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 22px; }
  .advisory-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .advisory-features li { font-size: 13px; color: rgba(255,255,255,0.78); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
  .advisory-features li::before { content: ''; width: 5px; height: 5px; background: #C9A96E; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
  @media (max-width: 768px) { .advisory-grid { grid-template-columns: 1fr; } }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { padding: 80px 0; }
  .testimonials-scroll-wrap {
    position: relative; overflow: hidden; margin-top: 32px;
  }
  .testimonials-scroll-wrap::before, .testimonials-scroll-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 5; pointer-events: none;
  }
  .testimonials-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .testimonials-scroll-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
  .testimonials-scroll-track {
    display: flex; gap: 16px; padding: 8px 0 20px;
    width: max-content;
    animation: testimonialsMarquee 60s linear infinite;
  }
  .testimonials-scroll-wrap:hover .testimonials-scroll-track { animation-play-state: paused; }
  @keyframes testimonialsMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .testimonial-card {
    flex-shrink: 0; width: 380px;
    background: var(--bg-2); border-radius: var(--r-lg); padding: 32px;
    border: 1px solid var(--border);
  }
  .quote-mark { font-family: 'Outfit', sans-serif; font-size: 56px; line-height: 0.7; color: var(--accent); opacity: 0.25; display: block; margin-bottom: 10px; }
  .testimonial-card blockquote { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
  .testimonial-author { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--border); padding-top: 14px; }
  .testimonial-author strong { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
  .testimonial-author span { font-size: 12px; color: var(--accent); }

  /* ─── CONTACT ─── */
  .contact-section { padding: 80px 0; }
  .contact-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-cta-card {
    background: linear-gradient(135deg, #0a1a4a 0%, #1A5CFF 50%, #0e4faa 100%); border-radius: var(--r-lg); padding: 56px 48px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
  }
  .contact-cta-card::before {
    content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 60%); pointer-events: none;
  }
  .contact-cta-card h2 {
    font-family: 'Outfit', sans-serif; font-size: clamp(36px, 4vw, 56px); font-weight: 800;
    line-height: 1; letter-spacing: -2px; margin-bottom: 16px; position: relative;
  }
  .contact-cta-card p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; max-width: 380px; position: relative; }
  .btn-white {
    background: var(--white); color: var(--bg); border: none;
    padding: 14px 32px; border-radius: 100px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
  .contact-info-card {
    background: var(--bg-2); border-radius: var(--r-lg); padding: 48px 40px;
    border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center;
  }
  .contact-info-card h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 28px; letter-spacing: -0.5px; }
  .contact-line {
    display: grid; grid-template-columns: 90px 1fr; gap: 16px;
    align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border);
  }
  .contact-line:first-of-type { border-top: 1px solid var(--border); }
  .contact-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-dim); }
  .contact-value { font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
  a.contact-value:hover { color: var(--accent); }

  /* ─── CINEMATIC FOOTER ─── */
  .cinematic-footer-wrap {
    position: relative; height: 100vh; width: 100%;
    clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
  }
  .cinematic-footer {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg); color: var(--white);
    display: flex; flex-direction: column; justify-content: space-between;
    overflow: hidden;
  }
  .cf-aurora {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 80vw; height: 60vh; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,71,255,0.1) 0%, rgba(0,180,255,0.06) 40%, transparent 70%);
    filter: blur(80px); pointer-events: none;
    animation: cfBreathe 8s ease-in-out infinite alternate;
  }
  @keyframes cfBreathe {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
  }
  .cf-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-size: 60px 60px;
    background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  }
  .cf-giant-text {
    position: absolute; bottom: -3vh; left: 50%; transform: translateX(-50%);
    font-family: 'Outfit', sans-serif; font-size: 22vw; font-weight: 900;
    line-height: 0.75; letter-spacing: -0.05em; white-space: nowrap;
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 60%);
    -webkit-background-clip: text; background-clip: text;
    pointer-events: none; user-select: none;
  }
  .cf-marquee-bar {
    position: absolute; top: 48px; left: 0; width: 100%;
    overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: rgba(10,10,10,0.6); backdrop-filter: blur(12px);
    padding: 14px 0; z-index: 10;
    transform: rotate(-2deg) scale(1.1);
  }
  .cf-marquee-track {
    display: flex; width: max-content;
    animation: cfMarquee 40s linear infinite;
  }
  @keyframes cfMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .cf-marquee-item {
    font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gray-dim); padding: 0 24px; white-space: nowrap;
  }
  .cf-marquee-dot { color: rgba(0,71,255,0.5); padding: 0 8px; }
  .cf-center {
    position: relative; z-index: 10; flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0 24px; margin-top: 80px;
  }
  .cf-heading {
    font-family: 'Outfit', sans-serif; font-size: clamp(48px, 8vw, 100px);
    font-weight: 900; letter-spacing: -3px; text-align: center;
    margin-bottom: 48px; line-height: 1;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0.35) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
  }
  .cf-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 20px; }
  .cf-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 100px; cursor: pointer;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.06);
    color: var(--white); font-size: 14px; font-weight: 700; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .cf-pill:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.12);
    transform: translateY(-2px);
  }
  .cf-pill-sm {
    padding: 10px 22px; font-size: 12px; font-weight: 600; color: var(--gray);
  }
  .cf-pill-sm:hover { color: var(--white); }
  .cf-bottom {
    position: relative; z-index: 20; width: 100%;
    padding: 0 40px 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .cf-copyright {
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray-dim);
  }
  .cf-made-with {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: 100px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray);
  }
  .cf-heart { color: #FF4D4D; animation: cfHeartbeat 2s cubic-bezier(0.25,1,0.5,1) infinite; font-size: 14px; }
  @keyframes cfHeartbeat {
    0%, 100% { transform: scale(1); }
    15%, 45% { transform: scale(1.25); }
    30% { transform: scale(1); }
  }
  .cf-back-top {
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); text-decoration: none; transition: all 0.3s ease;
  }
  .cf-back-top:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
  .cf-back-top svg { transition: transform 0.3s ease; }
  .cf-back-top:hover svg { transform: translateY(-3px); }

  @media (max-width: 768px) {
    .cf-bottom { flex-direction: column; gap: 16px; text-align: center; padding: 0 20px 24px; }
    .cf-pill { padding: 14px 24px; font-size: 13px; }
  }

  /* ─── PROCESS — VERTICAL TIMELINE ─── */
  .process-section { padding: 80px 0; }
  .process-header { margin-bottom: 56px; text-align: center; }
  .process-header .section-label { justify-content: center; }
  .process-header .section-title span { color: var(--accent); }
  .process-timeline { position: relative; max-width: 800px; margin: 0 auto; }
  /* Static line */
  .process-timeline::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 3px; height: 100%;
    background: linear-gradient(to bottom, rgba(100,160,255,0.6), rgba(0,180,255,0.4), rgba(0,212,255,0.15));
  }
  /* Traveling orb */
  .process-timeline::after {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 4px; height: 32px; border-radius: 100px;
    background: linear-gradient(to bottom, transparent, #3399FF 40%, #00D4FF 60%, transparent);
    box-shadow: 0 0 10px rgba(50,150,255,0.7), 0 0 24px rgba(0,180,255,0.35), 0 0 48px rgba(0,120,255,0.15);
    filter: blur(0px);
    z-index: 1; opacity: 0; top: 0;
  }
  .timeline-step {
    display: flex; align-items: flex-start; gap: 40px;
    padding: 0 0 64px 0; position: relative;
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .timeline-step.revealed { opacity: 1; transform: translateY(0); }
  .timeline-step:nth-child(odd) { flex-direction: row; padding-right: calc(50% + 40px); padding-left: 0; }
  .timeline-step:nth-child(even) { flex-direction: row-reverse; padding-left: calc(50% + 40px); padding-right: 0; }
  .timeline-step:nth-child(odd) .tl-content { text-align: right; }
  .timeline-step:nth-child(even) .tl-content { text-align: left; }
  /* Hover highlight on timeline content */
  .tl-content {
    position: relative; padding: 14px 20px; border-radius: 14px;
    border: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, padding 0.35s ease;
  }
  .tl-content h4, .tl-content p { transition: color 0.3s ease; }
  .tl-extra {
    max-height: 0; opacity: 0; overflow: hidden;
    font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65;
    transition: max-height 0.5s ease, opacity 0.35s ease, margin-top 0.35s ease;
  }
  .timeline-step:hover .tl-content {
    background: linear-gradient(135deg, rgba(100,160,255,0.06), rgba(0,212,255,0.04));
    border-color: rgba(100,180,255,0.3);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35), 0 0 28px rgba(0,140,255,0.1);
    transform: translateY(-2px);
    padding: 18px 22px;
    cursor: default;
  }
  .timeline-step:hover .tl-content h4 { color: #fff; }
  .timeline-step:hover .tl-content p { color: rgba(255,255,255,0.75); }
  .timeline-step:hover .tl-extra { max-height: 200px; opacity: 1; margin-top: 10px; }
  .tl-dot {
    position: absolute; left: 50%; top: 4px; transform: translateX(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--bg-2); border: 2px solid rgba(100,160,255,0.3);
    display: flex; align-items: center; justify-content: center; z-index: 2;
    transition: all 0.35s ease;
  }
  .tl-dot span {
    font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800;
    color: rgba(130,170,255,0.6); transition: all 0.35s ease;
  }
  .tl-dot.orb-active {
    background: linear-gradient(135deg, #0055FF, #00AAFF);
    border-color: #00BBFF;
    box-shadow: 0 0 20px rgba(0,140,255,0.6), 0 0 50px rgba(0,170,255,0.25);
    transform: translateX(-50%) scale(1.1);
  }
  .tl-dot.orb-active span {
    color: #FFFFFF;
    filter: none;
  }
  .tl-dot span {
    font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--accent);
  }
  .tl-content { flex: 1; }
  .tl-content h4 {
    font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700;
    margin-bottom: 8px; letter-spacing: -0.3px; color: rgba(255,255,255,0.9);
  }
  .tl-content p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }
  /* JS-driven traveling orb — positioned here so the mobile breakpoint can move it with the spine */
  .tl-orb {
    position: absolute; left: 50%; transform: translateX(-50%);
    top: 0; width: 6px; height: 36px; border-radius: 100px;
    background: linear-gradient(to bottom, transparent, #66BBFF 30%, #FFFFFF 50%, #66BBFF 70%, transparent);
    box-shadow: 0 0 12px rgba(100,180,255,0.8), 0 0 28px rgba(60,160,255,0.5), 0 0 56px rgba(0,140,255,0.2);
    z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.15s;
  }

  /* ─── INQUIRY MODAL ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  }
  .modal-overlay.open { opacity: 1; pointer-events: auto; }
  .modal-box {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 48px 40px; width: 100%; max-width: 520px;
    position: relative; transform: translateY(20px); transition: transform 0.35s ease;
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .modal-close {
    position: absolute; top: 18px; right: 18px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gray); font-size: 18px; transition: all 0.2s;
  }
  .modal-close:hover { background: var(--accent); border-color: var(--accent); color: white; }
  .modal-tier {
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 8px; display: block;
  }
  .modal-box h3 {
    font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800;
    margin-bottom: 24px; letter-spacing: -0.5px;
  }
  .modal-form { display: flex; flex-direction: column; gap: 14px; }
  .modal-form label {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gray-dim); display: block; margin-bottom: 6px;
  }
  .modal-form input, .modal-form select {
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-radius: 12px; padding: 13px 16px;
    font-family: 'Inter', sans-serif; font-size: 14px; color: var(--white);
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
  }
  .modal-form input::placeholder { color: rgba(255,255,255,0.2); }
  .modal-form input:focus, .modal-form select:focus {
    border-color: rgba(26,92,255,0.5); box-shadow: 0 0 0 3px rgba(26,92,255,0.08);
  }
  .modal-form select option { background: #1a1a1a; color: white; }
  .modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ─── ANIMATIONS ─── */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  /* Footer columns */
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }

  @media (max-width: 1100px) {
    .about-bento { grid-template-columns: 1fr; }
    .about-bottom-row { grid-template-columns: 1fr 1fr; }
    .about-stats-row { grid-template-columns: 1fr 1fr; }
    .projects-bento { grid-template-columns: 1fr 1fr; }
    .services-bento { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-bento { grid-template-columns: 1fr; }
    .process-timeline { max-width: 600px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-logo { font-size: 19px; }
    .nav-cta { padding: 9px 16px; font-size: 12px; white-space: nowrap; }
    .page-content { padding: 0 16px; }
    .expansion-title-line { font-size: clamp(28px, 8vw, 44px); letter-spacing: -1px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .about-bottom-row { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: 1fr 1fr; }
    .projects-bento { grid-template-columns: 1fr; }
    .proj-card.wide, .proj-card.tall { grid-column: span 1; grid-row: span 1; }
    .services-bento { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .timeline-step:nth-child(odd), .timeline-step:nth-child(even) {
      flex-direction: row; padding-left: 54px; padding-right: 0; padding-bottom: 44px;
    }
    .timeline-step:nth-child(odd) .tl-content, .timeline-step:nth-child(even) .tl-content { text-align: left; }
    .process-timeline::before { left: 20px; }
    .process-timeline::after { left: 20px; }
    .tl-orb { left: 20px; }
    .tl-dot { left: 20px; width: 40px; height: 40px; }
    .tl-dot span { font-size: 14px; }
    .tl-content { padding: 8px 12px; }
    .process-section { padding: 48px 0; }
    .process-header { margin-bottom: 36px; }
    .modal-box { padding: 32px 24px; margin: 16px; }
    .modal-row { grid-template-columns: 1fr; }
    .contact-cta-card { padding: 40px 28px; }
    footer { padding: 36px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  /* ── Projects marquee row (non-clickable timeline) ── */
  .projects-row-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }
  .projects-row-track {
    display: flex;
    width: max-content;
    animation: projectsRow 50s linear infinite;
    will-change: transform;
  }
  .projects-row-wrap:hover .projects-row-track { animation-play-state: paused; }
  @keyframes projectsRow {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .proj-tile {
    position: relative;
    width: 340px;
    height: 230px;
    margin-right: 16px;
    border-radius: var(--r);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: var(--bg-2);
  }
  .proj-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .proj-tile .tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.92));
  }
  .proj-tile .proj-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    box-shadow: 0 2px 10px rgba(0,0,0,0.45);
  }
  .proj-tile .proj-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 3px 14px rgba(0,0,0,0.7);
  }
  @media (max-width: 768px) {
    .proj-tile { width: 260px; height: 180px; }
  }

  /* ── Big brand / Tecla section ── */
  .brandcta-section { padding: 24px 0 72px; }
  .brandcta-card {
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(135deg, rgba(26,92,255,0.14), rgba(0,212,255,0.04)), var(--bg-2);
    border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 72px 40px;
  }
  .brandcta-card::before {
    content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 480px; height: 240px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(26,92,255,0.25), transparent);
    pointer-events: none;
  }
  .brandcta-card .section-title { margin-bottom: 16px; }
  .brandcta-card p {
    max-width: 560px; margin: 0 auto 32px; color: var(--gray);
    font-size: 16px; line-height: 1.7;
  }
  @media (max-width: 768px) {
    .brandcta-card { padding: 48px 24px; }
  }

  /* ── Nav logo image ── */
  .nav-logo img { height: 42px; display: block; }
  @media (max-width: 768px) {
    .nav-logo img { height: 34px; }
  }
