 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --primary: #00ab6b;
     --secondary: #3559e0;
     --bg: #ffffff;
     --bg-light: #f0faf6;
     --bg-dark: #454f5f;
     --text: #000000;
     --text-muted: #475569;
     /* was #a0aaba — failed 4.5:1 contrast */
     --text-dark: #454f5f;
     --border: #dddddd;

     --shadow-sm: rgba(0, 0, 0, 0.08) 0px 2px 5px 0px;
     --shadow-md: rgba(0, 0, 0, 0.1) 0px 5px 25px 0px;
     --shadow-lg: rgba(0, 0, 0, 0.15) 0px 8px 30px 0px;

     --r-sm: 7px;
     --r-md: 10px;
     --r-lg: 20px;
     --r-pill: 50px;
     --r-full: 999px;

     --font: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font);
     font-size: 16px;
     line-height: 1.6;
     color: var(--text);
     background: var(--bg);
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* ── TOP BAR ── */
 .topbar {
     background: var(--primary);
     color: #fff;
     padding: 8px 0;
     font-size: 13px;
 }

 .topbar-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 30px;
     display: flex;
     flex-wrap: wrap;
     gap: 16px;
     align-items: center;
     justify-content: center;
 }

 .topbar a {
     color: #fff;
     opacity: 0.9;
 }

 .topbar a:hover {
     opacity: 1;
 }

 .topbar-sep {
     opacity: 0.4;
 }

 /* ── NAV ── */
 nav {
     background: #fff;
     box-shadow: var(--shadow-sm);
     position: sticky;
     top: 0;
     z-index: 100;
 }

 .nav-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 30px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 70px;
     gap: 20px;
 }

 .nav-logo {
     font-size: 22px;
     font-weight: 700;
     color: var(--primary);
     letter-spacing: -0.5px;
 }

 .nav-logo span {
     color: var(--secondary);
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 4px;
 }

 .nav-links a {
     display: block;
     padding: 8px 14px;
     font-size: 14px;
     font-weight: 500;
     color: var(--text-dark);
     border-radius: var(--r-md);
     transition: background 0.2s, color 0.2s;
 }

 .nav-links a:hover,
 .nav-links a.active {
     background: var(--bg-light);
     color: var(--primary);
 }

 .btn-wa-nav {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--primary);
     color: #fff;
     padding: 10px 22px;
     border-radius: var(--r-pill);
     font-size: 14px;
     font-weight: 600;
     box-shadow: var(--shadow-sm);
     transition: background 0.2s, transform 0.15s;
     white-space: nowrap;
 }

 .btn-wa-nav:hover {
     background: #009a5f;
     transform: translateY(-1px);
 }

 .nav-hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 4px;
 }

 .nav-hamburger span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--text);
     border-radius: 2px;
     transition: all 0.3s;
 }

 /* ── HERO ── */
 .hero {
     background: linear-gradient(135deg, var(--bg-light) 0%, #e8f8f1 50%, #fff 100%);
     padding: 80px 30px;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -80px;
     right: -80px;
     width: 400px;
     height: 400px;
     background: var(--primary);
     opacity: 0.06;
     border-radius: 50%;
 }

 .hero::after {
     content: '';
     position: absolute;
     bottom: -60px;
     left: -60px;
     width: 300px;
     height: 300px;
     background: var(--secondary);
     opacity: 0.05;
     border-radius: 50%;
 }

 .hero-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     gap: 60px;
     position: relative;
     z-index: 1;
 }

 .hero-content {
     flex: 1;
 }

 .hero-badge {
     display: inline-block;
     background: rgba(0, 171, 107, 0.12);
     color: var(--primary);
     font-size: 12px;
     font-weight: 600;
     padding: 6px 16px;
     border-radius: var(--r-full);
     margin-bottom: 20px;
     letter-spacing: 0.5px;
     text-transform: uppercase;
 }

 .hero h1 {
     font-size: 50px;
     font-weight: 700;
     line-height: 1.1;
     color: var(--text);
     margin-bottom: 16px;
 }

 .hero h1 .highlight {
     color: var(--primary);
 }

 .hero-sub {
     font-size: 18px;
     color: var(--text-dark);
     margin-bottom: 12px;
     line-height: 1.5;
 }

 .hero-services {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin: 24px 0 36px;
 }

 .hero-service-tag {
     background: #fff;
     border: 1.5px solid var(--border);
     color: var(--text-dark);
     padding: 8px 18px;
     border-radius: var(--r-full);
     font-size: 14px;
     font-weight: 500;
     box-shadow: var(--shadow-sm);
     transition: border-color 0.2s, color 0.2s;
 }

 .hero-service-tag:hover {
     border-color: var(--primary);
     color: var(--primary);
 }

 .hero-ctas {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--primary);
     color: #fff;
     padding: 14px 28px;
     border-radius: var(--r-pill);
     font-size: 15px;
     font-weight: 600;
     box-shadow: var(--shadow-sm);
     transition: background 0.2s, transform 0.15s;
 }

 .btn-primary:hover {
     background: #009a5f;
     transform: translateY(-2px);
 }

 .btn-secondary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: transparent;
     color: var(--secondary);
     border: 2px solid var(--secondary);
     padding: 12px 26px;
     border-radius: var(--r-pill);
     font-size: 15px;
     font-weight: 600;
     transition: background 0.2s, color 0.2s, transform 0.15s;
 }

 .btn-secondary:hover {
     background: var(--secondary);
     color: #fff;
     transform: translateY(-2px);
 }

 .hero-visual {
     flex: 0 0 420px;
     display: flex;
     justify-content: center;
 }

 /* ── HERO CAROUSEL ── */
 .hero-carousel {
     position: relative;
     width: 100%;
     max-width: 420px;
     border-radius: var(--r-lg);
     overflow: hidden;
     box-shadow: var(--shadow-md);
     aspect-ratio: 4/3;
 }

 .hero-carousel-track {
     position: relative;
     width: 100%;
     height: 100%;
 }

 .hero-carousel-slide {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0;
     transition: opacity 0.7s ease;
 }

 .hero-carousel-slide.active {
     opacity: 1;
 }

 .hero-carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255,255,255,0.85);
     border: none;
     border-radius: 50%;
     width: 38px;
     height: 38px;
     font-size: 22px;
     line-height: 1;
     cursor: pointer;
     color: var(--primary);
     box-shadow: 0 2px 8px rgba(0,0,0,0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s;
     z-index: 2;
 }

 .hero-carousel-btn:hover { background: #fff; }
 .hero-carousel-prev { left: 10px; }
 .hero-carousel-next { right: 10px; }

 .hero-carousel-dots {
     position: absolute;
     bottom: 58px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 7px;
     z-index: 2;
 }

 .hero-dot {
     width: 9px;
     height: 9px;
     border-radius: 50%;
     border: 2px solid #fff;
     background: rgba(255,255,255,0.4);
     cursor: pointer;
     padding: 0;
     transition: background 0.2s;
 }

 .hero-dot.active { background: #fff; }

 .hero-carousel-stats {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     display: flex;
     background: rgba(0,0,0,0.5);
     backdrop-filter: blur(4px);
     z-index: 2;
 }

 .hero-carousel-stats .hero-stat {
     flex: 1;
     text-align: center;
     padding: 10px 6px;
     border-right: 1px solid rgba(255,255,255,0.2);
 }

 .hero-carousel-stats .hero-stat:last-child { border-right: none; }

 .hero-carousel-stats .hero-stat-num {
     font-size: 20px;
     font-weight: 700;
     color: #fff;
     line-height: 1;
 }

 .hero-carousel-stats .hero-stat-label {
     font-size: 10px;
     color: rgba(255,255,255,0.8);
     margin-top: 3px;
 }

 /* ── SECTION COMMONS ── */
 section {
     padding: 80px 30px;
 }

 .section-inner {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-label {
     display: inline-block;
     background: rgba(0, 171, 107, 0.1);
     color: var(--primary);
     font-size: 12px;
     font-weight: 600;
     padding: 5px 14px;
     border-radius: var(--r-full);
     margin-bottom: 12px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .section-title {
     font-size: 34px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 14px;
 }

 .section-sub {
     font-size: 16px;
     color: var(--text-dark);
     max-width: 600px;
     line-height: 1.7;
 }

 .section-header {
     margin-bottom: 50px;
 }

 .section-header.center {
     text-align: center;
 }

 .section-header.center .section-sub {
     margin: 0 auto;
 }

 /* ── SERVICES ── */
 .services {
     background: var(--bg-light);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
 }

 .service-card {
     background: #fff;
     border-radius: var(--r-lg);
     padding: 32px 24px;
     text-align: center;
     box-shadow: var(--shadow-sm);
     transition: transform 0.2s, box-shadow 0.2s;
     position: relative;
     overflow: hidden;
 }

 .service-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--primary);
     transform: scaleX(0);
     transition: transform 0.3s;
 }

 .service-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-md);
 }

 .service-card:hover::after {
     transform: scaleX(1);
 }

 .service-icon {
     width: 90px;
     height: 90px;
     border-radius: 50%;
     background: rgba(0, 171, 107, 0.12);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     font-size: 36px;
     color: var(--primary);
     line-height: 1;
 }

 .service-card h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .service-card p {
     font-size: 14px;
     color: var(--text-dark);
     line-height: 1.6;
 }

 .service-link {
     display: inline-block;
     margin-top: 16px;
     color: var(--primary);
     font-size: 14px;
     font-weight: 600;
 }

 .service-link:hover {
     text-decoration: underline;
 }

 /* ── ABOUT ── */
 .about-inner {
     display: flex;
     gap: 70px;
     align-items: center;
 }

 .about-visual {
     flex: 0 0 440px;
     position: relative;
 }

 .about-img-wrap {
     background: var(--bg-light);
     border-radius: var(--r-lg);
     text-align: center;
     position: relative;
 }

 .about-img-wrap::before {
     content: '';
     position: absolute;
     top: 16px;
     left: 16px;
     right: -16px;
     bottom: -16px;
     border: 2px solid var(--primary);
     border-radius: var(--r-lg);
     opacity: 0.2;
     z-index: -1;
 }

 .about-emoji {
     font-size: 100px;
     line-height: 1;
     color: var(--primary);
 }

 .about-content {
     flex: 1;
 }

 .about-list {
     list-style: none;
     margin-top: 20px;
 }

 .about-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 10px 0;
     border-bottom: 1px solid var(--border);
     font-size: 15px;
 }

 .about-list li:last-child {
     border-bottom: none;
 }

 .about-list-icon {
     color: var(--primary);
     font-size: 18px;
     flex-shrink: 0;
     margin-top: 1px;
 }

 .about-ctas {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     margin-top: 30px;
 }

 /* ── WHY US ── */
 .why {
     background: var(--primary);
     color: #fff;
 }

 .why .section-label {
     background: rgba(255, 255, 255, 0.2);
     color: #fff;
 }

 .why .section-title {
     color: #fff;
 }

 .why .section-sub {
     color: rgba(255, 255, 255, 0.85);
 }

 .why-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .why-card {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: var(--r-lg);
     padding: 32px 24px;
     transition: background 0.2s;
 }

 .why-card:hover {
     background: rgba(255, 255, 255, 0.18);
 }

 .why-icon {
     font-size: 40px;
     margin-bottom: 14px;
     line-height: 1;
 }

 .why-card h3 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #fff;
 }

 .why-card p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
 }

 /* ── HOW TO ORDER ── */
 .how {
     background: var(--bg);
 }

 .how-steps {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     position: relative;
 }

 .how-steps::before {
     content: '';
     position: absolute;
     top: 36px;
     left: calc(16.66% + 20px);
     right: calc(16.66% + 20px);
     height: 2px;
     background: linear-gradient(90deg, var(--primary), var(--secondary));
     z-index: 0;
 }

 .how-step {
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .how-step-num {
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background: var(--primary);
     color: #fff;
     font-size: 28px;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     box-shadow: var(--shadow-sm);
 }

 .how-step h3 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .how-step p {
     font-size: 14px;
     color: var(--text-dark);
     line-height: 1.6;
 }

 .how-cta {
     text-align: center;
     margin-top: 50px;
 }

 /* ── TESTIMONIALS ── */
 .testimonials {
     background: var(--bg-light);
 }

 .testi-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .testi-card {
     background: #fff;
     border-radius: var(--r-lg);
     padding: 28px;
     box-shadow: var(--shadow-sm);
     position: relative;
 }

 .testi-card::before {
     content: '"';
     position: absolute;
     top: 16px;
     right: 24px;
     font-size: 80px;
     color: var(--primary);
     opacity: 0.12;
     font-family: serif;
     line-height: 1;
 }

 .testi-stars {
     color: #f5a623;
     font-size: 16px;
     margin-bottom: 12px;
 }

 .testi-text {
     font-size: 14px;
     color: var(--text-dark);
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .testi-author {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .testi-avatar {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-weight: 700;
     font-size: 16px;
     flex-shrink: 0;
 }

 .testi-name {
     font-size: 14px;
     font-weight: 600;
 }

 .testi-city {
     font-size: 12px;
     color: var(--text-muted);
 }

 /* ── GALLERY ── */
 .gallery {
     background: #fff;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
 }

 .gallery-item {
     border-radius: var(--r-md);
     overflow: hidden;
     background: var(--bg-light);
     aspect-ratio: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 48px;
     color: var(--primary);
     box-shadow: var(--shadow-sm);
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .gallery-item:hover {
     transform: scale(1.03);
     box-shadow: var(--shadow-md);
 }

 .gallery-item.tall {
     grid-row: span 2;
     font-size: 72px;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 /* ── FOOTER ── */
 footer {
     background: var(--text-dark);
     color: #fff;
     padding: 60px 30px 0;
 }

 .footer-inner {
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     padding-bottom: 50px;
 }

 .footer-brand h2 {
     font-size: 22px;
     font-weight: 700;
     color: var(--primary);
     margin-bottom: 14px;
 }

 .footer-brand p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.65);
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .footer-socials {
     display: flex;
     gap: 10px;
 }

 .footer-social {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     transition: background 0.2s;
 }

 .footer-social:hover {
     background: var(--primary);
 }

 .footer-col h3 {
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     color: rgba(255, 255, 255, 0.5);
     margin-bottom: 16px;
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 10px;
     font-size: 14px;
     color: rgba(255, 255, 255, 0.75);
 }

 .footer-col ul li a {
     color: rgba(255, 255, 255, 0.75);
     transition: color 0.2s;
 }

 .footer-col ul li a:hover {
     color: var(--primary);
 }

 .footer-contact-item {
     display: flex;
     gap: 10px;
     margin-bottom: 14px;
     font-size: 14px;
     color: rgba(255, 255, 255, 0.75);
     line-height: 1.5;
 }

 .footer-contact-icon {
     color: var(--primary);
     flex-shrink: 0;
     margin-top: 2px;
 }

 .footer-hours {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.75);
 }

 .footer-hours div {
     margin-bottom: 8px;
 }

 .footer-hours strong {
     color: #fff;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding: 20px 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 10px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.4);
 }

 .footer-bottom a {
     color: rgba(255, 255, 255, 0.4);
 }

 .footer-bottom a:hover {
     color: var(--primary);
 }

 /* ── FLOATING WA ── */
 .wa-float {
     position: fixed;
     bottom: 28px;
     right: 28px;
     z-index: 999;
     background: #25d366;
     color: #fff;
     width: 58px;
     height: 58px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     box-shadow: rgba(37, 211, 102, 0.4) 0px 6px 20px;
     transition: transform 0.2s, box-shadow 0.2s;
     cursor: pointer;
 }

 .wa-float:hover {
     transform: scale(1.08);
     box-shadow: rgba(37, 211, 102, 0.6) 0px 8px 24px;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 1024px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .why-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .testi-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .gallery-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }

     .hero-visual {
         flex: 0 0 340px;
     }
 }

 @media (max-width: 768px) {

     .nav-links,
     .btn-wa-nav {
         display: none;
     }

     .nav-hamburger {
         display: flex;
     }

     .hero-inner {
         flex-direction: column;
         gap: 40px;
     }

     .hero h1 {
         font-size: 36px;
     }

     .hero-visual {
         flex: unset;
         width: 100%;
     }

     .about-inner {
         flex-direction: column;
         gap: 40px;
     }

     .about-visual {
         flex: unset;
         width: 100%;
     }

     .services-grid {
         grid-template-columns: 1fr 1fr;
     }

     .why-grid {
         grid-template-columns: 1fr;
     }

     .how-steps {
         grid-template-columns: 1fr;
     }

     .how-steps::before {
         display: none;
     }

     .testi-grid {
         grid-template-columns: 1fr;
     }

     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }

     .section-title {
         font-size: 26px;
     }
 }

 @media (max-width: 480px) {
     section {
         padding: 60px 20px;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .gallery-grid {
         grid-template-columns: 1fr 1fr;
     }

     .hero {
         padding: 60px 20px;
     }

     .hero h1 {
         font-size: 30px;
     }
 }

 /* ── SKIP LINK ── */
 .skip-link {
     position: absolute;
     top: -100%;
     left: 8px;
     background: var(--primary);
     color: #fff;
     padding: 8px 16px;
     border-radius: var(--r-sm);
     font-size: 14px;
     font-weight: 600;
     z-index: 9999;
     transition: top 0.1s;
 }

 .skip-link:focus {
     top: 8px;
 }

 /* ── FOCUS STATES ── */
 a:focus-visible,
 button:focus-visible,
 [role="button"]:focus-visible {
     outline: 2px solid var(--primary);
     outline-offset: 3px;
     border-radius: var(--r-sm);
 }

 /* ── CURSOR ON INTERACTIVE ELEMENTS ── */
 .btn-primary,
 .btn-secondary,
 .btn-wa-nav,
 .service-link,
 .nav-links a,
 .hero-service-tag,
 .footer-social {
     cursor: pointer;
 }

 /* ── TRUST STRIP ── */
 .trust-strip {
     background: #fff;
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     padding: 18px 30px;
 }

 .trust-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 24px;
     align-items: center;
     justify-content: center;
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     font-weight: 600;
     color: var(--text-dark);
     white-space: nowrap;
 }

 .trust-item svg {
     width: 18px;
     height: 18px;
     color: var(--primary);
     flex-shrink: 0;
 }

 .trust-sep {
     width: 1px;
     height: 24px;
     background: var(--border);
 }

 @media (max-width: 768px) {
     .trust-sep {
         display: none;
     }

     .trust-strip {
         padding: 14px 20px;
     }
 }

 /* ── REDUCED MOTION ── */
 @media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
         animation-duration: 0.01ms !important;
         animation-iteration-count: 1 !important;
         transition-duration: 0.01ms !important;
     }

     html {
         scroll-behavior: auto;
     }
 }