/* ============================================
   NexgenStitches — Global styles
   Colors: #0f3d2e (dark green), #00c853 (vibrant), #e8f5e9 (light)
   ============================================ */

   :root {
    --green-dark: #0f3d2e;
    --green-mid: #1a5c45;
    --green-vibrant: #00c853;
    --green-light: #e8f5e9;
    --green-glow: rgba(0, 200, 83, 0.35);
    --white: #ffffff;
    --gray-50: #f8faf8;
    --gray-100: #eef2ef;
    --gray-600: #5c6d64;
    --gray-900: #1a2420;
    --font: "Poppins", system-ui, sans-serif;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 12px 40px rgba(15, 61, 46, 0.12);
    --shadow-hover: 0 24px 48px rgba(15, 61, 46, 0.18);
    --header-h: 76px;
    /* Mobile menu: synced from JS to real header height when menu opens */
    --menu-top: var(--header-h);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    overflow-x: clip;
    max-width: 100%;
  }
  
  body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-900);
    background: var(--white);
    /* clip: no scrollport (unlike hidden, which breaks position:sticky site-wide in Chrome) */
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100%;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: var(--green-mid);
    text-decoration: none;
    transition: color var(--transition);
  }
  
  a:hover {
    color: var(--green-vibrant);
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  /* ----- Page loader ----- */
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, var(--green-dark) 0%, #0a2a20 100%);
    pointer-events: none;
    transform-origin: top;
    animation: loaderOut 0.85s ease forwards 0.4s;
  }
  
  @keyframes loaderOut {
    to {
      transform: scaleY(0);
      opacity: 0;
    }
  }
  
  /* ----- Layout ----- */
  .container {
    width: min(1120px, 100% - 2rem);
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
  }

  main {
    max-width: 100%;
  }
  
  .section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
  }
  
  .section-head {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }
  
  .section-head--left {
    text-align: left;
    margin-inline: 0;
  }
  
  .section-head--light .section-title,
  .section-head--light .section-desc {
    color: var(--gray-100);
  }
  
  .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-vibrant);
    margin-bottom: 0.65rem;
  }
  
  .section-head--light .section-tag {
    color: #69f0ae;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: var(--green-dark);
  }
  
  .section-desc {
    margin: 0;
    color: var(--gray-600);
    font-size: 1.05rem;
  }
  
  /* ----- Buttons ----- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  }
  
  .btn-primary {
    background: linear-gradient(120deg, var(--green-vibrant) 0%, #00a843 50%, var(--green-vibrant) 100%);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 0 8px 28px var(--green-glow);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(0, 200, 83, 0.45);
    background-position: right center;
  }
  
  .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }
  
  .btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
    transform: translateY(-2px);
  }
  
  /* Outline button for light backgrounds (e.g. split hero) */
  .btn-outline-dark {
    border: 2px solid rgba(15, 61, 46, 0.2);
    color: var(--green-dark);
    background: var(--white);
  }
  
  .btn-outline-dark:hover {
    border-color: var(--green-vibrant);
    color: var(--green-mid);
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.12);
  }
  
  .btn-light {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: var(--shadow);
  }
  
  .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--green-mid);
  }
  
  .btn-lg {
    padding: 1.05rem 2rem;
    font-size: 1rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  /* ----- Header (light bar — matches split hero) ----- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 0.85rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 61, 46, 0.06);
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition), border-color var(--transition);
  }
  
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 24px rgba(15, 61, 46, 0.08);
    padding: 0.55rem 0;
    border-bottom-color: transparent;
  }
  
  .site-header .logo span,
  .site-header .nav-link {
    color: var(--green-dark);
  }
  
  .site-header .nav-link:hover,
  .site-header .nav-link.active {
    color: var(--green-vibrant);
  }
  
  .site-header .nav-cta {
    background: linear-gradient(120deg, var(--green-vibrant), #00a843);
    color: var(--white) !important;
  }
  
  .site-header .nav-cta:hover {
    color: var(--white) !important;
    filter: brightness(1.06);
    transform: translateY(-1px);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--green-dark);
    z-index: 820;
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-header .logo img {
    width: auto;
    max-width: min(263px, calc(100vw - 5.75rem));
    height: auto;
    display: block;
  }

  .site-footer .logo img {
    width: auto;
    max-width: min(263px, 100%);
    height: auto;
  }
  
  .logo strong {
    font-weight: 700;
  }
  
  .logo--footer {
    color: var(--green-dark);
  }
  
  .site-footer .logo.logo--footer {
    color: var(--white);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    z-index: 830;
    flex-shrink: 0;
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  }

  .nav-toggle:hover {
    border-color: rgba(0, 200, 83, 0.35);
    background: rgba(255, 255, 255, 0.95);
  }

  .nav-toggle:focus {
    outline: none;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid rgba(0, 200, 83, 0.55);
    outline-offset: 2px;
  }
  
  .nav-toggle-bar {
    width: 22px;
    height: 2.5px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
  }
  
  .site-header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .site-header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  
  .site-header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.4rem 0;
    position: relative;
  }
  
  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--green-vibrant);
    border-radius: 2px;
  }
  
  .nav-cta {
    padding: 0.5rem 1.15rem !important;
    border-radius: 999px;
    margin-left: 0.25rem;
  }
  
  .nav-cta::after {
    display: none !important;
  }
  
  /* ----- Hero: split layout + before/after compare ----- */
  .hero--split {
    position: relative;
    min-height: min(100vh, 900px);
    min-height: min(100dvh, 900px);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
    overflow: hidden;
  }
  
  .hero-split-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(165deg, #f6f7f4 0%, #fafaf8 45%, #eef5f0 100%);
    pointer-events: none;
  }
  
  .hero-split-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 90% 15%, rgba(0, 200, 83, 0.09) 0%, transparent 55%),
      radial-gradient(ellipse 50% 45% at 5% 90%, rgba(15, 61, 46, 0.06) 0%, transparent 50%);
  }
  
  .hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    min-width: 0;
  }
  
  .hero-copy {
    max-width: 560px;
    min-width: 0;
  }
  
  .hero-headline {
    font-size: clamp(1.85rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    color: #2d3a35;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
  }
  
  .hero-headline__amp {
    color: var(--green-mid);
    font-weight: 700;
  }
  
  .hero-trust {
    margin: 0 0 1.35rem;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .hero-trust__upper {
    display: inline;
  }
  
  .hero-trust__highlight {
    display: inline;
    position: relative;
    color: var(--green-dark);
    padding: 0 0.15em;
    margin: 0 0.2em;
  }
  
  /* Green “brush” highlight (reference-style underline) */
  .hero-trust__highlight::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0.05em;
    height: 0.42em;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 200, 83, 0.35) 8%,
      rgba(0, 200, 83, 0.5) 45%,
      rgba(0, 200, 83, 0.28) 92%,
      transparent 100%
    );
    border-radius: 4px;
    transform: skewX(-8deg);
    z-index: -1;
  }
  
  .hero-bullets {
    margin: 0 0 1.75rem;
    padding: 0 0 0 1.15rem;
    color: #3d4a44;
    font-size: 1rem;
    line-height: 1.75;
  }
  
  .hero-bullets li {
    margin-bottom: 0.35rem;
  }
  
  .hero-bullets li::marker {
    color: var(--green-vibrant);
  }
  
  .hero--split .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
  }
  
  .hero-visual {
    display: flex;
    justify-content: center;
    min-width: 0;
  }
  
  /* ----- Before / after image compare ----- */
  .image-compare {
    width: 100%;
    max-width: min(440px, 100%);
  }
  
  .image-compare__frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    /* box-shadow:
      0 20px 50px rgba(15, 61, 46, 0.15),
      0 0 0 1px rgba(15, 61, 46, 0.06); */
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    line-height: 0;
  }
  
  .image-compare.is-dragging .image-compare__frame {
    cursor: grabbing;
  }
  
  /* After image sets frame height (no border-radius on image area) */
  .image-compare__after {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    vertical-align: top;
    pointer-events: none;
  }
  
  .image-compare__before {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0);
  }
  
  .image-compare__rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-pos, 50%);
    width: 3px;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 0 0 1px rgba(15, 61, 46, 0.12), 0 0 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
    pointer-events: none;
  }
  
  .image-compare__handle {
    position: absolute;
    top: 50%;
    left: var(--compare-pos, 50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    box-shadow:
      0 4px 20px rgba(15, 61, 46, 0.2),
      0 0 0 2px rgba(0, 200, 83, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow var(--transition);
  }
  
  .image-compare__handle:hover,
  .image-compare__handle:focus-visible {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow:
      0 8px 28px rgba(0, 200, 83, 0.35),
      0 0 0 2px var(--green-vibrant);
    outline: none;
  }
  
  .image-compare__grip {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    color: var(--green-vibrant);
    font-size: 0.65rem;
  }
  
  .image-compare__labels {
    display: flex;
    justify-content: space-between;
    margin: 0.65rem 0 0;
    padding: 0 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
  }
  
  /* Legacy gradient text utility (other sections) */
  .gradient-text {
    background: linear-gradient(90deg, #69f0ae, var(--green-vibrant), #b9f6ca);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* ----- Pricing + quick order ----- */
  .section-order {
    position: relative;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    /* Any non-visible overflow here makes this a scroll ancestor and kills sticky for .order-copy */
    overflow: visible;
  }
  
  .section-order__bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(165deg, #f0f4f1 0%, #f8faf8 35%, #e8f5ec 100%);
    z-index: 0;
  }
  
  .section-order__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 15% 25%, rgba(0, 200, 83, 0.11) 0%, transparent 55%),
      radial-gradient(ellipse 45% 40% at 92% 75%, rgba(15, 61, 46, 0.07) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .order-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: start;
  }
  
  /* Fills grid row height so sticky has a tall containing block; form column stays start-sized */
  .order-sticky-shell {
    min-width: 0;
    align-self: stretch;
  }
  
  /* Sticky marketing column: stays visible while scrolling the tall form (desktop) */
  .order-copy {
    max-width: 560px;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    z-index: 2;
  }
  
  .order-price {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.15;
    color: #2c3832;
    margin: 0 0 1rem;
    letter-spacing: -0.025em;
  }
  
  .order-price__accent {
    background: linear-gradient(120deg, var(--green-dark) 0%, var(--green-vibrant) 45%, #00a843 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .order-tagline {
    margin: 0 0 1.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-mid);
  }
  
  .order-features {
    list-style: none;
    margin: 0 0 1.85rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }
  
  .order-features li {
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.65);
    border-radius: var(--radius);
    border: 1px solid rgba(15, 61, 46, 0.08);
    box-shadow: 0 6px 24px rgba(15, 61, 46, 0.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .order-features li:hover {
    transform: translateX(6px);
    border-color: rgba(0, 200, 83, 0.22);
    box-shadow: 0 12px 32px rgba(15, 61, 46, 0.08);
  }
  
  .order-features__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--green-light), var(--white));
    color: var(--green-dark);
    font-size: 1.05rem;
  }
  
  .order-features__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3d4d45;
  }
  
  .order-features__text strong {
    color: var(--green-dark);
    display: inline;
  }
  
  .btn-order-learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(130deg, var(--green-vibrant) 0%, #00a048 50%, var(--green-dark) 100%);
    background-size: 200% auto;
    box-shadow: 0 10px 32px rgba(0, 200, 83, 0.35);
    transition: transform var(--transition), box-shadow var(--transition), background-position 0.5s ease;
  }
  
  .btn-order-learn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 200, 83, 0.45);
    background-position: 100% center;
  }
  
  .order-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.35rem);
    border: 1px solid rgba(15, 61, 46, 0.08);
    box-shadow:
      0 4px 6px rgba(15, 61, 46, 0.03),
      0 24px 48px rgba(15, 61, 46, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: box-shadow var(--transition);
  }
  
  .order-card:hover {
    box-shadow:
      0 8px 12px rgba(15, 61, 46, 0.04),
      0 32px 56px rgba(15,61, 46, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  }
  
  .order-card__glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
  }
  
  .order-card__title {
    position: relative;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--green-dark);
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
  }
  
  .order-card__title::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin: 0.75rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--green-vibrant), transparent);
  }
  
  .order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.1rem;
  }
  
  .order-field label,
  .order-upload-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.45rem;
  }
  
  .order-req {
    font-size: 0.78em;
    font-weight: 600;
    color: #b71c1c;
  }
  
  .order-field {
    margin-bottom: 1rem;
  }
  
  .order-field--full {
    grid-column: 1 / -1;
    margin-bottom: 1.1rem;
  }
  
  .order-form input[type="text"],
  .order-form input[type="tel"],
  .order-form input[type="email"],
  .order-form textarea {
    width: 100%;
    padding: 0.82rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    background: var(--gray-50);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  }
  
  .order-form input::placeholder,
  .order-form textarea::placeholder {
    color: #9aaa9f;
  }
  
  .order-form input:hover,
  .order-form textarea:hover {
    border-color: rgba(0, 200, 83, 0.25);
    background: var(--white);
  }
  
  .order-form input:focus,
  .order-form textarea:focus {
    outline: none;
    border-color: var(--green-vibrant);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.14);
  }
  
  .order-form input.invalid,
  .order-form textarea.invalid {
    border-color: #c62828;
    background: #fff8f7;
  }
  
  .order-field-error:empty {
    display: none;
  }
  
  .order-field-error {
    display: block;
    font-size: 0.78rem;
    color: #c62828;
    margin-top: 0.35rem;
  }
  
  .order-notes-meta {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.4rem;
  }
  
  .order-char-count {
    font-weight: 700;
    color: var(--green-dark);
  }
  
  .order-notes-hint {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    color: var(--gray-600);
  }
  
  .order-upload {
    position: relative;
    margin-top: 0.5rem;
    padding: 1.35rem 1.25rem;
    border: 2px dashed rgba(15, 61, 46, 0.2);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(232, 245, 233, 0.35) 0%, var(--white) 100%);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  }
  
  .order-upload:hover,
  .order-upload:focus-within {
    border-color: rgba(0, 200, 83, 0.5);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.08);
  }
  
  .order-upload.is-dragover {
    border-style: solid;
    border-color: var(--green-vibrant);
    background: var(--green-light);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.18);
  }
  
  .order-upload.invalid {
    border-color: #c62828;
    background: #fff8f7;
  }
  
  .order-upload:focus {
    outline: none;
  }
  
  .order-upload:focus-visible {
    box-shadow: 0 0 0 3px var(--green-vibrant);
  }
  
  .order-upload__input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .order-upload__content {
    pointer-events: none;
  }
  
  .order-upload .btn-upload-select {
    pointer-events: auto;
  }
  
  .order-upload__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.65rem;
    font-size: 2rem;
    color: var(--green-vibrant);
    filter: drop-shadow(0 4px 8px rgba(0, 200, 83, 0.25));
  }
  
  .order-upload__text {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    color: var(--gray-600);
  }
  
  .btn-upload-select {
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(120deg, var(--green-vibrant), #00a843);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.28);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .btn-upload-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 200, 83, 0.38);
    color: var(--white);
  }
  
  .order-upload__hint {
    margin: 1rem 0 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--gray-600);
    text-align: left;
    pointer-events: none;
  }
  
  .order-files-list {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  
  .order-files-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid rgba(15, 61, 46, 0.06);
    color: var(--green-dark);
  }
  
  .order-files-list button {
    flex-shrink: 0;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b71c1c;
    border-radius: 6px;
    background: rgba(183, 28, 28, 0.08);
    transition: background var(--transition);
  }
  
  .order-files-list button:hover {
    background: rgba(183, 28, 28, 0.16);
  }
  
  .order-recaptcha-slot {
    margin: 1rem 0 0;
    min-height: 0;
  }
  
  .order-recaptcha-slot:empty {
    margin: 0.5rem 0 0;
  }
  
  .order-form-actions {
    margin-top: 1.35rem;
    display: flex;
    justify-content: flex-start;
  }
  
  .btn-order-submit {
    min-width: 160px;
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(125deg, var(--green-dark) 0%, var(--green-mid) 45%, var(--green-vibrant) 100%);
    background-size: 200% auto;
    box-shadow: 0 10px 28px rgba(15, 61, 46, 0.28);
    transition: transform var(--transition), box-shadow var(--transition), background-position 0.45s ease;
  }
  
  .btn-order-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 200, 83, 0.35);
    background-position: 100% center;
  }
  
  .btn-order-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  .btn-order-submit.is-loading {
    pointer-events: none;
    opacity: 0.92;
    cursor: wait;
  }

  .btn-order-submit .btn-order-loading[hidden],
  .btn-order-submit .btn-order-text[hidden] {
    display: none !important;
  }
  
  .order-form-success {
    margin-top: 1rem;
    padding: 0.9rem;
    border-radius: var(--radius);
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid rgba(0, 200, 83, 0.25);
  }
  
  /* ----- Services ----- */
  .section-services {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 40%, var(--green-light) 100%);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(15, 61, 46, 0.08);
    box-shadow: 0 4px 20px rgba(15, 61, 46, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 200, 83, 0.25);
  }
  
  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-light), var(--white));
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
    transition: transform var(--transition), background var(--transition);
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, var(--green-vibrant), #00a843);
    color: var(--white);
  }
  
  .service-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
    color: var(--green-dark);
  }
  
  .service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-600);
  }
  
  /* ----- Pricing (Simple / Complex toggle) ----- */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .section-pricing {
    position: relative;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    overflow: hidden;
  }
  
  .section-pricing__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--white) 0%, #f3faf5 40%, var(--green-light) 100%);
    z-index: 0;
  }
  
  .section-pricing__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 200, 83, 0.1) 0%, transparent 55%),
      radial-gradient(ellipse 45% 40% at 100% 100%, rgba(15, 61, 46, 0.06) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .section-pricing .container {
    position: relative;
    z-index: 1;
  }
  
  .pricing-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
  }
  
  .pricing-head__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: #2c3832;
    letter-spacing: -0.02em;
  }
  
  .pricing-head__sub {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-mid);
  }
  
  .pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.35rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  
  .pricing-toggle-lbl {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-600);
    background: none;
    border: none;
    padding: 0.35rem 0.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: color var(--transition), transform var(--transition), background var(--transition);
  }
  
  .pricing-toggle-lbl:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.35);
  }
  
  .pricing-toggle-wrap.is-complex .pricing-toggle-lbl--simple {
    color: #9aaa9f;
    transform: scale(0.96);
  }
  
  .pricing-toggle-wrap:not(.is-complex) .pricing-toggle-lbl--complex {
    color: #9aaa9f;
    transform: scale(0.96);
  }
  
  .pricing-toggle-wrap:not(.is-complex) .pricing-toggle-lbl--simple {
    color: var(--green-dark);
  }
  
  .pricing-toggle-wrap.is-complex .pricing-toggle-lbl--complex {
    color: var(--green-dark);
  }
  
  .pricing-switch {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.2s ease;
  }
  
  .pricing-switch:hover {
    transform: scale(1.04);
  }
  
  .pricing-switch:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--green-vibrant);
  }
  
  .pricing-switch__track {
    display: block;
    width: 64px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(145deg, #dfe8e3 0%, #c8d5cc 100%);
    box-shadow: inset 0 2px 6px rgba(15, 61, 46, 0.12);
    position: relative;
    transition: background var(--transition), box-shadow var(--transition);
  }
  
  .pricing-toggle-wrap.is-complex .pricing-switch__track {
    background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-dark) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 8px 24px rgba(0, 200, 83, 0.25);
  }
  
  .pricing-switch__thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f1 100%);
    box-shadow: 0 2px 10px rgba(15, 61, 46, 0.2);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background var(--transition);
  }
  
  .pricing-toggle-wrap.is-complex .pricing-switch__thumb {
    transform: translateX(30px);
    background: linear-gradient(180deg, #e8ffef 0%, var(--green-vibrant) 100%);
    box-shadow: 0 2px 14px rgba(0, 200, 83, 0.45);
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 4vw, 2rem);
    max-width: 920px;
    margin-inline: auto;
  }
  
  .pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.25rem);
    text-align: center;
    border: 1px solid rgba(15, 61, 46, 0.08);
    box-shadow:
      0 4px 6px rgba(15, 61, 46, 0.04),
      0 20px 40px rgba(15, 61, 46, 0.08);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 12px 28px rgba(15, 61, 46, 0.1),
      0 28px 56px rgba(0, 200, 83, 0.12);
    border-color: rgba(0, 200, 83, 0.22);
  }
  
  .pricing-card__shine {
    position: absolute;
    top: -50%;
    right: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 65%);
    pointer-events: none;
  }
  
  .pricing-card__shine--alt {
    background: radial-gradient(circle, rgba(26, 92, 69, 0.12) 0%, transparent 65%);
    right: auto;
    left: -40%;
  }
  
  .pricing-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.1rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--green-dark);
    background: linear-gradient(145deg, var(--green-light), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(0, 200, 83, 0.2);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.12);
  }
  
  .pricing-card__icon--vector {
    color: var(--green-mid);
    background: linear-gradient(145deg, #e0efe8, var(--white));
    border-color: rgba(26, 92, 69, 0.2);
    box-shadow: 0 8px 20px rgba(15, 61, 46, 0.1);
  }
  
  .pricing-card__name {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-vibrant);
  }
  
  .pricing-card--vector .pricing-card__name {
    color: var(--green-mid);
  }
  
  .pricing-card__from {
    margin: 0 0 0.25rem;
    font-size: 0.88rem;
    color: var(--gray-600);
  }
  
  .pricing-card__price {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 6vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--green-vibrant);
    transition: transform 0.35s ease, color var(--transition);
  }
  
  .pricing-card--vector .pricing-card__price {
    color: var(--green-mid);
  }
  
  .pricing-card__price.is-pulse {
    animation: pricePulse 0.55s ease;
  }
  
  @keyframes pricePulse {
    0% {
      transform: scale(1);
    }
    40% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .pricing-card__currency {
    font-size: 0.55em;
    font-weight: 700;
    vertical-align: super;
    opacity: 0.9;
  }
  
  .pricing-card__formats {
    margin: 0 0 1.5rem;
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--gray-600);
  }
  
  .pricing-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    padding: 0.9rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(125deg, var(--green-vibrant) 0%, #00a843 50%, var(--green-dark) 100%);
    background-size: 200% auto;
    box-shadow: 0 10px 28px rgba(0, 200, 83, 0.32);
    transition: transform var(--transition), box-shadow var(--transition), background-position 0.45s ease;
  }
  
  .pricing-card__cta:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 200, 83, 0.42);
    background-position: 100% center;
  }
  
  .pricing-card__cta--alt {
    background: linear-gradient(125deg, var(--green-dark) 0%, var(--green-mid) 45%, var(--green-vibrant) 100%);
    box-shadow: 0 10px 28px rgba(15, 61, 46, 0.28);
  }
  
  .pricing-card__cta--alt:hover {
    box-shadow: 0 14px 36px rgba(15, 61, 46, 0.35);
  }
  
  /* ----- Portfolio ----- */
  .section-dark {
    background: linear-gradient(180deg, var(--green-dark) 0%, #0a2a20 100%);
    position: relative;
  }
  
  .section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 200, 83, 0.12) 0%, transparent 55%);
    pointer-events: none;
  }
  
  .section-portfolio .container {
    position: relative;
    z-index: 1;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .portfolio-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
  }

  .portfolio-empty__code {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    font-size: 0.88em;
    font-family: ui-monospace, monospace;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #b8f5d0;
  }
  
  .portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition), transform var(--transition);
  }
  
  .portfolio-item:hover,
  .portfolio-item:focus-visible {
    border-color: var(--green-vibrant);
    transform: translateY(-4px);
    outline: none;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .portfolio-item:hover img {
    transform: scale(1.08);
  }
  
  .portfolio-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(15, 61, 46, 0.75), transparent 55%);
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
  }
  
  .portfolio-item:hover .portfolio-zoom,
  .portfolio-item:focus-visible .portfolio-zoom {
    opacity: 1;
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 26, 20, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  
  .lightbox.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .lightbox[hidden] {
    display: none !important;
  }
  
  .lightbox-inner {
    margin: 0;
    max-width: min(1000px, 100%);
    text-align: center;
  }
  
  .lightbox-inner img {
    max-height: min(78vh, 800px);
    width: auto;
    margin-inline: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
  }
  
  .lightbox-inner figcaption {
    margin-top: 1rem;
    color: var(--green-light);
    font-size: 0.95rem;
  }
  
  .lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
  }
  
  .lightbox-close:hover {
    background: var(--green-vibrant);
    transform: rotate(90deg);
  }
  
  /* ----- Why NexgenStitches (story + stats + choose us) ----- */
  .section-why {
    position: relative;
    background: linear-gradient(180deg, #fafcfb 0%, var(--white) 45%, #f4faf6 100%);
    overflow-x: hidden;
  }
  
  .section-why__glow {
    position: absolute;
    top: -20%;
    right: -15%;
    width: min(55vw, 520px);
    height: min(55vw, 520px);
    background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, rgba(232, 245, 233, 0.06) 45%, transparent 70%);
    pointer-events: none;
  }
  
  .section-why .container {
    position: relative;
    z-index: 1;
  }
  
  .why-story {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
    margin-bottom: clamp(3rem, 7vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
    border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  }
  
  .why-story__kicker {
    margin: 0 0 1rem;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    text-transform: uppercase;
    color: var(--green-vibrant);
    max-width: 36rem;
  }
  
  .why-story__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1e2a24;
  }
  
  .why-story__title-line {
    display: block;
  }
  
  .why-story__title-highlight {
    display: inline;
    position: relative;
    color: var(--green-dark);
    padding: 0 0.08em;
  }
  
  .why-story__title-highlight::after {
    content: "";
    position: absolute;
    left: -0.05em;
    right: -0.05em;
    bottom: 0.08em;
    height: 0.38em;
    background: linear-gradient(90deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.45), rgba(0, 200, 83, 0.22));
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-4deg);
  }
  
  .why-story__body p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--gray-600);
    max-width: 38rem;
  }
  
  .why-story__body p:last-child {
    margin-bottom: 0;
  }
  
  .why-story__aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    width: 100%;
  }
  
  .why-story__bubble {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    align-self: stretch;
  }
  
  .why-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.35rem 1.15rem;
    text-align: center;
    border: 1px solid rgba(15, 61, 46, 0.07);
    box-shadow: 0 10px 32px rgba(15, 61, 46, 0.07);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .why-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 200, 83, 0.2);
    box-shadow: 0 16px 40px rgba(0, 200, 83, 0.12);
  }
  
  .why-stat-card__num {
    display: block;
    font-size: clamp(1.65rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #00c853 0%, #1a5c45 55%, var(--green-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.45rem;
  }
  
  .why-stat-card__label {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--gray-600);
  }
  
  .why-choose {
    width: 100%;
    max-width: 100%;
  }
  
  .why-bubble {
    position: relative;
    width: 100%;
    max-width: 280px;
  }
  
  .why-bubble__megaphone {
    position: absolute;
    top: -12px;
    left: -8px;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--green-vibrant), #00a843);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 28px rgba(0, 200, 83, 0.4);
    transform: rotate(-12deg);
  }
  
  .why-bubble__frame {
    position: relative;
    margin-top: 1.25rem;
    margin-left: 0.75rem;
    padding: 2rem 1.5rem 2.25rem;
    border: 3px solid var(--green-vibrant);
    border-radius: 28px;
    background: linear-gradient(165deg, rgba(232, 245, 233, 0.5) 0%, var(--white) 100%);
    box-shadow: 0 20px 48px rgba(15, 61, 46, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }
  
  .why-bubble__frame::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 28%;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-right: 3px solid var(--green-vibrant);
    border-bottom: 3px solid var(--green-vibrant);
    transform: rotate(45deg);
    border-radius: 0 0 4px 0;
  }
  
  .why-bubble__word {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green-vibrant);
    line-height: 1.05;
  }
  
  .why-choose-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    width: 100%;
  }
  
  .why-choose-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.15rem 1.2rem;
    height: 100%;
    box-sizing: border-box;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(15, 61, 46, 0.08);
    box-shadow: 0 6px 22px rgba(15, 61, 46, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }
  
  .why-choose-item:hover {
    border-color: rgba(0, 200, 83, 0.22);
    box-shadow: 0 12px 36px rgba(0, 200, 83, 0.1);
    transform: translateY(-3px);
  }
  
  .why-choose-item__ico {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 2px solid var(--green-vibrant);
    color: var(--green-vibrant);
    background: rgba(232, 245, 233, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
  }
  
  .why-choose-item:hover .why-choose-item__ico {
    background: linear-gradient(145deg, var(--green-vibrant), #00a843);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
  }
  
  .why-choose-item__text h3 {
    margin: 0 0 0.45rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--green-dark);
  }
  
  .why-choose-item__text p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-600);
  }
  
  /* ----- Process ----- */
  .section-process {
    background: linear-gradient(180deg, var(--green-light) 0%, var(--gray-50) 100%);
  }
  
  .process-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
  }
  
  .process-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-vibrant), var(--green-dark));
    border-radius: 3px;
    opacity: 0.35;
    z-index: 0;
  }
  
  .process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.5rem;
  }
  
  .process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--green-vibrant), var(--green-dark));
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px var(--green-glow);
  }
  
  .process-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--green-dark);
  }
  
  .process-step p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--gray-600);
  }
  
  /* ----- Testimonials — full-width Trustpilot-style marquee ----- */
  .section-testimonials {
    background: linear-gradient(180deg, #fafcfb 0%, var(--white) 35%, #f8faf9 100%);
    overflow-x: hidden;
    padding-bottom: clamp(3rem, 6vw, 4rem);
  }
  
  /* Full-bleed without 100vw (avoids horizontal scroll on mobile — scrollbar vs layout width) */
  .testimonials-marquee-shell {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  
  .testimonials-marquee-edge {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(48px, 8vw, 100px);
    z-index: 3;
    pointer-events: none;
  }
  
  .testimonials-marquee-edge--left {
    left: 0;
    background: linear-gradient(90deg, #fafcfb 0%, rgba(250, 252, 251, 0.97) 35%, transparent 100%);
  }
  
  .testimonials-marquee-edge--right {
    right: 0;
    background: linear-gradient(270deg, #f8faf9 0%, rgba(248, 250, 249, 0.97) 35%, transparent 100%);
  }
  
  .testimonials-marquee-viewport {
    overflow: hidden;
    width: 100%;
    padding-block: 0.35rem 1.25rem;
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  }
  
  .testimonials-marquee-viewport:hover .testimonials-marquee-track,
  .testimonials-marquee-viewport:focus-within .testimonials-marquee-track {
    animation-play-state: paused;
  }
  
  @keyframes testimonials-marquee-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .testimonials-marquee-track {
    display: flex;
    width: max-content;
    animation: testimonials-marquee-scroll 48s linear infinite;
    will-change: transform;
  }
  
  .testimonials-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: clamp(1rem, 2vw, 1.35rem);
    padding-inline: clamp(0.5rem, 2vw, 1rem);
  }
  
  /* Trustpilot-inspired review card (not affiliated — visual style only) */
  .tp-review {
    flex: 0 0 auto;
    width: clamp(300px, 85vw, 380px);
    min-height: 260px;
    padding: 1.5rem 1.45rem 1.35rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
      0 1px 2px rgba(15, 61, 46, 0.04),
      0 12px 32px rgba(15, 61, 46, 0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  }
  
  .tp-review:hover {
    border-color: rgba(0, 182, 122, 0.25);
    box-shadow:
      0 4px 12px rgba(0, 200, 83, 0.08),
      0 20px 44px rgba(15, 61, 46, 0.1);
    transform: translateY(-2px);
  }
  
  .tp-review__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(15, 61, 46, 0.07);
  }
  
  .tp-stars {
    display: flex;
    gap: 3px;
  }
  
  .tp-star {
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background: #00b67a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.62rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .tp-star:nth-child(2) {
    background: linear-gradient(180deg, #00c853 0%, #00b67a 100%);
  }
  
  .tp-star:nth-child(4) {
    background: linear-gradient(180deg, #00b67a 0%, #059669 100%);
  }
  
  .tp-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 0.02em;
  }
  
  .tp-verified i {
    color: var(--green-vibrant);
    font-size: 1rem;
  }
  
  .tp-review__quote {
    margin: 0;
    padding: 0;
    border: none;
    flex: 1;
  }
  
  .tp-review__quote p {
    margin: 0 0 1.15rem;
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
    color: #37443f;
  }
  
  .tp-review__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .tp-review__footer strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
  }
  
  .tp-review__footer span {
    font-size: 0.82rem;
    color: var(--gray-600);
  }
  
  @media (max-width: 768px) {
    .testimonials-marquee-track {
      animation-duration: 64s;
    }
  
    .tp-review {
      min-height: 240px;
    }
  }
  
  /* ----- CTA band — premium conversion block ----- */
  .section.cta-band {
    padding: clamp(3.25rem, 8vw, 5.5rem) 0;
  }
  
  .cta-band {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse 90% 80% at 50% 100%, rgba(0, 0, 0, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 70% 60% at 70% 20%, rgba(0, 200, 83, 0.14) 0%, transparent 50%),
      linear-gradient(145deg, #062a1f 0%, var(--green-dark) 38%, #0a4a32 72%, #063022 100%);
  }
  
  .cta-band__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
  
  .cta-band__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.55;
  }
  
  .cta-band__orb--1 {
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    top: -18%;
    right: -8%;
    background: rgba(0, 200, 83, 0.25);
  }
  
  .cta-band__orb--2 {
    width: min(320px, 55vw);
    height: min(320px, 55vw);
    bottom: -25%;
    left: -10%;
    background: rgba(0, 180, 120, 0.12);
  }
  
  .cta-band__gridlines {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 50% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    pointer-events: none;
  }
  
  .cta-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.75fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
  }
  
  .cta-panel__main {
    max-width: 36rem;
  }
  
  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.1rem;
    padding: 0.4rem 0.9rem 0.4rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
  }
  
  .cta-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-vibrant);
    box-shadow: 0 0 12px rgba(0, 200, 83, 0.8);
    animation: ctaPulse 2.2s ease-in-out infinite;
  }
  
  @keyframes ctaPulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.75;
      transform: scale(1.15);
    }
  }
  
  .cta-heading {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--white);
  }
  
  .cta-heading__line {
    display: block;
  }
  
  .cta-heading__accent {
    display: block;
    background: linear-gradient(105deg, #b9f6ca 0%, var(--green-vibrant) 45%, #69f0ae 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .cta-lead {
    margin: 0 0 1.35rem;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.86);
  }
  
  .cta-lead strong {
    color: var(--white);
    font-weight: 600;
  }
  
  .cta-highlights {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
  
  .cta-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .cta-highlights i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    width: 1.35rem;
    text-align: center;
    color: var(--green-vibrant);
    filter: drop-shadow(0 0 8px rgba(0, 200, 83, 0.45));
  }
  
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
    margin-bottom: 1rem;
  }
  
  .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    color: var(--green-dark) !important;
    background: var(--white);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  }
  
  .cta-btn-primary:hover {
    color: var(--green-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 200, 83, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.25);
    background: #f1fff4;
  }
  
  .cta-btn-primary i {
    font-size: 0.85em;
    transition: transform var(--transition);
  }
  
  .cta-btn-primary:hover i {
    transform: translateX(4px);
  }
  
  .cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    color: var(--white) !important;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
  }
  
  .cta-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white) !important;
    transform: translateY(-2px);
  }
  
  .cta-microcopy {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    max-width: 28rem;
  }
  
  .cta-panel__aside {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .cta-card {
    position: relative;
    padding: 1.5rem 1.35rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  }
  
  .cta-card--stack::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.35), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08));
    z-index: -1;
    opacity: 0.9;
  }
  
  .cta-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
  }
  
  .cta-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }
  
  .cta-card__list {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  
  .cta-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .cta-card__list i {
    color: var(--green-vibrant);
    margin-top: 0.2rem;
    font-size: 0.75rem;
  }
  
  .cta-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(0, 200, 83, 0.2);
    border-radius: 999px;
    border: 1px solid rgba(0, 200, 83, 0.35);
  }
  
  .cta-card__badge i {
    color: #ffeb3b;
    font-size: 0.8rem;
  }
  
  .cta-float-stat {
    align-self: flex-end;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    max-width: 200px;
  }
  
  .cta-float-stat__num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-vibrant);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  
  .cta-float-stat__txt {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
  }
  
  @media (max-width: 992px) {
    .cta-panel {
      grid-template-columns: 1fr;
    }
  
    .cta-panel__main {
      max-width: none;
      text-align: center;
    }
  
    .cta-eyebrow {
      margin-inline: auto;
    }
  
    .cta-highlights {
      text-align: left;
      max-width: 28rem;
      margin-inline: auto;
    }
  
    .cta-actions {
      justify-content: center;
    }
  
    .cta-microcopy {
      margin-inline: auto;
      text-align: center;
    }
  
    .cta-panel__aside {
      max-width: 400px;
      margin-inline: auto;
    }
  
    .cta-float-stat {
      align-self: center;
      text-align: center;
    }
  }
  
  @media (max-width: 540px) {
    .cta-actions {
      flex-direction: column;
      width: 100%;
    }
  
    .cta-btn-primary,
    .cta-btn-ghost {
      width: 100%;
    }
  }
  
  /* ----- Contact ----- */
  .section-contact {
    background: var(--gray-50);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
  }
  
  .contact-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .contact-list i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    color: var(--green-vibrant);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(15, 61, 46, 0.08);
  }
  
  .contact-list strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    margin-bottom: 0.2rem;
  }
  
  .contact-form {
    background: var(--white);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 61, 46, 0.06);
  }
  
  .form-row {
    margin-bottom: 1.15rem;
  }
  
  .form-row label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
  }
  
  .req {
    color: #c62828;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--green-vibrant);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.15);
  }
  
  .contact-form input.invalid,
  .contact-form textarea.invalid {
    border-color: #c62828;
  }
  
  .field-error {
    display: block;
    font-size: 0.8rem;
    color: #c62828;
    margin-top: 0.35rem;
    min-height: 1.1em;
  }
  
  .form-success {
    margin-top: 1rem;
    padding: 0.85rem;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
  }

  .form-error {
    margin-top: 0.85rem;
    padding: 0.85rem;
    background: rgba(198, 40, 40, 0.1);
    color: #8b1c1c;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    font-size: 0.92rem;
  }

  .contact-form .btn-loading[hidden],
  .contact-form .btn-text[hidden] {
    display: none !important;
  }

  .contact-form .btn-primary:disabled {
    opacity: 0.88;
    cursor: wait;
  }
  
  /* ----- Footer ----- */
  .site-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    padding-top: 0;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(180deg, #0a2e24 0%, var(--green-dark) 38%, #0c3328 100%);
    overflow: hidden;
  }
  
  .site-footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 200, 83, 0.18) 0%, transparent 55%),
      radial-gradient(ellipse 60% 45% at 92% 35%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(0, 168, 67, 0.12) 0%, transparent 45%);
    opacity: 0.95;
  }
  
  .site-footer__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
  }
  
  /* Top CTA strip */
  .footer-cta-bar {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(135deg, rgba(0, 200, 83, 0.14) 0%, transparent 45%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
    backdrop-filter: blur(12px);
  }
  
  .footer-cta-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(1.5rem, 4vw, 2.25rem) 0;
  }
  
  .footer-cta-bar__copy {
    flex: 1 1 280px;
    min-width: 0;
  }
  
  .footer-cta-bar__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-vibrant);
    margin-bottom: 0.5rem;
  }
  
  .footer-cta-bar__kicker i {
    font-size: 0.85rem;
    opacity: 0.95;
  }
  
  .footer-cta-bar__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--white);
  }
  
  .footer-cta-bar__accent {
    background: linear-gradient(120deg, #b9f6ca, var(--green-vibrant), #69f0ae);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .footer-cta-bar__sub {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 36rem;
  }
  
  .footer-cta-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
  }
  
  .footer-cta-bar__actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
  }
  
  .footer-cta-bar__actions .btn-outline:hover {
    border-color: var(--white);
  }
  
  /* Main grid */
  .footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(min(100%, 300px), 1.35fr);
    gap: clamp(1.75rem, 4vw, 2.75rem);
    padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-main .footer-col {
    min-width: 0;
  }
  
  .footer-col--brand .logo {
    margin-bottom: 1rem;
  }
  
  .footer-tagline {
    margin: 0 0 1.35rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    max-width: 22rem;
  }
  
  .footer-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
  
  .footer-trust li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .footer-trust__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 83, 0.15);
    color: var(--green-vibrant);
    font-size: 0.85rem;
    border: 1px solid rgba(0, 200, 83, 0.25);
    flex-shrink: 0;
  }
  
  .footer-heading {
    margin: 0 0 1.1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-vibrant);
  }
  
  .footer-linklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-linklist a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.2rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  
  .footer-linklist a i {
    font-size: 0.65rem;
    color: var(--green-vibrant);
    opacity: 0.85;
    transition: transform 0.2s ease;
  }
  
  .footer-linklist a:hover {
    color: var(--white);
  }
  
  .footer-linklist a:hover i {
    transform: translateX(4px);
  }
  
  .footer-contact-card {
    padding: 1.15rem 1.35rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.65rem 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
    border-radius: 8px;
    margin: 0 -0.35rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    min-width: 0;
  }
  
  .footer-contact-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  
  .footer-contact-row:first-child {
    padding-top: 0;
  }
  
  .footer-contact-row:not(.footer-contact-row--static):hover {
    background: rgba(0, 200, 83, 0.08);
  }
  
  .footer-contact-row--static {
    cursor: default;
    padding-bottom: 0;
  }
  
  .footer-contact-row__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 200, 83, 0.12);
    color: var(--green-vibrant);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
  }
  
  .footer-contact-row__body {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  
  .footer-contact-row__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.15rem;
  }
  
  .footer-contact-row__value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  
  .footer-social-label {
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
  }
  
  .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  
  .footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  }
  
  .footer-social a:hover {
    background: var(--green-vibrant);
    border-color: var(--green-vibrant);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 200, 83, 0.35);
    color: var(--white);
  }
  
  .footer-bottom {
    position: relative;
    z-index: 1;
    padding: 1.35rem 0 1.75rem;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .footer-bottom__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .footer-copy {
    margin: 0;
  }
  
  .footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
  }
  
  .footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    font-size: 0.86rem;
    transition: color 0.2s ease;
  }
  
  .footer-legal a:hover {
    color: var(--green-vibrant);
  }
  
  .footer-legal__dot {
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
  }
  
  /* ----- Responsive ----- */
@media (max-width: 992px) {
  .order-split {
    grid-template-columns: 1fr;
  }
  
  .order-copy {
    max-width: 100%;
    position: static;
    top: auto;
  }
  
  .order-features li:hover {
    transform: none;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
    .hero-copy {
      max-width: 100%;
      margin-inline: auto;
    }
  
    .hero-bullets {
      display: inline-block;
      text-align: left;
    }
  
    .hero--split .hero-actions {
      justify-content: center;
    }
  
    .hero-visual {
      order: -1;
    }
  
    .image-compare {
      max-width: min(400px, 92vw);
      margin-inline: auto;
    }
  
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .why-story {
      grid-template-columns: 1fr;
    }
  
    .why-story__aside {
      max-width: 420px;
      margin-inline: auto;
    }
  
    .why-story__aside .why-stats {
      max-width: 100%;
    }
  
    .why-bubble {
      margin-inline: auto;
    }
  
    .why-choose-item:hover {
      transform: none;
    }
  
    .process-track {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .process-track::before {
      display: none;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-main {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .footer-col--brand {
      grid-column: 1 / -1;
      text-align: center;
    }
  
    .footer-col--contact {
      grid-column: 1 / -1;
      max-width: 520px;
      width: 100%;
      margin-inline: auto;
    }
  
    .footer-col--brand .logo {
      justify-content: center;
    }
  
    .footer-tagline {
      margin-inline: auto;
    }
  
    .footer-trust {
      align-items: center;
    }
  
    .footer-trust li {
      justify-content: center;
    }
  
    .footer-cta-bar__inner {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
    }
  
    .footer-cta-bar__actions {
      justify-content: center;
    }
  
    .footer-bottom__inner {
      flex-direction: column;
      text-align: center;
      justify-content: center;
    }
  }
  
@media (max-width: 768px) {
  .order-form-grid {
    grid-template-columns: 1fr;
  }
  
  .order-form-actions {
    justify-content: stretch;
  }
  
  .btn-order-submit {
    width: 100%;
    min-width: 0;
  }
  
  .order-upload__hint {
    text-align: center;
  }
  
  .nav-toggle {
    display: flex;
  }

  /* ----- Mobile menu: full-screen layer above page (AOS/transform can sit above z-index:800 otherwise) ----- */
  .site-header.nav-open {
    z-index: 10000;
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none !important;
    isolation: isolate;
  }

  .site-header.nav-open .header-inner {
    position: relative;
    z-index: 3;
    align-items: center;
  }

  .site-header.nav-open .logo {
    position: relative;
    z-index: 4;
    padding: 0.4rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .site-header.nav-open .logo img {
    max-width: min(220px, calc(100vw - 7rem));
  }

  .site-header.nav-open .nav-toggle {
    position: relative;
    z-index: 4;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

  .site-header.nav-open .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.28);
  }

  .site-header.nav-open .nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
  }

  .site-header.nav-open .nav-toggle-bar {
    background: var(--white);
  }

  /* Full-viewport menu layer; bar sits above via z-index on logo/toggle */
  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: calc(var(--menu-top) + 0.65rem + env(safe-area-inset-top, 0px)) 1.25rem calc(1.75rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(165deg, #0f3d2e 0%, #0a221c 42%, #050f0c 100%);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.36s;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.nav-open .nav {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    max-width: 520px;
    margin: 0 auto;
    padding: 0.25rem 0 0;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 14px;
    border: 1px solid transparent;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.95) !important;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .nav-link:not(.nav-cta)::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65rem;
    opacity: 0.4;
    flex-shrink: 0;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: rgba(0, 200, 83, 0.12);
    color: var(--white) !important;
    outline: none;
  }

  .nav-link.active {
    border-color: rgba(0, 200, 83, 0.45);
    background: rgba(0, 200, 83, 0.16);
    color: var(--green-vibrant) !important;
    box-shadow: inset 4px 0 0 0 var(--green-vibrant);
  }

  /* Replace desktop underline ::after with chevron on mobile */
  .nav-link.active::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65rem;
    opacity: 0.9;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    width: auto;
    background: none;
    border-radius: 0;
    color: inherit;
  }

  .nav-cta {
    margin-top: 1.25rem !important;
    margin-left: 0 !important;
    justify-content: center !important;
    text-align: center;
    padding: 1rem 1.25rem !important;
    border: none !important;
    border-radius: 999px !important;
    background: linear-gradient(120deg, var(--green-vibrant), #00a843) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 28px rgba(0, 200, 83, 0.35);
  }

  .nav-cta::after {
    content: none !important;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    filter: brightness(1.06);
    color: var(--white) !important;
  }

  body.nav-open {
    overflow: hidden;
  }
  
    .hero-actions {
      flex-direction: column;
    }
  
    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }
  
    .footer-main {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-linklist {
      align-items: center;
    }
  
    .footer-col--contact .footer-heading,
    .footer-social-label {
      text-align: center;
    }
  
    .footer-contact-card {
      text-align: left;
      max-width: min(100%, 520px);
      width: 100%;
      margin-inline: auto;
    }
  
    .footer-social {
      justify-content: center;
    }
  
    .footer-cta-bar__actions {
      flex-direction: column;
      width: 100%;
      max-width: 320px;
      margin-inline: auto;
    }
  
    .footer-cta-bar__actions .btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 640px) {
    .why-choose-list {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 540px) {
    .why-stats {
      grid-template-columns: 1fr;
    }
  
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  
    .process-track {
      grid-template-columns: 1fr;
    }
  
    .process-step {
      text-align: left;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0 1rem;
      align-items: start;
    }
  
    .process-step .process-num {
      grid-row: span 2;
      margin-bottom: 0;
    }
  
  }
  
  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    .page-loader {
      animation: none;
      opacity: 0;
      visibility: hidden;
    }
  
    .testimonials-marquee-track {
      animation: none !important;
      transform: none !important;
      flex-wrap: wrap;
      justify-content: center;
      width: 100% !important;
      max-width: 900px;
      margin-inline: auto;
      row-gap: 1rem;
    }
  
    .testimonials-marquee-group[aria-hidden="true"] {
      display: none !important;
    }
  
    .testimonials-marquee-viewport {
      mask-image: none;
      -webkit-mask-image: none;
      overflow: visible;
    }
  
    .testimonials-marquee-shell {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  
    .cta-eyebrow__dot {
      animation: none;
    }
  
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

/* Flash messages (PHP) */
.site-flash {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  animation: siteFlashIn 0.35s ease;
}
.site-flash--success {
  background: rgba(15, 61, 46, 0.12);
  color: #0f3d2e;
  border: 1px solid rgba(15, 61, 46, 0.25);
}
.site-flash--error {
  background: rgba(180, 40, 40, 0.1);
  color: #8b1c1c;
  border: 1px solid rgba(180, 40, 40, 0.25);
}
.site-flash--info {
  background: rgba(30, 90, 200, 0.1);
  color: #1a3d8a;
  border: 1px solid rgba(30, 90, 200, 0.2);
}
@keyframes siteFlashIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Legal documents (privacy.php, terms.php) ----- */
.legal-doc-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", system-ui, sans-serif;
  background: #f6f7f9;
  color: #1a1d21;
}

.legal-doc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.legal-doc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.legal-doc-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.legal-doc-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-doc-header__nav a {
  color: #0f3d2e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.legal-doc-header__nav a:hover {
  color: #00c853;
}

.legal-page {
  flex: 1;
  padding: 2.5rem 0 3.5rem;
}

.legal-page__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.legal-prose {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid rgba(15, 61, 46, 0.08);
  box-shadow: 0 12px 40px rgba(15, 61, 46, 0.06);
}

.legal-prose > p:first-of-type {
  margin-top: 0;
}

.legal-prose h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f3d2e;
  letter-spacing: -0.01em;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}

.legal-prose p,
.legal-prose li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #3f4a56;
}

.legal-prose p {
  margin: 0 0 0.85rem;
}

.legal-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.legal-prose li {
  margin-bottom: 0.4rem;
}

.legal-prose a {
  color: #0f3d2e;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose a:hover {
  color: #00a843;
}

.legal-doc-footer {
  margin-top: auto;
  padding-block: 1.25rem;
  background: #0f3d2e;
  color: rgba(255, 255, 255, 0.88);
}

.legal-doc-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.85rem;
}

.legal-doc-footer__copy {
  margin: 0;
}

.legal-doc-footer__links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.legal-doc-footer__links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
}

.legal-doc-footer__links a:hover {
  text-decoration: underline;
  color: #86efac;
}

@media (max-width: 520px) {
  .legal-prose {
    padding: 1.5rem 1.15rem 1.75rem;
  }

  .legal-doc-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
