  :root {
    --yellow: #FFD000;
    --blue: #1A3A6B;
    --orange: #F07020;
    --white: #FAFAFA;
    --dark: #0F1B2D;
    --gray: #8A95A3;
    --light: #F0F4F8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* DIAGONAL STRIPE BACKGROUND */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,208,0,0.015) 40px,
      rgba(255,208,0,0.015) 80px
    );
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(15,27,45,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--yellow);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    object-fit: cover;
  }

  .nav-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1;
  }

  .nav-name span { color: var(--yellow); }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--yellow);
    color: var(--dark);
    padding: 12px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .nav-cta:hover { background: var(--orange); color: var(--white); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 60px 80px;
    position: relative;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,208,0,0.1);
    border: 1px solid rgba(255,208,0,0.3);
    padding: 8px 18px;
    margin-bottom: 32px;
    width: fit-content;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.2s;
  }

  .hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 7vw, 110px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.4s;
  }

  .hero-headline .accent { color: var(--yellow); }
  .hero-headline .outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
  }

  .hero-sub {
    margin-top: 28px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
    max-width: 460px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.6s;
  }

  .hero-sub strong { color: var(--white); font-weight: 700; }

  .hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.8s;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--dark);
    padding: 18px 44px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.25s;
    position: relative;
  }

  .btn-primary:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

  .btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 2px;
    transition: all 0.2s;
  }

  .btn-secondary:hover { color: var(--yellow); border-color: var(--yellow); }
  .btn-text-link {
    color: rgba(255,255,255,0.5); font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; transition: color 0.2s; padding: 4px 0;
  }
  .btn-text-link:hover { color: var(--white); }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,208,0,0.08) 0%, transparent 70%);
  }

  .hero-logo-wrap {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
  }

  .hero-logo-img {
    width: 380px;
    height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(255,208,0,0.2));
    animation: float 4s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
  }

  .hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(255,208,0,0.1);
    animation: spin 20s linear infinite;
  }

  .hero-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px dashed rgba(255,208,0,0.05);
    animation: spin 30s linear infinite reverse;
  }

  @keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  /* MARQUEE */
  .marquee {
    background: var(--yellow);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .marquee-inner {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--dark);
    padding: 0 40px;
  }

  .marquee-sep { color: var(--orange); margin-right: 40px; }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* SERVICES */
  .services {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .section-header {
    margin-bottom: 70px;
  }

  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--yellow);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
  }

  .section-title span { color: var(--yellow); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    background: rgba(255,208,0,0.04);
    border-color: rgba(255,208,0,0.2);
    transform: translateY(-4px);
  }

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

  .service-icon {
    font-size: 36px;
    margin-bottom: 24px;
    display: block;
  }

  .service-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
  }

  .service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
  }

  .service-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
  }

  .service-price {
    margin-top: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
  }

  /* WHY ME */
  .why {
    background: var(--blue);
    padding: 100px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .why::before {
    content: 'CAN WE BUILD IT?';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px;
    color: rgba(255,255,255,0.03);
    bottom: -20px;
    right: -20px;
    white-space: nowrap;
    pointer-events: none;
  }

  .why-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .why-left .big-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 32px;
  }

  .why-left .big-text span { color: var(--yellow); }

  .why-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 440px;
  }

  .why-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .why-item:last-child { border-bottom: none; padding-bottom: 0; }

  .why-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
  }

  .why-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .why-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
  }

  /* PORTFOLIO PREVIEW */
  .portfolio {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 70px;
  }

  .portfolio-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/1;
    border: 1px solid rgba(255,255,255,0.08);
    display: block;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #0a1628 center top/cover no-repeat;
  }
  .portfolio-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10,22,40,0.6) 100%);
    transition: opacity 0.3s;
  }
  .portfolio-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 8px 32px rgba(255,208,0,0.12);
  }
  .portfolio-card:hover .portfolio-card-bg {
    transform: scale(1.04);
  }
  .portfolio-card-bg {
    position: absolute; inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center top;
    transition: transform 0.5s ease;
  }

  .portfolio-label {
    text-align: center;
  }

  .portfolio-type {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 8px;
  }

  .portfolio-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.05em;
    color: var(--white);
  }

  .portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }

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

  .portfolio-card-overlay span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--dark);
  }

  /* PROCESS */
  .process {
    background: rgba(255,255,255,0.02);
    padding: 100px 60px;
    position: relative;
    z-index: 1;
  }

  .process-inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 70px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--orange), var(--blue), var(--yellow));
    opacity: 0.3;
  }

  .step {
    position: relative;
    padding-top: 56px;
  }

  .step-dot {
    position: absolute;
    top: 14px;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--yellow);
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--yellow);
    margin-bottom: 12px;
  }

  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
  }

  /* CTA */
  .cta {
    padding: 120px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,208,0,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .cta-headline span { color: var(--yellow); }
  .cta-headline .outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
  }

  .cta-sub {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
  }

  .btn-cta {
    background: var(--yellow);
    color: var(--dark);
    padding: 20px 56px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.25s;
  }

  .btn-cta:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }

  /* FOOTER */
  footer {
    background: #080F1A;
    padding: 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--yellow);
    position: relative;
    z-index: 1;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    object-fit: cover;
  }

  .footer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: var(--white);
  }

  .footer-name span { color: var(--yellow); }

  .footer-copy {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--yellow); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

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

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

  /* RESPONSIVE */
  @media (max-width: 960px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 120px 24px 40px; }
    .hero-right { height: 280px; }
    .hero-logo-img { width: 220px; height: 220px; }
    .services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .why { padding: 80px 24px; }
    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .portfolio { padding: 80px 24px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .process { padding: 80px 24px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .cta { padding: 80px 24px; }
    footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
  }

  /* ── SCANNER FORM ── */
  .scanner-form {
    display: flex;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .scanner-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,208,0,0.3);
    border-right: none;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.2s;
  }
  .scanner-input:focus { border-color: var(--yellow); }
  .scanner-input::placeholder { color: var(--gray); }
  .scanner-submit {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.2s;
    white-space: nowrap;
  }
  .scanner-submit:hover { background: var(--orange); color: var(--white); }
  .scanner-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
  }

  /* ── LOADING SCREEN ── */
  .scanner-loading {
    padding: 100px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--dark);
  }
  .loading-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .loading-title span { color: var(--yellow); }
  .loading-url {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
    margin-bottom: 48px;
  }
  .loading-nodes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto 48px;
    text-align: left;
  }
  .loading-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 3px;
    opacity: 0.3;
    transition: opacity 0.4s, border-color 0.4s;
  }
  .loading-node.active {
    opacity: 1;
    border-color: rgba(255,208,0,0.3);
  }
  .loading-node.done {
    opacity: 0.7;
    border-color: rgba(107,255,170,0.2);
  }
  .node-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
  }
  .loading-node.active .node-icon { background: rgba(255,208,0,0.15); }
  .loading-node.done .node-icon { background: rgba(107,255,170,0.1); }
  .node-info { flex: 1; }
  .node-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2px;
  }
  .node-desc {
    font-size: 12px;
    color: var(--gray);
  }
  .node-status {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .loading-node.active .node-status { color: var(--yellow); }
  .loading-node.done .node-status { color: #6bffaa; }
  .loading-node:not(.active):not(.done) .node-status { color: transparent; }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .loading-node.active .node-status::after {
    content: '...';
    animation: pulse-dot 1s infinite;
  }

  /* ── RESULTS SECTION ── */
  .scanner-results {
    padding: 80px 60px;
    position: relative;
    z-index: 1;
    background: var(--dark);
  }
  .results-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .results-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .results-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 10px;
  }
  .results-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    color: var(--white);
  }
  .results-header h2 span { color: #ff6b6b; }
  .score-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,208,0,0.2);
    border-left: 3px solid var(--yellow);
    border-radius: 3px;
    padding: 16px 24px;
    margin-bottom: 20px;
  }
  .score-ring-wrap { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
  .score-ring-wrap svg { transform: rotate(-90deg); }
  .score-ring-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }
  .score-ring-inner .snum {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; color: #ff6b6b; line-height: 1;
  }
  .score-ring-inner .sden {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; color: var(--gray); letter-spacing: 1px;
  }
  .score-meta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem; letter-spacing: 1.5px;
    color: var(--white); margin-bottom: 8px;
  }
  .score-meta h3 span { color: #ff6b6b; }
  .score-cats { display: flex; flex-wrap: wrap; gap: 6px; }
  .scat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.3px; padding: 3px 10px; border-radius: 2px;
  }
  .scat.bad  { background: rgba(255,107,107,0.1); color: #ff6b6b; border: 1px solid rgba(255,107,107,0.2); }
  .scat.warn { background: rgba(240,112,32,0.1); color: var(--orange); border: 1px solid rgba(240,112,32,0.2); }
  .results-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .col-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 10px; display: flex;
    align-items: center; gap: 8px;
  }
  .step-tag {
    background: var(--yellow); color: var(--dark);
    padding: 2px 7px; font-size: 10px;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  }
  .col-lbl.c1 { color: var(--white); }
  .col-lbl.c2 { color: var(--yellow); }
  /* annotated card */
  .ann-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px; overflow: hidden;
  }
  .browser-chrome {
    background: #091422; padding: 8px 12px;
    display: flex; align-items: center; gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .bc-dot { width: 8px; height: 8px; border-radius: 50%; }
  .bc-dot.r { background: #ff5f57; } .bc-dot.y { background: #febc2e; } .bc-dot.g { background: #28c840; }
  .bc-url {
    flex: 1; background: rgba(0,0,0,0.3); border-radius: 3px;
    padding: 3px 10px; font-size: 11px; color: #334;
    margin-left: 6px; font-family: 'Barlow Condensed', sans-serif;
  }
  .screenshot-wrap { position: relative; padding: 10px; background: #050d17; }
  .site-screenshot {
    width: 100%; border-radius: 2px;
    display: block; opacity: 0.6;
    filter: grayscale(20%);
  }
  .ann-overlay { position: absolute; inset: 10px; }
  .ann-pin {
    position: absolute;
    width: 20px; height: 20px; border-radius: 50%;
    color: #fff; font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif; cursor: pointer;
    transition: transform 0.15s;
  }
  .ann-pin:hover { transform: scale(1.3); }
  .ann-pin.crit { background: #ff4d4d; box-shadow: 0 0 0 2px rgba(255,77,77,0.3); }
  .ann-pin.warn { background: var(--orange); box-shadow: 0 0 0 2px rgba(240,112,32,0.3); }
  .ann-pin.info { background: var(--yellow); box-shadow: 0 0 0 2px rgba(255,208,0,0.3); color: var(--dark); }
  .issues-list { padding: 10px; background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 6px; }
  .issue-item {
    display: flex; gap: 8px; align-items: flex-start;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px; padding: 8px 10px;
  }
  .issue-num {
    width: 18px; height: 18px; border-radius: 50%;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-family: 'Barlow Condensed', sans-serif;
  }
  .issue-num.crit { background: #ff4d4d; color: #fff; }
  .issue-num.warn { background: var(--orange); color: #fff; }
  .issue-num.info { background: var(--yellow); color: var(--dark); }
  .issue-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; color: var(--white);
    margin-bottom: 1px; letter-spacing: 0.3px;
  }
  .issue-item p { font-size: 11px; color: var(--gray); line-height: 1.4; }
  /* wireframe card */
  .wf-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,208,0,0.15);
    border-top: 2px solid var(--yellow);
    border-radius: 3px; overflow: hidden; position: relative;
  }
  .wf-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--dark));
    pointer-events: none; z-index: 5;
  }
  .wf-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .wf-head h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: 1.5px;
  }
  .wf-head p { font-size: 11px; color: var(--gray); }
  .wf-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; background: rgba(255,208,0,0.1);
    color: var(--yellow); border: 1px solid rgba(255,208,0,0.3);
    padding: 2px 8px; border-radius: 2px;
  }
  .wf-body { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px; }
  .wf-col-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px;
  }
  .wf-col-lbl.new { color: var(--yellow); }
  .wf-col-lbl.old { color: #ff6b6b; }
  .wf-frame {
    background: rgba(0,0,0,0.3); border: 1px dashed rgba(255,255,255,0.08);
    border-radius: 3px; padding: 10px;
  }
  .wf-frame.old { border-color: rgba(255,77,77,0.15); opacity: 0.5; }
  .wb { background: rgba(255,255,255,0.06); border-radius: 2px; margin-bottom: 5px; }
  .wb.xs { height: 7px; width: 30%; }
  .wb.sm { height: 12px; width: 75%; }
  .wb.md { height: 24px; }
  .wb.lg { height: 40px; }
  .wb.btn { height: 18px; width: 38%; background: rgba(255,208,0,0.2); border: 1px solid rgba(255,208,0,0.4); }
  .wb.acc { background: rgba(255,208,0,0.08); border: 1px solid rgba(255,208,0,0.15); height: 16px; }
  .wb-old { background: rgba(255,77,77,0.08); border-radius: 2px; margin-bottom: 5px; }
  .wb-old.sm { height: 12px; width: 70%; }
  .wb-old.md { height: 24px; }
  .wb-old.lg { height: 40px; }
  .wb-old.btn { height: 18px; width: 38%; }
  .wf-note { font-size: 10px; font-style: italic; margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.06); }
  .wf-note.new { color: var(--yellow); }
  .wf-note.old { color: #ff6b6b; }
  .wf-g { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; margin-bottom: 5px; }
  .wf-gc { background: rgba(255,255,255,0.06); border-radius: 2px; height: 32px; }
  .wf-cal {
    background: rgba(255,208,0,0.05); border: 1px dashed rgba(255,208,0,0.2);
    border-radius: 2px; height: 28px; margin-bottom: 5px;
    display: flex; align-items: center; justify-content: center;
  }
  .wf-cal span { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; color: rgba(255,208,0,0.4); letter-spacing: 1px; text-transform: uppercase; }
  .wf-lock {
    padding: 12px 14px; border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center; background: rgba(0,0,0,0.2);
    position: relative; z-index: 10;
  }
  .wf-lock p { font-size: 12px; color: var(--gray); }
  .wf-lock strong { color: var(--yellow); font-family: 'Barlow Condensed', sans-serif; }
  /* results CTA */
  .results-cta {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,208,0,0.2);
    border-top: 2px solid var(--yellow);
    border-radius: 3px; padding: 36px 24px;
    text-align: center; position: relative; overflow: hidden;
  }
  .results-cta::before {
    content: ''; position: absolute;
    top: -40px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 120px;
    background: radial-gradient(ellipse, rgba(255,208,0,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .results-cta .rc-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
  }
  .results-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 2px;
    color: var(--white); margin-bottom: 8px;
  }
  .results-cta p { font-size: 14px; color: var(--gray); max-width: 380px; margin: 0 auto 20px; line-height: 1.6; }
  .btn-book {
    background: var(--yellow); color: var(--dark); border: none;
    padding: 14px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.2s; display: inline-block; margin-bottom: 10px;
    text-decoration: none;
  }
  .btn-book:hover { background: var(--orange); color: var(--white); }
  .btn-book-sub { font-size: 11px; color: rgba(255,255,255,0.2); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.5px; }

  @media (max-width: 768px) {
    .results-cols { grid-template-columns: 1fr; }
    .wf-body { grid-template-columns: 1fr; }
    .scanner-loading { padding: 60px 24px; }
    .scanner-results { padding: 60px 24px; }
  }


  /* ── Testimonials ────────────────────────────── */
  .testimonials-sec { padding: 120px 60px; background: var(--dark); }
  .testi-grid-main { max-width: 1100px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card-main { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
  .testi-stars-main { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
  .testi-quote-main { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.75; flex: 1; font-style: italic; }
  .testi-author-main { display: flex; align-items: center; gap: 12px; }
  .testi-avatar-main { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: var(--dark); font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .testi-name-main { font-weight: 700; font-size: 0.88rem; color: var(--white); }
  .testi-biz-main { font-size: 0.75rem; color: var(--gray); }
  @media (max-width: 768px) { .testi-grid-main { grid-template-columns: 1fr; } .testimonials-sec { padding: 80px 24px; } }

  /* ── Stats Bar ───────────────────────────────── */
  .stats-bar { background: var(--yellow); padding: 60px 24px; }
  .stats-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
  .stat-item { text-align: center; flex: 1; min-width: 120px; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--dark); line-height: 1; }
  .stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; opacity: 0.7; }
  .stat-divider { width: 1px; height: 60px; background: rgba(15,27,45,0.15); }
  @media (max-width: 600px) { .stat-divider { display: none; } .stats-inner { justify-content: center; } }

  /* ── FAQ ─────────────────────────────────────── */
  .faq { background: #050d17; padding: 120px 60px; }
  .faq .section-header { text-align: center; }
  .faq .section-tag { justify-content: center; }
  .faq .section-tag::before { display: none; }
  .faq-list { max-width: 720px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 8px; }
  .faq-item { border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.02); }
  .faq-item:hover { border-color: rgba(255,208,0,0.2); }
  .faq-q { padding: 22px 28px; font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; }
  .faq-arrow { font-size: 1.5rem; color: var(--yellow); transition: transform 0.25s; flex-shrink: 0; }
  .faq-item.open .faq-arrow { transform: rotate(45deg); }
  .faq-a { display: none; padding: 0 28px 22px; font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.75; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; }
  .faq-item.open .faq-a { display: block; }
  @media (max-width: 768px) { .faq { padding: 80px 24px; } .faq-q { font-size: 0.95rem; padding: 18px 20px; } }

/* ===== SERVICES PAGE — HERO ===== */
.svc-hero {
  padding: 160px 60px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.svc-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.svc-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.svc-hero-title span { color: var(--yellow); }
.svc-hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .svc-hero { padding: 120px 24px 60px; }
}

/* ===== SERVICES PAGE — BUNDLE CARDS ===== */
.bundles {
  padding: 0 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.bundle-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  position: relative;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.bundle-card:hover {
  border-color: rgba(255,208,0,0.3);
  transform: scale(1.03);
}
.bundle-card.featured:hover {
  transform: scale(1.07);
}
.bundle-card.featured {
  border-left: 3px solid var(--yellow);
  box-shadow: 0 0 40px rgba(255,208,0,0.08);
  transform: scale(1.04);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.bundle-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.bundle-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.bundle-card.featured .bundle-name { color: var(--yellow); }
.bundle-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.bundle-recurring {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}
.bundle-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.bundle-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.bundle-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bundle-features li.included { color: var(--white); }
.bundle-features li.included::before {
  content: '\2713';
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
}
.bundle-features li.excluded { color: rgba(138,155,176,0.3); }
.bundle-features li.excluded::before {
  content: '\2014';
  color: rgba(138,155,176,0.3);
}
.bundle-select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,208,0,0.3);
  color: var(--yellow);
  padding: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.2s;
}
.bundle-select:hover {
  background: var(--yellow);
  color: var(--dark);
}
.bundle-card.featured .bundle-select {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.bundle-card.featured .bundle-select:hover {
  background: var(--orange);
  color: var(--white);
}
@media (max-width: 960px) {
  .bundles { padding: 0 24px 60px; }
  .bundles-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .bundle-card.featured { transform: none; }
}

/* ===== SERVICES PAGE — DIVIDER ===== */
.svc-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
}
.svc-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,208,0,0.15);
}
.svc-divider-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
}

/* ===== SERVICES PAGE — BUILD YOUR OWN ===== */
.byo {
  padding: 40px 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.byo-header { margin-bottom: 48px; }
.byo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.byo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.byo-card:hover {
  border-color: rgba(255,208,0,0.3);
}
.byo-card.selected {
  border: 2px solid var(--yellow);
  background: rgba(255,208,0,0.04);
}
.byo-check {
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}
.byo-card.selected .byo-check { opacity: 1; }
.byo-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}
.byo-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.byo-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}
.byo-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--yellow);
}
.byo-price span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}
.byo-card:not(.selected) .byo-price { color: var(--gray); }
.byo-qty {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.byo-card.selected .byo-qty { display: flex; }
.qty-btn {
  width: 28px;
  height: 28px;
  background: rgba(255,208,0,0.1);
  border: 1px solid rgba(255,208,0,0.3);
  color: var(--yellow);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: rgba(255,208,0,0.2); }
.qty-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  min-width: 20px;
  text-align: center;
}
.byo-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,15,27,0.95);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--yellow);
  padding: 14px 60px;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.byo-sticky.visible { transform: translateY(0); }
.byo-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.byo-sticky-total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.byo-sticky-total span { color: var(--yellow); font-size: 18px; }
.byo-sticky-btn {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 12px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}
.byo-sticky-btn:hover { background: var(--orange); color: var(--white); }
@media (max-width: 960px) {
  .svc-divider { padding: 30px 24px; }
  .byo { padding: 40px 24px 120px; }
  .byo-grid { grid-template-columns: 1fr; }
  .byo-sticky { padding: 14px 24px; }
}

/* ===== SERVICES PAGE — SUMMARY ===== */
.summary {
  padding: 80px 60px;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,208,0,0.1);
}
.summary-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.summary-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.summary-items {
  margin-bottom: 24px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.summary-item-name { color: var(--white); }
.summary-item-price { color: var(--yellow); font-weight: 600; }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
}
.summary-total span:first-child { color: var(--white); }
.summary-total span:last-child { color: var(--yellow); }
.summary-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,208,0,0.2);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.summary-input:focus { border-color: var(--yellow); }
.summary-input::placeholder { color: var(--gray); }
.summary-textarea {
  min-height: 80px;
  resize: vertical;
}
.summary-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.2s;
  margin-top: 4px;
}
.summary-submit:hover { background: var(--orange); color: var(--white); }
@media (max-width: 960px) {
  .summary { padding: 60px 24px; }
  .summary-inner { grid-template-columns: 1fr; gap: 40px; }
}

