/* ==========================================================================
   Deline Import Center — Stylesheet
   Tokens:
     --blue    #0056D2  (header, footer, headings)
     --yellow  #FFC107  (buttons, highlights)
     --white   #FFFFFF  (main background)
     --red     #E53935  (accents only)
   Type: Space Grotesk (display) + Inter (body/UI)
   ========================================================================== */

:root{
  --blue: #0056D2;
  --blue-dark: #003F9E;
  --blue-tint: #EAF1FD;
  --yellow: #FFC107;
  --yellow-dark: #E5A800;
  --white: #FFFFFF;
  --red: #E53935;
  --ink: #142033;
  --ink-soft: #4B5768;
  --border: #E4E9F2;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(20,32,51,0.06);
  --shadow-md: 0 12px 30px rgba(0,86,210,0.12);

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Night mode ----------
   Every component already uses the variables above instead of hard-coded
   colors, so overriding them here re-themes the whole site. Applied via
   data-theme="dark" on <html>, toggled by the switch in the header. */
[data-theme="dark"]{
  --blue-tint: #16233D;
  --white: #101B2D;
  --ink: #EDF1F7;
  --ink-soft: #9AA7BB;
  --border: #263248;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.35);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.45);
}
[data-theme="dark"] .value-num{ background: #3A3212; color: var(--yellow); }
[data-theme="dark"] .accent-card{ background: #2A2410; }
[data-theme="dark"] .catalog-filter-btn:hover{ background: #1E2E4A; }
[data-theme="dark"] .form-status.is-success,
[data-theme="dark"] .product-status.is-success{ color: #4ADE80; }
[data-theme="dark"] .testimonials{ background: var(--blue-tint); }
[data-theme="dark"] .icecream-section{ background: var(--blue-tint); }
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea{
  background: #16233D;
  color: var(--ink);
  border-color: var(--border);
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder{
  color: #6B7A93;
}

html{ transition: background-color .25s var(--ease); }
body, .site-header, .site-footer, section, .btn, .service-card, .product-card,
.testimonial-card, .risk-card, input, select, textarea{
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

/* ---------- Skip link (accessibility) ---------- */
.skip-link{
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top: 12px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--blue);
  line-height: 1.3;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1.2em; color: var(--ink-soft); }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img{ max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:focus-visible{ outline: 3px solid var(--blue-dark); outline-offset: 2px; }

.btn-yellow{
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}
.btn-yellow:hover{ background: var(--yellow-dark); box-shadow: 0 10px 24px rgba(255,193,7,0.35); }

.btn-outline{
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover{ background: var(--blue); color: var(--white); }
.hero .btn-outline{
  border-color: #FFFFFF;
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}
.hero .btn-outline:hover{ background: #FFFFFF; color: var(--blue); }

.btn-outline-light{
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover{ background: var(--white); color: var(--blue-dark); }

.full-width{ width: 100%; }

/* ---------- Reveal-on-scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 28px;
}
.logo{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span{ color: var(--yellow); }
.logo-img{
  display: inline-block;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-image: url('logo-mark.jpg');
  background-size: 172%;
  background-position: center;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.nav{
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav a{
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav a::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .25s var(--ease);
}
.nav a:hover{ color: var(--white); }
.nav a:hover::after{ width: 100%; }

.header-cta{ padding: 10px 22px; font-size: 0.9rem; }

.theme-toggle{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
  transition: background .2s var(--ease);
}
.theme-toggle:hover{ background: rgba(255,255,255,0.22); }
.theme-toggle svg{ width: 19px; height: 19px; }
.theme-toggle .icon-moon{ display: none; }
[data-theme="dark"] .theme-toggle .icon-sun{ display: none; }
[data-theme="dark"] .theme-toggle .icon-moon{ display: block; }

.hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span{
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 8px 24px 20px;
}
.mobile-nav a{
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-weight: 500;
}
.mobile-nav .btn{ margin-top: 14px; align-self: flex-start; }
.mobile-nav.open{ display: flex; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 130px 0 110px;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(100deg, rgba(6,16,36,0.88) 0%, rgba(6,16,36,0.72) 40%, rgba(6,16,36,0.42) 75%, rgba(6,16,36,0.28) 100%),
    url('hero-photo.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.hero-inner{
  display: block;
  max-width: 660px;
}
.hero-copy .eyebrow{ margin-bottom: 14px; color: var(--yellow); }
.hero-copy h1{ margin-bottom: 16px; line-height: 1.2; color: #FFFFFF; }
.hero-copy h1 .highlight{ color: var(--yellow); }
.hero .hero-sub{ margin-bottom: 26px; color: rgba(255,255,255,0.9); }
.hero .hero-trust li{ color: rgba(255,255,255,0.85); }
.hero .hero-trust li svg{ color: var(--yellow); }
@media (max-width: 900px){
  .hero{ min-height: 0; padding: 90px 0 70px; }
  .hero-inner{ max-width: 100%; }
}
.eyebrow{
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow-light{ color: var(--yellow); }

h1{
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
}
h1 .highlight{ color: var(--red); }

.hero-sub{
  font-size: 1.08rem;
  max-width: 46ch;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 32px; }
.hero-actions.center{ justify-content: center; }

.hero-trust{ display: flex; gap: 22px; flex-wrap: wrap; margin-top: 14px; }
.hero-trust li{ font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; display:flex; align-items:center; gap:7px; }
.hero-trust li svg{ width: 16px; height: 16px; color: var(--blue); flex-shrink:0; }


/* ---------- Trust bar ---------- */
.trust-bar{ background: var(--blue); padding: 20px 0; }
.trust-bar-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-item{
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item em{ color: rgba(255,255,255,0.65); font-style: normal; }
.trust-icon{ display:inline-flex; width: 20px; height: 20px; vertical-align: -4px; margin-right: 6px; }
.trust-icon svg{ width: 100%; height: 100%; }

/* ---------- Section heading ---------- */
.section-heading{
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 18px;
}
.section-sub{
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 52px;
  line-height: 1.65;
}

/* ---------- Value prop ---------- */
.value-prop{ padding: 90px 0 70px; }
.value-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.value-card{
  padding: 30px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.value-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow-dark);
  background: #FFF6DD;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.value-card h3{ font-size: 1.1rem; margin-bottom: 10px; }
.value-card p{ font-size: 0.94rem; margin: 0; line-height: 1.6; }

/* ---------- About ---------- */
.about{ padding: 80px 0; background: var(--blue-tint); }
.about-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.about h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); }
.about blockquote{
  border-left: 4px solid var(--red);
  padding-left: 18px;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  margin: 20px 0 0;
}
.about-list{
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.about-list h3{ font-size: 1.1rem; margin-bottom: 18px; }
.check-list li{
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child{ border-bottom: none; }
.check-list li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--blue);
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  top: 11px;
}

/* ---------- Services ---------- */
.services{ padding: 90px 0 70px; }
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card{
  padding: 38px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon{
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg{ width: 28px; height: 28px; }
.accent-card .service-icon{ background: var(--yellow); color: var(--ink); }
.service-card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.service-card p{ margin-bottom: 14px; }
.service-card p{ font-size: 0.94rem; }
.accent-card{ border-color: var(--yellow); background: #FFFBF0; }
.card-link{ color: var(--blue); font-weight: 700; font-size: 0.9rem; }
.card-link:hover{ color: var(--red); }

/* ---------- Data hub ---------- */
.databundle{ background: var(--blue); padding: 80px 0; color: var(--white); }
.databundle h2{ color: var(--white); font-size: clamp(1.6rem, 3vw, 2.1rem); max-width: 18ch; }
.databundle-sub{ color: rgba(255,255,255,0.85); max-width: 55ch; }
.databundle-inner{
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.bundle-network-list{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.bundle-chip{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.bundle-chip:hover{ background: rgba(255,193,7,0.15); transform: translateX(2px); }

.bundle-form{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.bundle-store-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  text-align: center;
}
.bundle-store-card h3{ font-size: 1.2rem; margin-bottom: 10px; }
.bundle-store-card p{ color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 22px; }
.bundle-store-links{ margin-top: 16px; font-size: 0.88rem; }
.bundle-store-links a{ color: var(--blue); font-weight: 600; }
.bundle-store-links span{ color: var(--ink-soft); margin: 0 8px; }
.bundle-form h3{ font-size: 1.15rem; margin-bottom: 18px; }
.bundle-form label{
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.bundle-form select,
.bundle-form input{
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.bundle-form select:focus,
.bundle-form input:focus{
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,86,210,0.15);
}
.form-note{
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 12px 0 0;
}
.form-status{
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 12px 0 0;
  min-height: 1.2em;
}
.form-status.is-error{ color: var(--red); }
.form-status.is-success{ color: #1E8E3E; }
.form-status.is-pending{ color: var(--ink-soft); }

.contact-right{ display: flex; flex-direction: column; gap: 28px; }
.paynow-form{
  background: var(--blue-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.paynow-form h3{ font-size: 1.1rem; margin-bottom: 6px; }
.paynow-sub{ font-size: 0.88rem; margin-bottom: 18px; }
.paynow-form label{
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.paynow-form input{
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.paynow-form input:focus{
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,86,210,0.15);
}

/* ---------- How it works ---------- */
.how-it-works{ padding: 90px 0; background: var(--white); }
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
  position: relative;
}
.step{ text-align: center; padding: 0 12px; }
.step-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.step h3{ font-size: 1.05rem; margin-bottom: 8px; }
.step p{ font-size: 0.92rem; line-height: 1.6; }

/* ---------- Risk reversal ---------- */
.risk-reversal{ padding: 80px 0; background: var(--blue-tint); }
.risk-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.risk-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
}
.risk-mark{
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.risk-mark svg{ width: 15px; height: 15px; }
.risk-card p{ margin: 0; font-size: 0.95rem; color: var(--ink); }

/* ---------- Contact ---------- */
.contact{ padding: 90px 0; }
.contact-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact h2{ font-size: clamp(1.5rem, 3vw, 2rem); }
.contact-methods{ margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact-method{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.contact-method:hover{ border-color: var(--blue); background: var(--blue-tint); transform: translateX(4px); }
.contact-icon{ width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; }
.contact-icon svg{ width: 100%; height: 100%; }
.contact-method strong{ display: block; color: var(--ink); font-size: 0.98rem; }
.contact-method span{ font-size: 0.86rem; color: var(--ink-soft); }

.social-links{
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  font-size: 0.9rem; color: var(--ink-soft);
}
.social-handle{
  display: flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 600;
}
.social-handle svg{ width: 18px; height: 18px; color: var(--blue); }

.contact-form{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3{ font-size: 1.2rem; margin-bottom: 20px; }
.contact-form label{
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea{
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,86,210,0.15);
}

/* ---------- Final CTA ---------- */
.final-cta{
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}
.final-cta h2{ color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.final-cta p{ color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto; }
.final-cta-inner{ display: flex; flex-direction: column; align-items: center; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--blue-dark); color: rgba(255,255,255,0.85); padding: 60px 0 0; }
.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-logo{ margin-bottom: 10px; display: inline-block; }
.footer-col h4{ color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a{ display: block; padding: 6px 0; color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color .2s var(--ease); }
.footer-col a:hover{ color: var(--yellow); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom p{ margin: 0; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Nav switches to the hamburger menu earlier than the rest of the layout
   reflows (1150px vs 900px). With 8 nav items, the full nav needs more
   room than 900px gives it — below 1150px it was wrapping onto two lines
   inside the header instead of collapsing cleanly. */
@media (max-width: 1150px){
  .nav{ display: none; }
  .header-cta{ display: none; }
  .hamburger{ display: flex; }
}

@media (max-width: 900px){
  .hero-inner,
  .about-inner,
  .databundle-inner,
  .contact-inner{
    grid-template-columns: 1fr;
  }
  .value-grid{ grid-template-columns: repeat(2, 1fr); }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .risk-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .value-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .btn{ text-align: center; }
  .trust-bar-inner{ gap: 16px; }
}

/* ==========================================================================
   Legal / simple content pages (Payment & Delivery, Returns & Refunds, 404)
   ========================================================================== */
.legal-page{ padding: 70px 0 100px; max-width: 780px; margin: 0 auto; }
.legal-page .eyebrow{ margin-bottom: 10px; }
.legal-page h1{ font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 6px; }
.legal-page .updated{ color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2{ font-family: var(--font-display); font-size: 1.3rem; color: var(--blue); margin: 40px 0 12px; }
.legal-page p, .legal-page li{ color: var(--ink-soft); line-height: 1.7; }
.legal-page ul{ padding-left: 20px; margin: 0 0 1em; }
.legal-page a.inline-link{ color: var(--blue); font-weight: 600; text-decoration: underline; }
.legal-page .back-link{ display:inline-block; margin-top: 40px; }

.error-page{
  min-height: 60vh; display:flex; flex-direction:column; align-items:center;
  justify-content:center; text-align:center; padding: 100px 24px;
}
.error-page .error-code{
  font-family: var(--font-display); font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700; color: var(--blue); line-height:1; margin-bottom: 10px;
}
.error-page h1{ font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 12px; }
.error-page p{ color: var(--ink-soft); max-width: 480px; margin: 0 auto 30px; }

/* ==========================================================================
   Testimonials + Feedback Form
   ========================================================================== */
.testimonials{ padding: 80px 0; background: var(--blue-tint); }
.testimonial-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 36px;
}
.testimonial-card{
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; box-shadow: var(--shadow-sm);
}
.testimonial-stars{ color: var(--yellow-dark); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote{ color: var(--ink); font-style: italic; margin-bottom: 18px; line-height: 1.6; }
.testimonial-name{ color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; margin: 0; }

.feedback-box{
  margin-top: 56px; background: var(--white); border-radius: 20px;
  padding: 36px; max-width: 640px; margin-left: auto; margin-right: auto;
  box-shadow: var(--shadow-md);
}
.feedback-box h3{ font-family: var(--font-display); margin-bottom: 6px; }
.feedback-form{ display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.feedback-form label{ display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.feedback-form input[type="text"],
.feedback-form select,
.feedback-form textarea{
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 10px; color: var(--ink);
}
.feedback-permission{ flex-direction: row !important; align-items: center; gap: 10px !important; font-weight: 500 !important; }
.feedback-permission input{ width: auto; }

@media (max-width: 900px){
  .testimonial-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Product Catalog (data-driven from data/products.json)
   ========================================================================== */
.catalog{ padding: 80px 0; background: var(--white); }
.icecream-section{ padding: 80px 0; background: var(--blue-tint); }

/* ---------- Christmas Pre-Orders (seasonal) ---------- */
.xmas-section{
  position: relative;
  padding: 90px 0;
  background: linear-gradient(160deg, #8a1c1c 0%, #5c1414 60%, #3a1a0f 100%);
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.xmas-snow{
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 30% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(3px 3px at 55% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 75% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 90% 15%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 20% 85%, rgba(255,255,255,0.4), transparent),
    radial-gradient(3px 3px at 65% 90%, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}
.xmas-inner{ position: relative; max-width: 720px; }
.xmas-eyebrow{
  display:inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  padding: 5px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 18px;
}
.xmas-heading{
  font-family: var(--font-display); font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.2;
}
.xmas-sub{ font-size: 1.08rem; color: rgba(255,255,255,0.88); margin-bottom: 40px; }
.xmas-features{
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 44px;
}
.xmas-feature{ display: flex; flex-direction: column; align-items: center; gap: 10px; width: 110px; }
.xmas-feature-icon{
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; color: #FFD54A;
}
.xmas-feature-icon svg{ width: 26px; height: 26px; }
.xmas-feature span{ font-size: 0.86rem; font-weight: 600; }
.xmas-cta{ font-size: 1rem; padding: 15px 32px; }
@media (max-width: 700px){
  .xmas-features{ gap: 20px; }
  .xmas-feature{ width: 80px; }
}

.icecream-heading{ text-align: center; margin-bottom: 8px; }
.icecream-badge{
  display:inline-block; background: var(--white); color: var(--blue); font-weight: 700;
  font-size: 0.85rem; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.icecream-heading .section-sub{ margin-bottom: 0; }
.catalog-loading{ color: var(--ink-soft); }
.catalog-search-wrap{
  position: relative;
  max-width: 520px;
  margin: 28px auto 0;
}
.catalog-search-icon{
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; color: var(--ink-soft); pointer-events: none;
}
.catalog-search-input{
  width: 100%; box-sizing: border-box;
  font-family: var(--font-body); font-size: 0.98rem;
  padding: 13px 44px 13px 46px;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--ink); background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.catalog-search-input:focus{
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,86,210,0.12);
}
.catalog-search-clear{
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; border: none;
  background: var(--blue-tint); color: var(--ink-soft);
  font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.catalog-search-clear:hover{ background: var(--border); }
.catalog-search-status{
  text-align: center; font-size: 0.86rem; color: var(--ink-soft);
  margin: 10px 0 0;
}
.catalog-filters{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 28px; }
.catalog-filter-btn{
  background: var(--blue-tint); color: var(--blue); border: none; border-radius: 999px;
  padding: 8px 18px; font-size: 0.88rem; font-weight: 600; cursor: pointer; font-family: var(--font-body);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.catalog-filter-btn:hover{ background: #dbe8fb; }
.catalog-filter-btn.active{ background: var(--blue); color: var(--white); }
.catalog-grid{
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px; margin-top: 36px;
}
.product-card{
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm); display:flex; flex-direction:column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.product-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card img{ width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display:block; background: var(--blue-tint); }
.product-card-body{ padding: 20px; display:flex; flex-direction:column; gap: 12px; flex: 1; }
.product-category{ font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--yellow-dark); }
.product-name{ font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin: 0; }
.product-desc{ font-size: 0.88rem; color: var(--ink-soft); margin: 0; flex: 1; }
.product-price{ font-size: 1.2rem; font-weight: 700; color: var(--blue); }
.product-price-row{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.product-price-original{ font-size: 0.92rem; color: var(--ink-soft); text-decoration: line-through; }
.product-price-sale{ font-size: 1.2rem; font-weight: 700; color: var(--red); }
.product-sale-badge{
  display:inline-block; background: var(--red); color:#fff; font-size:0.7rem; font-weight:700;
  padding: 2px 8px; border-radius: 999px; letter-spacing:.02em; text-transform:uppercase;
}

/* ---------- Seasonal promo banner ---------- */
.promo-banner{
  background: linear-gradient(90deg, var(--red) 0%, #c62828 100%);
  color: #fff;
}
.promo-banner-inner{
  display:flex; align-items:center; justify-content:center; gap: 16px;
  padding: 10px 44px 10px 16px; position: relative; flex-wrap: wrap; text-align:center;
}
.promo-banner-text{ font-size: 0.92rem; font-weight: 600; }
.promo-banner-link{
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 0.82rem; font-weight: 700; padding: 4px 14px; border-radius: 999px;
  white-space: nowrap;
}
.promo-banner-link:hover{ background: #fff; color: var(--red); }
.promo-banner-close{
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; font-size: 1.3rem; line-height:1;
  cursor: pointer; opacity: 0.85; padding: 4px;
}
.promo-banner-close:hover{ opacity: 1; }

.product-delivery{ font-size: 0.8rem; color: var(--ink-soft); }
.product-field-label{ display:flex; flex-direction:column; gap:4px; font-size:0.8rem; font-weight:600; color: var(--ink); margin-top: 4px; }
.product-field-label select,
.product-field-label input{
  font-family: var(--font-body); font-size:0.9rem; padding:8px 10px;
  border:1px solid var(--border); border-radius:8px; color: var(--ink);
}
.product-order-btn{
  margin-top: 10px; width:100%; text-align:center; background: var(--blue); border: none; cursor:pointer;
  color: var(--white); border-radius: 10px; padding: 11px 14px; font-weight: 700; font-size: 0.92rem;
  font-family: var(--font-body);
}
.product-order-btn:hover{ background: var(--blue-dark); }
.product-order-btn:disabled{ opacity: 0.65; cursor: not-allowed; }
.product-status{ font-size: 0.8rem; margin: 4px 0 0; min-height: 1.1em; }
.product-status.is-error{ color: var(--red); }
.product-status.is-success{ color: #1e7e34; }
.product-status.is-pending{ color: var(--ink-soft); }
.product-whatsapp-link{ display:block; text-align:center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; text-decoration: underline; }
.catalog-empty{ color: var(--ink-soft); }
