    /* ===== DESIGN TOKENS ===== */
    :root {
      --orange: #FF6600;
      --orange-dark: #cc5200;
      --orange-light: rgba(255, 102, 0, 0.08);
      --orange-glow: rgba(255, 102, 0, 0.15);
      --black: #0f0f0f;
      --dark: #1a1a1a;
      --mid: #444;
      --muted: #777;
      --light: #f5f5f3;
      --white: #ffffff;
      --card-bg: #fafaf8;
      --border: rgba(0,0,0,0.07);
      --radius: 12px;
      --radius-lg: 20px;
      --radius-xl: 32px;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow: 0 8px 30px rgba(0,0,0,0.09);
      --shadow-orange: 0 8px 30px rgba(255,102,0,0.18);
      --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --font-display: 'Fraunces', serif;
      --nav-h: 72px;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section-sm { padding: 64px 0; }

    .chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--orange-light); color: var(--orange-dark);
      border: 1px solid rgba(255,102,0,0.2);
      border-radius: 100px; padding: 5px 14px;
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .section-heading { margin-bottom: 56px; }
    .section-heading.center { text-align: center; }
    .section-heading h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900; line-height: 1.15; color: var(--black);
      margin-top: 12px;
    }
    .section-heading p {
      font-size: 1.05rem; color: var(--muted); margin-top: 14px;
      max-width: 600px;
    }
    .section-heading.center p { margin-left: auto; margin-right: auto; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: var(--radius);
      font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
      cursor: pointer; border: 2px solid transparent;
      transition: all var(--transition); white-space: nowrap;
    }
    .btn-primary {
      background: var(--orange); color: var(--white);
      border-color: var(--orange);
    }
    .btn-primary:hover {
      background: var(--orange-dark); border-color: var(--orange-dark);
      box-shadow: var(--shadow-orange); transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent; color: var(--orange);
      border-color: var(--orange);
    }
    .btn-outline:hover {
      background: var(--orange); color: var(--white);
      transform: translateY(-2px);
    }
    .btn-white {
      background: var(--white); color: var(--orange);
      border-color: var(--white);
    }
    .btn-white:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.18); transform: translateY(-2px);
    }
    .btn-white-outline {
      background: transparent; color: var(--white);
      border-color: rgba(255,255,255,0.7);
    }
    .btn-white-outline:hover {
      background: rgba(255,255,255,0.12); transform: translateY(-2px);
    }

    /* ===== NAV ===== */
    .nav {
      position: sticky; top: 0; z-index: 900;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      height: var(--nav-h);
      display: flex; align-items: center;
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
    }
    .nav-logo img { height: 42px; }
    .nav-links {
      display: flex; align-items: center; gap: 32px;
    }
    .nav-links a {
      font-weight: 600; font-size: 0.92rem; color: var(--dark);
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-hamburger {
      display: none; background: none; border: none;
      font-size: 1.4rem; color: var(--dark); cursor: pointer;
    }

    /* Mobile Nav */
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 1000;
      background: var(--white); padding: 24px;
      flex-direction: column; gap: 0;
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav-top {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 32px;
    }
    .mobile-nav-top img { height: 36px; }
    .mobile-nav-close {
      background: none; border: none; font-size: 1.5rem;
      color: var(--orange); cursor: pointer;
    }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
    .mobile-nav-links a {
      padding: 16px 0; border-bottom: 1px solid var(--border);
      font-weight: 700; font-size: 1.05rem; color: var(--dark);
    }
    .mobile-nav-links a:hover { color: var(--orange); }
    .mobile-nav-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

    /* ===== HERO ===== */
    .hero {
      padding: 80px 0 64px;
      background: var(--white);
      position: relative; overflow: hidden;
    }
    .hero-blob {
      position: absolute; border-radius: 50%;
      filter: blur(70px); opacity: 0.12; pointer-events: none;
    }
    .hero-blob-1 {
      width: 500px; height: 500px;
      background: var(--orange);
      top: -100px; right: -150px;
    }
    .hero-blob-2 {
      width: 350px; height: 350px;
      background: var(--orange);
      bottom: -80px; left: -100px;
    }
    .hero-inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--orange-light); color: var(--orange-dark);
      border: 1px solid rgba(255,102,0,0.25);
      border-radius: 100px; padding: 6px 16px;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-tag span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
    .hero h1 {
      font-family: var(--font-body);
      font-size: clamp(2.5rem, 5.5vw, 4rem);
      font-weight: 900; line-height: 1.1;
      color: var(--black); margin-bottom: 20px;
    }
    .hero h1 .highlight { color: var(--orange); font-family: inherit; font-style: normal; }
    .hero-sub {
      font-size: 1.1rem; color: var(--mid);
      line-height: 1.7; margin-bottom: 32px;
      max-width: 480px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-trust {
      display: flex; align-items: center; gap: 20px;
      margin-top: 28px; flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 0.83rem; color: var(--muted); font-weight: 600;
    }
    .hero-trust-item i { color: var(--orange); font-size: 0.9rem; }

    .hero-visual {
      position: relative; display: flex;
      justify-content: center; align-items: center;
    }
    .hero-card {
      background: var(--white); border-radius: var(--radius-xl);
      padding: 8px; box-shadow: var(--shadow);
      border: 1px solid var(--border);
      position: relative; overflow: hidden; width: 100%;
    }
    .hero-card img {
      border-radius: calc(var(--radius-xl) - 6px);
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
    }
    .hero-badge {
      position: absolute; bottom: 28px; left: 50%;
      transform: translateX(-50%);
      background: var(--white); border-radius: var(--radius);
      padding: 12px 20px; box-shadow: var(--shadow);
      display: flex; align-items: center; gap: 10px;
      white-space: nowrap;
    }
    .hero-badge-icon {
      width: 36px; height: 36px; background: var(--orange);
      border-radius: 8px; display: flex; align-items: center;
      justify-content: center; color: var(--white); font-size: 1rem;
      flex-shrink: 0;
    }
    .hero-badge-text { font-size: 0.78rem; color: var(--muted); }
    .hero-badge-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
    .hero-stat-cards {
      position: absolute; top: 24px; right: -20px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .hero-stat {
      background: var(--white); border-radius: var(--radius);
      padding: 10px 16px; box-shadow: var(--shadow);
      border: 1px solid var(--border); text-align: center;
    }
    .hero-stat-num {
      font-family: var(--font-display); font-size: 1.4rem;
      font-weight: 900; color: var(--orange);
    }
    .hero-stat-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

    /* ===== TRUSTED / LOGOS ===== */
    .trusted-section {
      background: var(--light); padding: 40px 0; overflow: hidden;
    }
    .trusted-label {
      text-align: center; font-weight: 700; font-size: 0.78rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 24px;
    }
    .logos-track {
      display: flex; gap: 56px; align-items: center;
      animation: scrollLogos 22s linear infinite;
      width: max-content;
    }
    .logos-track img {
      height: 36px; opacity: 0.55; filter: grayscale(100%);
      transition: opacity 0.3s, filter 0.3s;
    }
    .logos-track img:hover { opacity: 0.9; filter: none; }
    .logos-overflow {
      overflow: hidden; position: relative;
    }
    .logos-overflow::before, .logos-overflow::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
    }
    .logos-overflow::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
    .logos-overflow::after { right: 0; background: linear-gradient(to left, var(--light), transparent); }
    @keyframes scrollLogos {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== QUOTE FORM ===== */
    .quote-section {
      background: var(--orange);
      padding: 80px 0;
      position: relative; overflow: hidden;
    }
    .quote-blob {
      position: absolute; width: 400px; height: 400px;
      border-radius: 50%; background: rgba(255,255,255,0.07);
      pointer-events: none;
    }
    .quote-blob-1 { top: -150px; left: -100px; }
    .quote-blob-2 { bottom: -200px; right: -100px; }
    .quote-inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .quote-text h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.2;
    }
    .quote-text p { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.7; }
    .quote-perks { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
    .quote-perk {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.92rem;
    }
    .quote-perk i { color: var(--white); font-size: 0.9rem; }

    .quote-form-box {
      background: var(--white); border-radius: var(--radius-xl);
      padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    .quote-form-box h3 {
      font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
      color: var(--black); margin-bottom: 24px;
    }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-size: 0.83rem; font-weight: 700;
      color: var(--dark); margin-bottom: 7px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 13px 16px;
      border: 1.5px solid rgba(0,0,0,0.12); border-radius: var(--radius);
      font-family: var(--font-body); font-size: 0.95rem; color: var(--dark);
      background: var(--white); outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%; padding: 15px; background: var(--orange); color: var(--white);
      border: none; border-radius: var(--radius); font-family: var(--font-body);
      font-size: 1rem; font-weight: 700; cursor: pointer;
      transition: all var(--transition); display: flex; align-items: center;
      justify-content: center; gap: 8px;
    }
    .form-submit:hover {
      background: var(--orange-dark);
      box-shadow: var(--shadow-orange); transform: translateY(-2px);
    }

    /* ===== WHO IT'S FOR ===== */
    .for-section { background: var(--white); }
    .for-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; align-items: center;
    }
    .for-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
    .for-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; background: var(--card-bg);
      border-radius: var(--radius); border: 1px solid var(--border);
      transition: all var(--transition);
    }
    .for-item:hover {
      border-color: rgba(255,102,0,0.25);
      box-shadow: var(--shadow-sm); transform: translateX(4px);
    }
    .for-icon {
      width: 44px; height: 44px; background: var(--orange-light);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; color: var(--orange); font-size: 1.1rem;
      flex-shrink: 0;
    }
    .for-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
    .for-item p { font-size: 0.85rem; color: var(--muted); }
    .for-closing {
      margin-top: 28px; padding: 20px; background: var(--orange-light);
      border-radius: var(--radius); border-left: 3px solid var(--orange);
      font-size: 0.92rem; color: var(--dark); font-weight: 600;
    }
    .for-image {
      border-radius: var(--radius-xl); overflow: hidden;
      box-shadow: var(--shadow);
    }
    .for-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

    /* ===== RESULTS / BENEFITS ===== */
    .results-section { background: var(--light); }
    .results-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
      margin-top: 0;
    }
    .result-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 32px 24px; border: 1px solid var(--border);
      transition: all var(--transition);
    }
    .result-card:hover {
      border-color: rgba(255,102,0,0.3);
      box-shadow: var(--shadow-orange); transform: translateY(-4px);
    }
    .result-icon {
      width: 52px; height: 52px; background: var(--orange);
      border-radius: 12px; display: flex; align-items: center;
      justify-content: center; color: var(--white); font-size: 1.3rem;
      margin-bottom: 20px;
    }
    .result-card h3 {
      font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px;
    }
    .result-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* ===== SERVICES ===== */
    .services-section { background: var(--white); }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .service-card {
      background: var(--card-bg); border-radius: var(--radius-lg);
      padding: 32px; border: 1px solid var(--border);
      transition: all var(--transition); position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--orange);
      transform: scaleX(0); transform-origin: left;
      transition: transform var(--transition);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover {
      border-color: rgba(255,102,0,0.2);
      box-shadow: var(--shadow); transform: translateY(-4px);
    }
    .service-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--orange-light); display: flex;
      align-items: center; justify-content: center;
      color: var(--orange); font-size: 1.3rem; margin-bottom: 20px;
    }
    .service-card h3 {
      font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px;
    }
    .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
    .service-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 16px; font-size: 0.85rem; font-weight: 700; color: var(--orange);
      transition: gap var(--transition);
    }
    .service-card:hover .service-link { gap: 10px; }

    /* ===== PRICING ===== */
    .pricing-section { background: var(--light); }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .pricing-card {
      background: var(--white); border-radius: var(--radius-xl);
      border: 1.5px solid var(--border); padding: 36px 28px;
      transition: all var(--transition); display: flex;
      flex-direction: column; position: relative; overflow: hidden;
    }
    .pricing-card.featured {
      border-color: var(--orange);
      box-shadow: var(--shadow-orange);
    }
    .pricing-badge-tag {
      position: absolute; top: 20px; right: -28px;
      background: var(--orange); color: var(--white);
      font-size: 0.7rem; font-weight: 700; padding: 5px 40px;
      transform: rotate(45deg); letter-spacing: 0.05em;
    }
    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }
    .pricing-card.featured:hover { box-shadow: var(--shadow-orange); }
    .pricing-icon {
      width: 52px; height: 52px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 20px;
      background: var(--orange-light); color: var(--orange);
    }
    .pricing-card.featured .pricing-icon {
      background: var(--orange); color: var(--white);
    }
    .pricing-name {
      font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px;
    }
    .pricing-desc {
      font-size: 0.85rem; color: var(--muted); margin-bottom: 24px;
      line-height: 1.6;
    }
    .pricing-price {
      font-family: var(--font-display);
      font-size: 3rem; font-weight: 900; color: var(--orange);
      line-height: 1; margin-bottom: 6px;
    }
    .pricing-price sup { font-size: 1.2rem; vertical-align: super; }
    .pricing-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 28px; }
    .pricing-divider {
      height: 1px; background: var(--border); margin-bottom: 24px;
    }
    .pricing-features { flex: 1; }
    .pricing-features li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 9px 0; border-bottom: 1px solid var(--border);
      font-size: 0.88rem; color: var(--dark);
    }
    .pricing-features li:last-child { border-bottom: none; }
    .pricing-features li i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
    .pricing-features li.unavail { color: var(--muted); text-decoration: line-through; }
    .pricing-features li.unavail i { color: #ccc; }
    .pricing-footer { margin-top: 28px; }
    .pricing-badges-row {
      display: flex; justify-content: center; gap: 16px;
      margin-top: 40px; flex-wrap: wrap;
    }
    .pricing-badge-item {
      display: flex; align-items: center; gap: 8px;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 100px; padding: 8px 18px;
      font-size: 0.82rem; font-weight: 600; color: var(--dark);
    }
    .pricing-badge-item i { color: var(--orange); }

    /* ===== WHAT YOU GET ===== */
    .included-section { background: var(--white); }
    .included-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .included-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 22px; background: var(--card-bg);
      border-radius: var(--radius); border: 1px solid var(--border);
      transition: all var(--transition);
    }
    .included-item:hover {
      border-color: rgba(255,102,0,0.2);
      box-shadow: var(--shadow-sm);
    }
    .included-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--orange-light); border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
    }
    .included-item h4 { font-size: 0.93rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .included-item p { font-size: 0.82rem; color: var(--muted); }

    /* ===== PORTFOLIO ===== */
    .portfolio-section { background: var(--light); }
    .portfolio-wrapper { position: relative; }
    .portfolio-viewport {
      overflow: hidden;
      margin-bottom: 32px;
      scroll-behavior: smooth;
    }
    .portfolio-carousel {
      display: flex; gap: 24px;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
    }
    .portfolio-item {
      flex: 0 0 calc(33.333% - 16px);
      min-width: calc(33.333% - 16px);
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow); position: relative;
      display: flex; flex-direction: column;
      background: var(--white);
    }
    .portfolio-img-wrap { position: relative; overflow: hidden; }
    .portfolio-item img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      transition: transform 0.4s ease; display: block;
    }
    .portfolio-item:hover img { transform: scale(1.04); }
    .portfolio-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
      display: flex; align-items: flex-end; padding: 20px;
      opacity: 0; transition: opacity var(--transition);
    }
    .portfolio-item:hover .portfolio-overlay { opacity: 1; }
    .portfolio-overlay a {
      background: var(--white); color: var(--orange);
      padding: 8px 16px; border-radius: 8px;
      font-size: 0.82rem; font-weight: 700;
    }
    .portfolio-nav {
      display: flex; justify-content: center; gap: 14px;
    }
    .portfolio-btn {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--orange); color: var(--white); border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1rem; transition: all var(--transition);
      box-shadow: var(--shadow-orange);
    }
    .portfolio-btn:hover {
      background: var(--orange-dark); transform: scale(1.08);
    }
    .portfolio-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

    .portfolio-label {
      background: var(--white); padding: 14px 16px;
      border-top: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 3px;
    }
    .portfolio-label-title {
      font-size: 0.92rem; font-weight: 700; color: var(--dark);
    }
    .portfolio-label-url {
      font-size: 0.78rem; color: var(--orange); font-weight: 600;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { background: var(--white); }
    .testimonials-scroll-wrapper { position: relative; overflow: hidden; }
    .testimonials-track {
      display: flex; gap: 24px;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .testimonial-card {
      background: var(--card-bg); border-radius: var(--radius-lg);
      padding: 32px; border: 1px solid var(--border);
      transition: all var(--transition);
      flex: 0 0 calc(33.333% - 16px);
      min-width: calc(33.333% - 16px);
    }
    .testimonial-card:hover {
      border-color: rgba(255,102,0,0.2); box-shadow: var(--shadow);
    }
    .testimonial-stars {
      display: flex; gap: 3px; margin-bottom: 16px;
    }
    .testimonial-stars i { color: var(--orange); font-size: 0.9rem; }
    .testimonial-text {
      font-size: 0.92rem; color: var(--mid); line-height: 1.7;
      margin-bottom: 20px;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 12px;
    }
    .testimonial-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--orange); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1rem; flex-shrink: 0;
    }
    .testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
    .testimonial-role { font-size: 0.78rem; color: var(--muted); }
    .testimonials-nav {
      display: flex; justify-content: center; gap: 14px; margin-top: 32px;
    }
    .testimonials-btn {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--orange); color: var(--white); border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1rem; transition: all var(--transition);
      box-shadow: var(--shadow-orange);
    }
    .testimonials-btn:hover { background: var(--orange-dark); transform: scale(1.08); }
    .testimonials-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
    .testimonials-dots {
      display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 16px;
    }
    .testimonials-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--border); border: none; cursor: pointer;
      transition: all var(--transition); padding: 0;
    }
    .testimonials-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

    /* ===== PROCESS ===== */
    .process-section { background: var(--light); }
    .process-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: start;
    }
    .process-image { border-radius: var(--radius-xl); overflow: hidden; }
    .process-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
    .process-steps { display: flex; flex-direction: column; gap: 0; }
    .process-step {
      padding: 24px; border-radius: var(--radius);
      cursor: pointer; border: 1.5px solid transparent;
      margin-bottom: 12px; transition: all var(--transition);
      background: var(--white);
    }
    .process-step.active {
      border-color: rgba(255,102,0,0.25);
      background: var(--white); box-shadow: var(--shadow-sm);
    }
    .process-step-header {
      display: flex; align-items: center; gap: 16px;
    }
    .process-step-num {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--orange-light); color: var(--orange);
      font-weight: 900; font-size: 0.88rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all var(--transition);
    }
    .process-step.active .process-step-num {
      background: var(--orange); color: var(--white);
    }
    .process-step-title {
      font-size: 0.98rem; font-weight: 700; color: var(--dark);
      flex: 1;
    }
    .process-step-toggle {
      color: var(--orange); font-size: 0.9rem;
      transition: transform var(--transition);
    }
    .process-step.active .process-step-toggle { transform: rotate(180deg); }
    .process-step-body {
      padding-top: 12px; padding-left: 52px;
      font-size: 0.88rem; color: var(--muted); line-height: 1.7;
      display: none;
    }
    .process-step.active .process-step-body { display: block; }

    /* ===== DELIVERY TIME ===== */
    .delivery-section {
      background: var(--dark); padding: 64px 0;
    }
    .delivery-inner {
      display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
    }
    .delivery-icon {
      width: 80px; height: 80px; border-radius: var(--radius-lg);
      background: var(--orange); display: flex; align-items: center;
      justify-content: center; color: var(--white); font-size: 2rem;
      flex-shrink: 0;
    }
    .delivery-text h2 {
      font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 900; color: var(--white); margin-bottom: 8px;
    }
    .delivery-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
    .delivery-stats {
      display: flex; gap: 32px; margin-left: auto; flex-wrap: wrap;
    }
    .delivery-stat { text-align: center; }
    .delivery-stat-num {
      font-family: var(--font-display); font-size: 2.4rem;
      font-weight: 900; color: var(--orange); display: block;
    }
    .delivery-stat-label { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

    /* ===== TRUST SIGNALS ===== */
    .trust-section { background: var(--white); }
    .trust-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .trust-item {
      text-align: center; padding: 32px 20px;
      border-radius: var(--radius-lg); border: 1px solid var(--border);
      background: var(--card-bg); transition: all var(--transition);
    }
    .trust-item:hover { border-color: rgba(255,102,0,0.2); box-shadow: var(--shadow); }
    .trust-num {
      font-family: var(--font-display); font-size: 2.5rem;
      font-weight: 900; color: var(--orange); display: block;
      margin-bottom: 8px;
    }
    .trust-label { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

    /* ===== ABOUT US ===== */
    .about-section { background: var(--white); }
    .about-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .about-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
    .about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0;
    }
    .about-stat-box {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 20px; text-align: center;
      transition: all var(--transition);
    }
    .about-stat-box:hover { border-color: rgba(255,102,0,0.25); box-shadow: var(--shadow-sm); }
    .about-stat-num {
      font-family: var(--font-display); font-size: 2rem; font-weight: 900;
      color: var(--orange); display: block; margin-bottom: 4px;
    }
    .about-stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
    .about-values { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
    .about-value {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 18px; background: var(--card-bg);
      border-radius: var(--radius); border: 1px solid var(--border);
      font-size: 0.9rem; font-weight: 600; color: var(--dark);
      transition: all var(--transition);
    }
    .about-value:hover { border-color: rgba(255,102,0,0.25); transform: translateX(4px); }
    .about-value i { color: var(--orange); width: 16px; flex-shrink: 0; }

    /* ===== FAQS ===== */
    .faq-section { background: var(--light); }
    .faq-layout {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
    }
    .faq-sidebar-box {
      background: var(--white); border-radius: var(--radius-xl);
      padding: 36px; border: 1px solid var(--border);
      position: sticky; top: calc(var(--nav-h) + 24px);
      height: fit-content;
    }
    .faq-sidebar-box h3 {
      font-family: var(--font-display); font-size: 1.4rem;
      font-weight: 900; color: var(--dark); margin-bottom: 12px;
    }
    .faq-sidebar-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
    .faq-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .faq-contact-row {
      display: flex; align-items: center; gap: 12px;
      padding: 12px; background: var(--card-bg);
      border-radius: var(--radius); border: 1px solid var(--border);
    }
    .faq-contact-ic {
      width: 36px; height: 36px; background: var(--orange);
      border-radius: 8px; display: flex; align-items: center;
      justify-content: center; color: var(--white); flex-shrink: 0;
    }
    .faq-contact-row span { font-size: 0.85rem; font-weight: 600; color: var(--dark); }

    .faq-accordion { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white); border-radius: var(--radius);
      border: 1.5px solid var(--border); overflow: hidden;
      transition: all var(--transition);
    }
    .faq-item.open { border-color: rgba(255,102,0,0.3); box-shadow: var(--shadow-sm); }
    .faq-q {
      padding: 20px 24px; display: flex; align-items: center;
      justify-content: space-between; cursor: pointer;
      font-size: 0.95rem; font-weight: 700; color: var(--dark);
      background: var(--white); border: none; width: 100%;
      text-align: left; font-family: var(--font-body);
    }
    .faq-q i {
      color: var(--orange); transition: transform var(--transition); flex-shrink: 0;
    }
    .faq-item.open .faq-q i { transform: rotate(180deg); }
    .faq-a {
      padding: 0 24px; max-height: 0; overflow: hidden;
      font-size: 0.9rem; color: var(--muted); line-height: 1.7;
      transition: all var(--transition);
    }
    .faq-item.open .faq-a { padding: 0 24px 20px; max-height: 400px; }

    /* ===== ADD-ONS ===== */
    .addons-section { background: var(--light); }
    .addons-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    .addon-card {
      background: var(--white); border-radius: var(--radius);
      padding: 28px 24px; border: 1px solid var(--border);
      text-align: center; transition: all var(--transition);
    }
    .addon-card:hover {
      border-color: rgba(255,102,0,0.25); box-shadow: var(--shadow);
      transform: translateY(-3px);
    }
    .addon-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--orange-light); color: var(--orange);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; margin: 0 auto 16px;
    }
    .addon-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .addon-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
    .addon-price {
      display: inline-block; margin-top: 12px;
      font-size: 0.88rem; font-weight: 700; color: var(--orange);
    }

    /* ===== FINAL CTA ===== */
    .final-cta {
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    }
    .final-cta-blob {
      position: absolute; border-radius: 50%;
      background: rgba(255,255,255,0.07); pointer-events: none;
    }
    .final-cta-blob-1 { width: 300px; height: 300px; top: -100px; left: -80px; }
    .final-cta-blob-2 { width: 250px; height: 250px; bottom: -80px; right: 5%; }
    .final-cta-inner { position: relative; z-index: 1; }
    .final-cta h2 {
      font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.15;
    }
    .final-cta p {
      font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px;
      max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
    }
    .final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ===== CONTACT ===== */
    .contact-section { background: var(--white); }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    }
    .contact-info h3 {
      font-family: var(--font-display); font-size: 1.6rem;
      font-weight: 900; color: var(--dark); margin-bottom: 14px;
    }
    .contact-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; }
    .contact-row {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px; background: var(--card-bg);
      border-radius: var(--radius); border: 1px solid var(--border);
      transition: all var(--transition);
    }
    .contact-row:hover { border-color: rgba(255,102,0,0.2); transform: translateX(4px); }
    .contact-row-icon {
      width: 44px; height: 44px; background: var(--orange);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; color: var(--white); flex-shrink: 0; font-size: 1rem;
    }
    .contact-row-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
    .contact-row-val { font-size: 0.95rem; font-weight: 700; color: var(--dark); }

    .contact-form-box {
      background: var(--card-bg); border-radius: var(--radius-xl);
      padding: 40px; border: 1px solid var(--border);
    }
    .contact-form-box h3 {
      font-family: var(--font-display); font-size: 1.4rem;
      font-weight: 900; color: var(--dark); margin-bottom: 24px;
    }
    .contact-direct-card {
      min-height: 100%; display: flex; flex-direction: column;
      justify-content: center; align-items: flex-start;
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-xl); padding: 42px;
      box-shadow: var(--shadow-sm);
    }
    .contact-direct-card > i {
      width: 56px; height: 56px; display: grid; place-items: center;
      border-radius: 14px; background: var(--orange-light);
      color: var(--orange); font-size: 1.65rem; margin-bottom: 20px;
    }
    .contact-direct-card h3 { font-family: var(--font-body); font-style: normal; margin-bottom: 10px; }
    .contact-direct-card p { color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
    .compact-contact-form { padding: 30px; }
    .compact-contact-form > h3 { font-family: var(--font-body); font-style: normal; margin-bottom: 6px; }
    .compact-contact-form > p { color: var(--muted); font-size: .86rem; margin-bottom: 20px; }
    .compact-contact-form .form-group { margin-bottom: 13px; }
    .compact-contact-form .form-group textarea { min-height: 76px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .pricing-page-hero { padding: 86px 0 72px; text-align: center; background: linear-gradient(135deg,#fff8f3,#fff); }
    .pricing-page-hero .pricing-kicker { display: block; color: var(--orange); font-size: .76rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 14px; }
    .pricing-page-hero h1 { max-width: 850px; margin: 0 auto 18px; font-family: var(--font-body); font-size: clamp(2.3rem,5vw,4rem); line-height: 1.12; font-style: normal; }
    .pricing-page-hero h1 span { color: var(--orange); }
    .pricing-page-hero p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
    .pricing-page .pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }
    .pricing-page .pricing-card { display: flex; flex-direction: column; }
    .pricing-note { margin-top: 42px; display: flex; align-items: center; gap: 18px; padding: 24px 28px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-sm); }
    .pricing-note > i { color: var(--orange); font-size: 1.5rem; }
    .pricing-note div { flex: 1; }
    .pricing-note strong { display: block; margin-bottom: 4px; }
    .pricing-note p { margin: 0; color: var(--muted); font-size: .86rem; }
    @media(max-width:700px){.pricing-page-hero{padding:60px 0 50px}.pricing-note{align-items:flex-start;flex-direction:column}.pricing-note .btn{width:100%;justify-content:center}}

    .inner-page-hero { padding: 82px 0 68px; text-align: center; background: linear-gradient(135deg,#fff8f3,#fff); }
    .inner-page-hero .container > span { display: block; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .13em; margin-bottom: 14px; }
    .inner-page-hero h1 { max-width: 820px; margin: 0 auto 18px; font-family: var(--font-body); font-size: clamp(2.3rem,5vw,4rem); line-height: 1.12; font-style: normal; }
    .inner-page-hero h1 em { color: var(--orange); font-family: inherit; font-style: normal; }
    .inner-page-hero p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
    .page-copy { font-size: .95rem; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
    .values-page { background: var(--light); }
    .values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
    .values-grid article { padding: 28px 23px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); }
    .values-grid article i { width: 48px; height: 48px; display: grid; place-items: center; background: var(--orange-light); color: var(--orange); border-radius: 12px; margin-bottom: 18px; }
    .values-grid article h3 { font-family: var(--font-body); font-size: 1rem; font-style: normal; margin-bottom: 9px; }
    .values-grid article p { color: var(--muted); font-size: .84rem; line-height: 1.65; }
    .page-cta { padding: 42px 0; background: var(--black); color: var(--white); }
    .page-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
    .page-cta h2 { font-family: var(--font-body); font-style: normal; margin-bottom: 7px; }
    .page-cta p { color: rgba(255,255,255,.65); margin: 0; }
    .form-intro { margin: -12px 0 22px; color: var(--muted); font-size: .85rem; line-height: 1.6; }
    @media(max-width:900px){.values-grid{grid-template-columns:1fr 1fr}}
    @media(max-width:600px){.inner-page-hero{padding:58px 0 48px}.values-grid{grid-template-columns:1fr}.page-cta .container{align-items:flex-start;flex-direction:column}.page-cta .btn{width:100%;justify-content:center}}

    .services-page { background: var(--light); }
    .service-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .service-detail-grid article { padding: 30px 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
    .service-detail-grid article > i { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px; color: var(--orange); background: var(--orange-light); font-size: 1.2rem; margin-bottom: 19px; }
    .service-detail-grid h2 { font-family: var(--font-body); font-size: 1.08rem; font-style: normal; margin-bottom: 10px; }
    .service-detail-grid p { color: var(--muted); font-size: .85rem; line-height: 1.65; margin-bottom: 16px; }
    .service-detail-grid ul { display: grid; gap: 8px; }
    .service-detail-grid li { color: var(--mid); font-size: .78rem; padding-left: 17px; position: relative; }
    .service-detail-grid li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
    .portfolio-page { background: var(--light); }
    .portfolio-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .portfolio-page-grid article { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
    .portfolio-page-image { aspect-ratio: 16/10; overflow: hidden; background: #eee; }
    .portfolio-page-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
    .portfolio-page-grid article:hover img { transform: scale(1.035); }
    .portfolio-page-grid article > div:last-child { padding: 17px 19px 20px; }
    .portfolio-page-grid span { color: var(--orange); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
    .portfolio-page-grid h2 { font-family: var(--font-body); font-style: normal; font-size: 1rem; margin-top: 5px; }
    .requirements-page { background: var(--light); }
    .requirements-hero { padding: 70px 0 55px; text-align: center; background: linear-gradient(135deg,#fff8f3,#fff); }
    .requirements-hero span { color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
    .requirements-hero h1 { max-width: 760px; margin: 12px auto 15px; font-family: var(--font-body); font-style: normal; font-size: clamp(2.2rem,5vw,3.7rem); }
    .requirements-hero p { max-width: 650px; margin: auto; color: var(--muted); line-height: 1.7; }
    .requirements-form { max-width: 850px; margin: auto; padding: 38px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
    .requirements-form-heading { margin-bottom: 25px; }
    .requirements-form-heading h2 { font-family: var(--font-body); font-style: normal; margin: 7px 0; }
    .requirements-form-heading p,.requirements-privacy { color: var(--muted); font-size: .8rem; }
    .requirements-privacy { text-align: center; margin: 14px 0 0; }
    .requirements-privacy i { color: var(--orange); margin-right: 5px; }
    @media(max-width:900px){.service-detail-grid,.portfolio-page-grid{grid-template-columns:1fr 1fr}}
    @media(max-width:600px){.service-detail-grid,.portfolio-page-grid{grid-template-columns:1fr}.requirements-form{padding:24px 18px}}

    .page-selector { margin: 20px 0; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); }
    .page-selector legend { padding: 0 8px; font-size: .84rem; font-weight: 700; }
    .page-selector > p { margin: 0 0 16px; color: var(--muted); font-size: .78rem; line-height: 1.55; }
    .page-choice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
    .page-choice-grid label { display: flex; align-items: center; gap: 8px; padding: 10px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; font-size: .75rem; }
    .page-choice-grid input { width: 16px; height: 16px; accent-color: var(--orange); }
    .other-pages { display: block; margin-top: 16px; font-size: .8rem; font-weight: 700; }
    .other-pages textarea { display: block; width: 100%; min-height: 75px; margin-top: 7px; padding: 11px; border: 1px solid var(--border); border-radius: 8px; font: inherit; }
    .field-help { display: block; color: var(--muted); font-size: .7rem; margin-top: 6px; }
    .upload-box { display: flex; align-items: flex-start; gap: 16px; margin: 20px 0; padding: 22px; border: 1px dashed #ffad76; border-radius: var(--radius); background: #fff8f3; }
    .upload-box > i { color: var(--orange); font-size: 1.5rem; margin-top: 3px; }
    .upload-box label { display: block; font-size: .83rem; font-weight: 700; }
    .upload-box p { margin: 6px 0 12px; color: var(--muted); font-size: .72rem; line-height: 1.55; }
    .upload-box input { max-width: 100%; font-size: .75rem; }
    @media(max-width:700px){.page-choice-grid{grid-template-columns:1fr 1fr}}
    @media(max-width:440px){.page-choice-grid{grid-template-columns:1fr}}

    /* ===== FOOTER ===== */
    .footer {
      background: var(--black); padding: 64px 0 32px;
    }
    .footer-inner {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand img { height: 38px; margin-bottom: 16px; }
    .footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
    .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
    .footer-socials a {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); font-size: 0.9rem;
      transition: all var(--transition);
    }
    .footer-socials a:hover { background: var(--orange); color: var(--white); }
    .footer-col h4 {
      font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--white); margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.88rem; color: rgba(255,255,255,0.5);
      transition: color var(--transition);
    }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a {
      font-size: 0.82rem; color: rgba(255,255,255,0.35);
      transition: color var(--transition);
    }
    .footer-bottom-links a:hover { color: var(--orange); }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 800;
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--orange); color: var(--white); border: none;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; cursor: pointer; box-shadow: var(--shadow-orange);
      transition: all var(--transition); opacity: 0; pointer-events: none;
    }
    .back-to-top.visible { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .results-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .addons-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
      .about-inner { grid-template-columns: 1fr; }
      .about-image { display: none; }
    }

    @media (max-width: 768px) {
      :root { --nav-h: 64px; }
      .section { padding: 72px 0; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: block; }

      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { display: none; }
      .hero { padding: 64px 0 48px; }
      .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
      .hero-btns { flex-direction: column; }
      .hero-btns .btn { justify-content: center; }

      .quote-inner { grid-template-columns: 1fr; gap: 40px; }
      .for-grid { grid-template-columns: 1fr; }
      .for-image { display: none; }
      .results-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .pricing-card.featured { transform: none; }
      .included-grid { grid-template-columns: 1fr; }
      .portfolio-item { flex: 0 0 calc(100% - 0px); min-width: calc(100% - 0px); }
      .testimonial-card { flex: 0 0 calc(100% - 0px); min-width: calc(100% - 0px); }
      .process-inner { grid-template-columns: 1fr; }
      .process-image { display: none; }
      .delivery-inner { flex-direction: column; text-align: center; }
      .delivery-stats { margin-left: 0; justify-content: center; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .faq-layout { grid-template-columns: 1fr; }
      .faq-sidebar-box { position: static; }
      .addons-grid { grid-template-columns: 1fr 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .form-row-2 { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .about-stats { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 480px) {
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .addons-grid { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: 1fr; }
      .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }
    }

.form-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.site-notification{position:fixed;top:calc(var(--nav-h) + 18px);right:22px;z-index:2000;width:min(420px,calc(100% - 32px));display:grid;grid-template-columns:42px 1fr 30px;gap:12px;align-items:start;padding:18px 18px 15px;background:var(--white);border:1px solid var(--border);border-left:5px solid #16a34a;border-radius:var(--radius);box-shadow:0 18px 55px rgba(0,0,0,.18);animation:notification-in .3s ease both;overflow:hidden}.site-notification.error{border-left-color:#dc2626}.site-notification-icon{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#dcfce7;color:#15803d;font-size:1.2rem}.site-notification.error .site-notification-icon{background:#fee2e2;color:#b91c1c}.site-notification strong{display:block;color:var(--black);font-size:.95rem;margin-bottom:2px}.site-notification p{color:var(--muted);font-size:.84rem;line-height:1.5;margin:0}.site-notification button{border:0;background:transparent;color:var(--muted);padding:5px;cursor:pointer}.site-notification-timer{position:absolute;left:0;bottom:0;height:3px;width:100%;background:#16a34a;transform-origin:left;animation:notification-timer 6s linear both}.site-notification.error .site-notification-timer{background:#dc2626}.site-notification.closing{animation:notification-out .25s ease both}@keyframes notification-in{from{opacity:0;transform:translateX(25px)}to{opacity:1;transform:none}}@keyframes notification-out{to{opacity:0;transform:translateX(25px)}}@keyframes notification-timer{to{transform:scaleX(0)}}@media(max-width:600px){.site-notification{top:calc(var(--nav-h) + 10px);right:16px}}
.page-shell{min-height:65vh;padding-top:var(--nav-h)}.page-hero{padding:72px 0;background:var(--black);color:var(--white)}.page-hero h1{font-family:var(--font-display);font-size:clamp(2rem,5vw,3.5rem);margin-top:14px}.page-hero p{color:rgba(255,255,255,.7)}.content-area{padding:64px 24px}.empty-state{text-align:center;border:1px dashed var(--border);padding:55px 20px;border-radius:var(--radius-lg)}.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.post-card{padding:26px;border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--white)}.post-card span,.post-card a{color:var(--orange);font-weight:700}.post-card h2{font-size:1.05rem;margin:10px 0}@media(max-width:800px){.blog-grid{grid-template-columns:1fr}}
