:root {
    --orange: #F07A00;
    --orange-dark: #C45F00;
    --orange-light: #FFB347;
    --orange-pale: #FFF4E6;
    --cream: #FFFBF5;
    --charcoal: #1A1208;
    --warm-gray: #6B5B45;
    --border: rgba(240,122,0,0.18);
    --shadow-orange: 0 8px 40px rgba(240,122,0,0.18);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 150px;
    background: rgba(255,251,245,0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }
  nav .logo a { display: inline-flex; align-items: center; }
  nav .logo img { height: 52px; }
  nav .nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(26,18,8,0.08);
    position: relative;
    z-index: 102;
  }
  nav .nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--charcoal);
    transition: transform 0.2s, opacity 0.2s;
  }
  nav .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  nav .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  nav .nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  nav .nav-links a:hover { color: var(--orange); }
  nav .nav-cta {
    background: var(--orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(240,122,0,0.28);
  }
  nav .nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(240,122,0,0.38); }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 120px 40px 60px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange-pale);
    border: 1px solid rgba(240,122,0,0.3);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--orange-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; animation: pulse 2s infinite; }

  h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 22px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  h1 em { font-style: normal; color: var(--orange); position: relative; font-weight: 800; }
  h1 em::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0; height: 4px;
    background: var(--orange-light);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineReveal 0.6s 0.8s ease forwards;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 500;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    background: var(--orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 32px rgba(240,122,0,0.32);
    transition: all 0.2s;
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.4s;
  }
  .btn-primary:hover::before { left: 100%; }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,122,0,0.4); }

  .btn-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--orange-dark);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    border-bottom: 1.5px solid var(--orange-light);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-secondary:hover { color: var(--orange); border-color: var(--orange); }

  .hero-trust {
    margin-top: 40px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.4s ease both;
  }
  .trust-avatars { display: flex; }
  .trust-avatars span {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--orange-light);
    border: 2px solid var(--cream);
    display: flex; align-items: center; justify-content: center;
    margin-left: -8px;
    color: var(--orange-dark);
  }
  .trust-avatars span:first-child { margin-left: 0; }
  .trust-avatars span svg {
    width: 18px;
    height: 18px;
    display: block;
  }
  .trust-text { font-size: 13.5px; color: var(--warm-gray); font-weight: 400; }
  .trust-text strong { color: var(--charcoal); font-weight: 600; }

  /* hero visual */
  .hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
    animation: fadeIn 0.8s 0.2s ease both;
  }
  .hero-visual .orb {
    position: absolute;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,179,71,0.25) 0%, rgba(240,122,0,0.08) 60%, transparent 80%);
    animation: breathe 6s ease-in-out infinite;
  }
  .hero-visual .main-box {
    position: relative; z-index: 2;
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.1), 0 4px 24px rgba(240,122,0,0.12);
    max-width: 420px; width: 100%;
    border: 1px solid var(--border);
  }
  .mockup-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 8px;
  }
  .mockup-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
  .package-showcase {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 22px;
  }
  .pkg-item {
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--warm-gray);
    cursor: default;
    transition: transform 0.2s;
    border: 1.5px solid transparent;
  }
  .pkg-item:hover { transform: scale(1.04); }
  .pkg-item .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
  }
  .pkg-item .icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .pkg-item.active { border-color: var(--orange); color: var(--orange-dark); background: var(--orange-pale); }
  .pkg-item:nth-child(1) { background: #FFF4E6; }
  .pkg-item:nth-child(2) { background: #FFF4E6; }
  .pkg-item:nth-child(3) { background: #FFF4E6; }

  .quote-strip {
    background: var(--orange-pale);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
  }
  .quote-strip .qs-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    flex-shrink: 0;
  }
  .quote-strip .qs-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .quote-strip .qs-text { font-size: 13px; line-height: 1.5; color: var(--warm-gray); }
  .quote-strip .qs-text strong { display: block; color: var(--charcoal); font-size: 14px; margin-bottom: 2px; }

  .floating-tag {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    font-size: 12px;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--border);
    white-space: nowrap;
    z-index: 10;
  }
  .floating-tag.top-right { top: 10%; right: -10%; animation: float1 4s ease-in-out infinite; }
  .floating-tag.bottom-left { bottom: 8%; left: -12%; animation: float2 5s ease-in-out infinite; }
  .floating-tag .tag-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }
  .floating-tag .tag-dot.orange { background: var(--orange); }

  /* ─── SOCIAL PROOF BAR ─── */
  .proof-bar {
    background: var(--charcoal);
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap;
  }
  .proof-item { display: flex; align-items: center; gap: 10px; }
  .proof-item .pi-num {
    font-family: 'Inter', sans-serif;
    font-size: 24px; font-weight: 800;
    color: var(--orange-light);
  }
  .proof-item .pi-label { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.3; }
  .proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

  /* ─── SECTION BASE ─── */
  section { padding: 90px 40px; max-width: 1280px; margin: 0 auto; }
  .section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
  }
  .section-tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }
  h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 800; line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 16px;
  }
  h2 em { font-style: normal; color: var(--orange); }
  .section-sub {
    font-size: 17px; line-height: 1.7; color: var(--warm-gray);
    max-width: 580px; font-weight: 300;
    margin-bottom: 52px;
  }

  /* ─── WHY US ─── */
  #why { background: #fff; border-radius: 0; }
  #why-inner { max-width: 1280px; margin: 0 auto; padding: 90px 40px; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-card {
    background: var(--cream);
    border-radius: 22px;
    padding: 34px 30px;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative; overflow: hidden;
  }
  .why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
    border-radius: 3px 3px 0 0;
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-orange); background: #fff; }
  .why-card:hover::before { transform: scaleX(1); }
  .why-card .wc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--orange-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange-dark);
    margin-bottom: 20px;
    border: 1px solid rgba(240,122,0,0.2);
  }
  .why-card .wc-icon svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  .why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px; font-weight: 700;
    color: var(--charcoal); margin-bottom: 10px;
  }
  .why-card p { font-size: 14.5px; line-height: 1.65; color: var(--warm-gray); font-weight: 400; }

  /* ─── PRODUCTS ─── */
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(240,122,0,0.14); }
  .product-card .pc-img {
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0;
    color: transparent;
    background-color: var(--orange-pale);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--border);
  }
  .products-grid .product-card:nth-child(1) .pc-img { background-image: url('../img/RetailShoppingBags.jpeg'); }
  .products-grid .product-card:nth-child(2) .pc-img { background-image: url('../img/CustomMailerBoxes.jpeg'); }
  .products-grid .product-card:nth-child(3) .pc-img { background-image: url('../img/FoodPackaging.jpeg'); }
  .products-grid .product-card:nth-child(4) .pc-img { background-image: url('../img/LuxuryGiftBoxes.jpeg'); }
  .products-grid .product-card:nth-child(5) .pc-img { background-image: url('../img/Cups&CoffeeSleeves.jpeg'); }
  .products-grid .product-card:nth-child(6) .pc-img { background-image: url('../img/Labels&Stickers.jpeg'); }
  .products-grid .product-card:nth-child(7) .pc-img { background-image: url('../img/Tissue&Wrapping.webp'); }
  .products-grid .product-card:nth-child(8) .pc-img { background-image: url('../img/ThankyouCards.jpeg'); }
  .product-card .pc-body { padding: 20px; }
  .product-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--charcoal); margin-bottom: 6px;
  }
  .product-card p { font-size: 13px; color: var(--warm-gray); line-height: 1.55; }
  .product-card .pc-tag {
    display: inline-block;
    margin-top: 12px;
    background: var(--orange-pale);
    color: var(--orange-dark);
    font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 50px;
    border: 1px solid rgba(240,122,0,0.2);
  }

  /* ─── PROCESS ─── */
  #process { background: var(--charcoal); color: #fff; max-width: 100%; border-radius: 0; }
  #process-inner { max-width: 1280px; margin: 0 auto; padding: 90px 40px; }
  #process .section-tag { color: var(--orange-light); }
  #process h2 { color: #fff; }
  #process .section-sub { color: rgba(255,255,255,0.5); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .process-steps::before {
    content: '';
    position: absolute; top: 36px; left: 12%; right: 12%; height: 1px;
    background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
    z-index: 0;
  }
  .step {
    text-align: center; padding: 0 20px; position: relative; z-index: 1;
  }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800;
    color: #fff; margin: 0 auto 22px;
    box-shadow: 0 8px 30px rgba(240,122,0,0.45);
    position: relative;
  }
  .step h4 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .step p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.6; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .tcard {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
  }
  .tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-orange); }
  .stars { color: var(--orange); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
  .tcard blockquote { font-size: 14.5px; line-height: 1.7; color: var(--warm-gray); font-style: italic; margin-bottom: 20px; font-weight: 400; }
  .tcard .reviewer { display: flex; align-items: center; gap: 12px; }
  .tcard .rv-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--orange-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 700; color: var(--orange-dark);
    border: 2px solid rgba(240,122,0,0.2);
  }
  .tcard .rv-info .rv-name { font-weight: 600; font-size: 14px; color: var(--charcoal); }
  .tcard .rv-info .rv-biz { font-size: 12.5px; color: var(--warm-gray); }

  /* ─── FORM SECTION ─── */
  #contact { background: #fff; max-width: 100%; }
  #contact-inner { max-width: 1280px; margin: 0 auto; padding: 90px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .contact-left h2 { margin-bottom: 20px; }
  .contact-left .section-sub { margin-bottom: 34px; }
  .perks { display: flex; flex-direction: column; gap: 14px; }
  .perk { display: flex; align-items: flex-start; gap: 12px; }
  .perk .pk-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--orange-pale);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(240,122,0,0.16);
  }
  .perk .pk-icon svg {
    width: 18px;
    height: 18px;
    display: block;
  }
  .perk .pk-text .pk-title { font-weight: 600; font-size: 14.5px; color: var(--charcoal); margin-bottom: 2px; }
  .perk .pk-text .pk-desc { font-size: 13px; color: var(--warm-gray); }

  .contact-form {
    background: var(--cream);
    border-radius: 28px;
    padding: 44px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 50px rgba(0,0,0,0.05);
  }
  .contact-form h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--charcoal); margin-bottom: 6px;
  }
  .contact-form .form-sub { font-size: 13.5px; color: var(--warm-gray); margin-bottom: 28px; }
  .form-status {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.5;
    border: 1px solid transparent;
  }
  .form-status.success {
    background: #ECFDF3;
    border-color: rgba(22,163,74,0.18);
    color: #166534;
  }
  .form-status.error {
    background: #FEF2F2;
    border-color: rgba(220,38,38,0.18);
    color: #991B1B;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--warm-gray); }
  .form-group input, .form-group select, .form-group textarea {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240,122,0,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit {
    width: 100%;
    background: var(--orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 28px rgba(240,122,0,0.3);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 6px;
  }
  .form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 10px 36px rgba(240,122,0,0.4); }
  .form-note { text-align: center; font-size: 12px; color: var(--warm-gray); margin-top: 14px; }
  .form-note span { color: var(--orange); font-weight: 600; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    padding: 40px;
    text-align: center;
  }
  footer img { height: 44px; margin-bottom: 12px; filter: brightness(0) invert(1); }
  footer p { font-size: 13px; color: rgba(255,255,255,0.35); }
  footer a { color: var(--orange-light); text-decoration: none; }

  /* ─── STICKY CTA ─── */
  .sticky-cta {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    background: var(--orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 36px rgba(240,122,0,0.45);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    animation: popIn 0.5s 1.5s ease both, bobble 3s 3s ease-in-out infinite;
    transition: background 0.2s, transform 0.2s;
  }
  .sticky-cta:hover { background: var(--orange-dark); transform: translateY(-3px) scale(1.03); }
  .sticky-cta .pulse-ring {
    position: absolute; inset: -6px; border-radius: 50px;
    border: 2px solid var(--orange);
    animation: ringPulse 2.5s ease-out infinite;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes lineReveal { to { transform: scaleX(1); } }
  @keyframes breathe { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
  @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
  @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
  @keyframes popIn { from{opacity:0;transform:scale(0.8) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
  @keyframes bobble { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
  @keyframes ringPulse { 0%{opacity:0.8;transform:scale(1)} 100%{opacity:0;transform:scale(1.35)} }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    nav {
      padding: 16px 24px;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
    }
    nav .logo { flex: 0 0 auto; }
    nav .nav-toggle { display: inline-flex; }
    nav .nav-links {
      position: absolute;
      top: calc(100% + 12px);
      left: 24px;
      right: 24px;
      width: auto;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 18px;
      background: rgba(255,251,245,0.99);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 18px 50px rgba(26,18,8,0.12);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 101;
    }
    nav .nav-links.is-open {
      display: flex;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
    nav .nav-links a {
      width: 100%;
      font-size: 15px;
      padding: 10px 12px;
      border-radius: 12px;
      background: transparent;
    }
    nav .nav-links a:hover { background: var(--orange-pale); }
    nav .nav-cta { display: none; }
    #hero {
      min-height: auto;
      grid-template-columns: 1fr;
      padding: 128px 24px 56px;
      text-align: center;
    }
    .hero-left {
      width: 100%;
      max-width: 680px;
      margin: 0 auto;
    }
    .hero-badge {
      justify-content: center;
      margin-bottom: 20px;
    }
    h1 {
      font-size: clamp(34px, 7vw, 52px);
      margin-bottom: 18px;
    }
    .hero-sub {
      margin: 0 auto 30px;
      font-size: 17px;
      max-width: 620px;
    }
    .hero-actions {
      justify-content: center;
      gap: 12px;
    }
    .hero-trust {
      justify-content: center;
      gap: 14px;
      margin-top: 28px;
    }
    .hero-visual { display: none; }
    .proof-bar {
      gap: 24px 32px;
      padding: 22px 24px;
    }
    .proof-divider {
      display: none;
    }
    .proof-item {
      min-width: 140px;
      justify-content: center;
    }
    .section-sub {
      margin-bottom: 36px;
      max-width: 100%;
    }
    #why-inner, #process-inner, #contact-inner {
      padding: 72px 24px;
    }
    .why-card,
    .tcard,
    .contact-form {
      border-radius: 20px;
    }
    .why-card {
      padding: 28px 24px;
    }
    .product-card .pc-img {
      height: 140px;
      font-size: 54px;
    }
    .process-steps {
      gap: 22px;
    }
    .step {
      padding: 0;
    }
    .testimonials-grid {
      gap: 18px;
    }
    .tcard {
      padding: 26px 24px;
    }
    #contact-inner {
      gap: 32px;
    }
    .contact-left {
      text-align: center;
    }
    .perks {
      max-width: 620px;
      margin: 0 auto;
    }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    #contact-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 640px) {
    nav { padding: 14px 20px; }
    nav .logo img { height: 42px; }
    nav .nav-toggle {
      width: 44px;
      height: 44px;
    }
    nav .nav-links {
      left: 20px;
      right: 20px;
      padding: 16px;
      gap: 12px;
    }
    nav .nav-links a { font-size: 14px; }
    section {
      padding: 56px 20px;
    }
    #why-inner, #process-inner, #contact-inner {
      padding: 56px 20px;
    }
    #hero {
      padding: 112px 20px 44px;
    }
    .hero-badge {
      width: 100%;
      max-width: 100%;
      font-size: 11px;
      letter-spacing: 0.04em;
      padding: 8px 12px;
      border-radius: 16px;
    }
    h1 {
      font-size: clamp(28px, 9vw, 38px);
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .hero-sub {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }
    .btn-primary {
      width: 100%;
      justify-content: center;
      padding: 15px 20px;
      font-size: 15px;
    }
    .btn-secondary {
      justify-content: center;
      font-size: 14px;
    }
    .hero-trust {
      flex-direction: column;
      text-align: center;
      margin-top: 24px;
    }
    .trust-avatars {
      justify-content: center;
    }
    .trust-text {
      font-size: 13px;
      line-height: 1.5;
    }
    .proof-bar {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 18px 16px;
    }
    .proof-item {
      min-width: 0;
      padding: 14px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,0.04);
      flex-direction: column;
      text-align: center;
      gap: 6px;
    }
    .proof-item .pi-num {
      font-size: 22px;
    }
    .proof-item .pi-label {
      font-size: 11px;
    }
    .section-tag {
      justify-content: center;
      font-size: 10px;
      letter-spacing: 0.12em;
    }
    h2 {
      font-size: clamp(26px, 8vw, 34px);
      text-align: center;
      margin-bottom: 14px;
    }
    .section-sub {
      text-align: center;
      font-size: 15px;
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .why-card {
      padding: 24px 18px;
      text-align: center;
    }
    .why-card .wc-icon {
      margin: 0 auto 18px;
    }
    .products-grid {
      gap: 16px;
    }
    .product-card .pc-img {
      height: 128px;
      font-size: 48px;
    }
    .product-card .pc-body {
      padding: 18px 16px;
    }
    .process-steps {
      gap: 18px;
    }
    .step {
      padding: 22px 18px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      background: rgba(255,255,255,0.03);
    }
    .step-num {
      width: 64px;
      height: 64px;
      font-size: 20px;
      margin-bottom: 18px;
    }
    .tcard {
      padding: 24px 18px;
    }
    .tcard blockquote {
      font-size: 14px;
    }
    #contact-inner {
      gap: 24px;
    }
    .contact-left {
      text-align: left;
    }
    .contact-left h2,
    .contact-left .section-sub,
    .contact-left .section-tag {
      text-align: left;
      justify-content: flex-start;
    }
    .perks {
      gap: 12px;
    }
    .perk {
      gap: 10px;
    }
    .contact-form {
      padding: 24px 16px;
      border-radius: 22px;
    }
    .contact-form h3 {
      font-size: 20px;
    }
    .contact-form .form-sub,
    .form-note {
      line-height: 1.5;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px 14px;
      font-size: 14px;
    }
    .form-submit {
      font-size: 15px;
      padding: 15px 16px;
    }
    footer {
      padding: 32px 20px 88px;
    }
    footer img {
      height: 40px;
    }
    footer p {
      line-height: 1.6;
    }
    .sticky-cta {
      left: 16px;
      right: 16px;
      bottom: 16px;
      justify-content: center;
      padding: 14px 18px;
      font-size: 14px;
    }
    .why-grid, .products-grid, .process-steps, .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 420px) {
    #hero {
      padding-top: 106px;
    }
    h1 {
      font-size: 30px;
    }
    .hero-sub,
    .section-sub {
      font-size: 14px;
    }
    .proof-bar {
      grid-template-columns: 1fr;
    }
    .quote-strip {
      flex-direction: column;
      align-items: flex-start;
    }
    .contact-form {
      padding: 22px 14px;
    }
    footer {
      padding-bottom: 92px;
    }
  }
