:root{
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --ink: #0c1e33;
  --ink-soft: #2a3f57;
  --muted: #5d7388;
  --line: #c2d5e7;
  --accent: #1e88e5;
  --accent-deep: #0d5fa6;
  --paper: #ffffff;
  --serif: 'Open Sans', system-ui, sans-serif;
  --sans: 'Manrope', system-ui, sans-serif;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--sans);
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  animation: fadeIn 0.5s ease;
}

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ============ NAV ============ */
nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
.nav-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 24px 32px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}
.logo{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo img{
  display: block;
  height: 56px;
  width: auto;
}
.footer-brand .logo img{ height: 88px; }
.logo .dot{
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 2px;
  transform: translateY(-3px);
}
.logo em{ color: var(--accent); font-style: italic; font-weight: 500; }
.nav-links{
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  justify-content: center;
}
.nav-links a{
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover{ color: var(--accent); }
.nav-links a.active{ color: var(--ink); }
.nav-links a.active::after{
  content:'';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}
.nav-cta{
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover{ background: var(--accent-deep) !important; box-shadow: 0 6px 16px rgba(30,136,229,0.25); }
.nav-cta::after{ display: none !important; }

.mobile-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--ink);
}

@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Fade-up on scroll for sections (only active when JS adds .js-anim) */
.js-anim .fade-up{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.js-anim .fade-up.in-view{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .js-anim .fade-up{ opacity: 1; transform: none; transition: none; }
}

section{ padding: 100px 0; }
section:first-of-type{ padding-top: 80px; }

/* ============ TRUST BAR ============ */
.trust-bar{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--ink-soft);
}
.trust-bar .dot-live{
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(30,136,229,0.18);
}

/* ============ HERO ============ */
section.hero,
section.hero:first-of-type{
  padding: 0;
  position: relative;
}
.hero > .container{
  background:
    radial-gradient(ellipse 80% 60% at 78% 8%, rgba(255,255,255,0.22), transparent 60%),
    radial-gradient(ellipse 70% 55% at 12% 95%, rgba(255,255,255,0.14), transparent 65%),
    linear-gradient(165deg, #74b3ef 0%, #3a98e5 45%, #1e7cd3 100%);
  border-radius: 28px;
  padding: 72px 64px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 24px 48px rgba(33,150,243,0.22);
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 48px;
  max-width: none;
  margin: 0 24px;
}
.hero-text{ position: relative; z-index: 1; }
.hero .hero-eyebrow{ justify-content: flex-start; }
.hero h1{
  text-align: left;
  max-width: 22ch;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px;
}
.hero .hero-sub{
  text-align: left;
  max-width: 460px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 32px;
}
.hero .cta-row{ justify-content: flex-start; }

/* ----- Centered hero (about page) ----- */
.hero-centered > .container{
  display: block;
  text-align: center;
  padding: 88px 64px 32px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(255,255,255,0.12), transparent 65%),
    linear-gradient(180deg, #6aabe9 0%, #3a98e5 50%, #1e7cd3 100%);
}
.hero-centered > .container::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero-centered .hero-text{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-centered .hero-eyebrow{ justify-content: center; }
.hero-centered h1{
  text-align: center;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .hero-sub{
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .cta-row{ justify-content: center; }
.hero-compact > .container{ padding: 48px 48px 56px; }
.hero-compact h1{ font-size: clamp(24px, 2.6vw, 34px); }
.hero-compact .hero-sub{ font-size: 14px; margin-bottom: 0; max-width: 560px; }
@media (max-width: 720px){
  .hero-compact > .container{ padding: 36px 24px 40px; }
}
.hero-stats{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 56px auto 0;
  align-items: center;
}
.stat-card{
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(13,95,166,0.18);
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 36px rgba(13,95,166,0.22); }
.stat-card-featured{
  background: linear-gradient(180deg, #1e88e5 0%, #1565c0 100%);
  color: #fff;
  transform: translateY(-12px);
  box-shadow: 0 22px 44px rgba(13,95,166,0.34);
  border-color: rgba(255,255,255,0.25);
}
.stat-card-featured:hover{ transform: translateY(-16px); box-shadow: 0 26px 50px rgba(13,95,166,0.40); }
.stat-label{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.stat-card-featured .stat-label{ color: rgba(255,255,255,0.85); }
.stat-value{
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.stat-sub{
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.stat-card-featured .stat-sub{ color: rgba(255,255,255,0.88); }
@media (max-width: 720px){
  .hero-centered > .container{ padding: 64px 28px 72px; }
  .hero-stats{ grid-template-columns: 1fr; gap: 14px; }
  .stat-card-featured{ transform: none; }
  .stat-card-featured:hover{ transform: translateY(-4px); }
}

/* ----- Centered hero product grid (products page) ----- */
.hero-products{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 60px auto 0;
}
.hero-product{
  --tile-accent: #1e88e5;
  --tile-accent-deep: #0d5fa6;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 16px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.hero-product::before{
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tile-accent), transparent 65%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.hero-product:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.55);
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.10));
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}
.hero-product:hover::before{
  opacity: 0.45;
  transform: scale(1.1);
}
.hero-product:nth-child(2){ --tile-accent: #66bb6a; --tile-accent-deep: #2e7d32; }
.hero-product:nth-child(3){ --tile-accent: #ab47bc; --tile-accent-deep: #6a1b9a; }
.hero-product:nth-child(4){ --tile-accent: #ef5350; --tile-accent-deep: #c62828; }
.hero-product:nth-child(5){ --tile-accent: #26a69a; --tile-accent-deep: #00838f; }
.hero-product:nth-child(6){ --tile-accent: #ffa726; --tile-accent-deep: #f57c00; }
.hero-product-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tile-accent), var(--tile-accent-deep));
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.3s ease;
}
.hero-product-icon svg{ width: 22px; height: 22px; }
.hero-product:hover .hero-product-icon{ transform: scale(1.06) rotate(-3deg); }
.hero-product-body{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.hero-product-name{
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: #fff;
}
.hero-product-tag{
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.hero-product-arrow{
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}
.hero-product:hover .hero-product-arrow{
  color: #fff;
  transform: translateX(3px);
}
@media (max-width: 860px){
  .hero-products{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .hero-products{ grid-template-columns: 1fr; }
}


/* ----- Hero mock cards ----- */
.hero-visual{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mock-card{
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(13,30,53,0.25);
  font-family: var(--sans);
}
.mock-card-primary{
  transform: translateY(-8px);
}
.mc-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.mc-label{
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mc-amount{
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.mc-pill{
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2e7d32;
  background: rgba(46,125,50,0.10);
  padding: 4px 10px;
  border-radius: 999px;
}
.mc-tag{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.mc-bars{
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
}
.mc-bars span{
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-radius: 6px 6px 2px 2px;
  display: block;
}
.mock-card-list{
  transform: translateX(-32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mc-row{
  display: flex;
  align-items: center;
  gap: 12px;
}
.mc-dot{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mc-dot-blue{ background: rgba(30,136,229,0.15); border: 2px solid var(--accent); }
.mc-dot-green{ background: rgba(46,125,50,0.15); border: 2px solid #2e7d32; }
.mc-dot-orange{ background: rgba(245,124,0,0.15); border: 2px solid #f57c00; }
.mc-row-text{ flex: 1; line-height: 1.25; }
.mc-row-text strong{ font-size: 14px; color: var(--ink); display: block; }
.mc-row-text small{ font-size: 11px; color: var(--muted); }
.mc-stat{
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}
.hero > .container::before{
  content:'';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.hero > .container::after{
  content:'';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow{
  font-family: 'Tinos', 'Times New Roman', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow::before{
  content:'';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
h1{
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 18ch;
}
h1 em{
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero h1{
  color: #fff;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 32px;
}
.hero h1 em{ color: #fff; opacity: 1; font-style: normal; font-weight: 600; }
.hero-sub{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero .hero-sub{
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 44px;
}
.cta-row{ display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  font-family: var(--sans);
}
.btn-primary{
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover{ background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(30,136,229,0.30); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.arrow{
  display: inline-block;
  vertical-align: -0.12em;
  margin-left: 0.35em;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.btn:hover .arrow,
.product-link:hover .arrow,
.item:hover .item-cta .arrow,
.form-submit:hover .arrow{ transform: translateX(4px); }

.hero .btn-primary{
  background: #fff;
  color: var(--accent-deep);
}
.hero .btn-primary:hover{ background: var(--paper); color: var(--accent-deep); }
.hero .btn-ghost{
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.hero .btn-ghost:hover{ background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

/* ============ PRODUCT MARQUEE ============ */
.product-strip{
  background: transparent;
  padding: 64px 0 32px;
  margin-top: 0;
}
.product-strip-label{
  font-family: 'Tinos', 'Times New Roman', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}
.strip-carousel{
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
.product-strip-grid{
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 12px 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-strip-grid::-webkit-scrollbar{ display: none; }
.product-strip-grid > .item{
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
}
@media (max-width: 1100px){
  .product-strip-grid > .item{ flex: 0 0 calc((100% - 48px) / 3); }
}
.product-strip-grid .item{
  --card-accent: var(--accent);
  --card-accent-deep: var(--accent-deep);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 4px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(194,213,231,0.55);
  border-radius: 20px;
  padding: 26px 24px;
  text-align: left;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: none;
}
.product-strip-grid .item-icon{
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
}
.product-strip-grid .item-title,
.product-strip-grid .item-tag,
.product-strip-grid .item-cta{
  grid-column: 2;
}
.product-strip-grid .item::before{
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, var(--card-accent) 0%, transparent 65%);
  opacity: 0.10;
  z-index: -1;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.product-strip-grid .item:nth-child(2){
  --card-accent: #2e7d32;
  --card-accent-deep: #1b5e20;
}
.product-strip-grid .item:nth-child(3){
  --card-accent: #6a1b9a;
  --card-accent-deep: #4a148c;
}
.product-strip-grid .item:nth-child(4){
  --card-accent: #c62828;
  --card-accent-deep: #8e0000;
}
.product-strip-grid .item:nth-child(5){
  --card-accent: #00838f;
  --card-accent-deep: #005662;
}
.product-strip-grid .item:nth-child(6){
  --card-accent: #f57c00;
  --card-accent-deep: #e65100;
}
.product-strip-grid .item-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(12,30,51,0.18);
  transition: transform 0.3s ease;
}
.product-strip-grid .item-icon svg{
  width: 26px;
  height: 26px;
}
.product-strip-grid .item-title{
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.product-strip-grid .item-tag{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.product-strip-grid .item-cta{
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--card-accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-strip-grid .item:hover{
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--card-accent) 35%, transparent);
  box-shadow: 0 4px 12px rgba(12,30,51,0.08);
}
.product-strip-grid .item:hover::before{
  opacity: 0.18;
  transform: scale(1.05);
}
.product-strip-grid .item:hover .item-icon{
  transform: scale(1.06) rotate(-3deg);
}
.product-strip-grid .item:hover .item-cta{
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 720px){
  .product-strip-grid .item-cta{ opacity: 1; transform: none; }
}

/* ============ SECTION HEADER ============ */
.section-head{
  margin: 0 auto 64px;
  max-width: 720px;
  text-align: center;
}
.story-body{
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.story-body p{ margin-bottom: 18px; }
.story-body p:last-child{ margin-bottom: 0; }
.story-body strong{ color: var(--ink); font-weight: 600; }

/* ----- Our story timeline (horizontal, hover-reveal) ----- */
.story-timeline{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 8px;
  position: relative;
}
.story-timeline::before{
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  top: 56px;
  height: 2px;
  background: linear-gradient(90deg, rgba(30,136,229,0.10) 0%, rgba(30,136,229,0.55) 50%, rgba(30,136,229,0.10) 100%);
  z-index: 0;
}
.story-step{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(194,213,231,0.55);
  border-radius: 18px;
  padding: 24px 26px 26px;
  box-shadow: 0 4px 18px rgba(12,30,51,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  outline: none;
  cursor: default;
}
.story-step:hover,
.story-step:focus-within{
  transform: translateY(-6px);
  border-color: rgba(30,136,229,0.35);
  box-shadow: 0 18px 40px rgba(12,30,51,0.12);
}
.story-step-top{
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-step-icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30,136,229,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.story-step-icon svg{ width: 24px; height: 24px; }
.story-step:hover .story-step-icon,
.story-step:focus-within .story-step-icon{
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}
.story-step-year{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-left: auto;
}
.story-step-body{ display: flex; flex-direction: column; gap: 10px; }
.story-step-tag{
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30,136,229,0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.story-step-title{
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.story-step-desc{
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.5s ease, opacity 0.35s ease, transform 0.4s ease, margin-top 0.35s ease;
}
.story-step-desc strong{ color: var(--ink); font-weight: 600; }
.story-step:hover .story-step-desc,
.story-step:focus-within .story-step-desc{
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
}
@media (max-width: 880px){
  .story-timeline{ grid-template-columns: 1fr; gap: 18px; }
  .story-timeline::before{ display: none; }
  .story-step-desc{ max-height: none; opacity: 1; transform: none; }
}
.section-head .section-eyebrow{
  display: inline-flex;
  justify-content: center;
}
.section-head h2{
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow{
  font-family: 'Tinos', 'Times New Roman', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
h2{
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
h2 em{ font-style: italic; color: var(--accent); font-weight: 500; }
.section-sub{
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ PRODUCTS GRID ============ */
.products-carousel{
  position: relative;
  padding: 0 12px;
}
.products-grid{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 12px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-grid::-webkit-scrollbar{ display: none; }
.products-grid > .product-card{
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  margin: 0;
}
@media (max-width: 960px){
  .products-grid > .product-card{ flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px){
  .products-grid > .product-card{ flex: 0 0 100%; }
}

/* ----- Carousel controls (shared) ----- */
.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(30,136,229,0.32);
  transition: background 0.2s, transform 0.2s, opacity 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover{
  background: var(--accent-deep);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 28px rgba(13,95,166,0.40);
}
.carousel-btn:disabled{
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--muted);
  box-shadow: none;
  pointer-events: none;
}
.carousel-prev{ left: -22px; }
.carousel-next{ right: -22px; }
.carousel-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel-controls .carousel-btn{
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  box-shadow: 0 6px 14px rgba(30,136,229,0.25);
}
.carousel-controls .carousel-btn:hover{
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(13,95,166,0.32);
}
.carousel-controls .carousel-dots{ margin: 0; }
.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.carousel-dot:hover{ background: var(--ink-soft); }
.carousel-dot.active{
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 960px){
  .carousel-prev{ left: -10px; }
  .carousel-next{ right: -10px; }
}
@media (max-width: 640px){
  .carousel-btn{ width: 40px; height: 40px; }
  .carousel-prev{ left: -6px; }
  .carousel-next{ right: -6px; }
}

.product-card{
  background: #fff;
  border: 1px solid rgba(194,213,231,0.6);
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
.product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(30,136,229,0.10);
  border-color: rgba(30,136,229,0.35);
}
.product-tag{
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-deep);
  background: rgba(30,136,229,0.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
}
.product-card h3{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.product-tagline{
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.product-card p.desc{
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.product-card ul{
  list-style: none;
  margin-bottom: 24px;
}
.product-card ul li{
  font-size: 14px;
  color: var(--ink-soft);
  padding: 10px 0 10px 28px;
  border-top: none;
  position: relative;
}
.product-card ul li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
}
.product-card ul li::after{
  content: '';
  position: absolute;
  left: 5px;
  top: 17px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.product-link{
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-link:hover{ color: var(--accent-deep); }

/* ============ DARK SECTION (kept light for Rampay style) ============ */
.section-dark{
  background: transparent;
  color: var(--ink);
}
.section-dark h2{ color: var(--ink); }
.section-dark .section-sub{ color: var(--ink-soft); }

/* ============ WHY US ============ */
.why-section{ background: var(--bg-soft); margin: 0 -100vw; padding: 100px 100vw; }
.why-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.why-head .section-eyebrow{ justify-content: center; }
.why-head h2{ margin-left: auto; margin-right: auto; }
/* ----- Roadmap (about page: Where we're going) ----- */
.roadmap-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.roadmap-card{
  --card-accent: var(--accent);
  --card-accent-deep: var(--accent-deep);
  position: relative;
  background: #fff;
  border: 1px solid rgba(194,213,231,0.55);
  border-radius: 22px;
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.roadmap-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), var(--card-accent-deep));
}
.roadmap-card::after{
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, var(--card-accent) 0%, transparent 65%);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.roadmap-card > *{ position: relative; z-index: 1; }
.roadmap-card:nth-child(2){
  --card-accent: #2e7d32;
  --card-accent-deep: #1b5e20;
}
.roadmap-card:nth-child(3){
  --card-accent: #f57c00;
  --card-accent-deep: #e65100;
}
.roadmap-card:hover{
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-accent) 35%, transparent);
  box-shadow: 0 16px 32px rgba(12,30,51,0.08);
}
.roadmap-card:hover::after{ opacity: 0.16; }
.roadmap-top{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}
.roadmap-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-deep));
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(12,30,51,0.10);
}
.roadmap-tag{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent);
}
.roadmap-card h3{
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.roadmap-card p{
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.roadmap-foot{
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed rgba(194,213,231,0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-accent);
}
.roadmap-foot svg{
  transition: transform 0.25s ease;
}
.roadmap-card:hover .roadmap-foot svg{ transform: translateX(4px); }
@media (max-width: 960px){
  .roadmap-grid{ grid-template-columns: 1fr; gap: 18px; max-width: 560px; }
}

/* ----- Beliefs (about page: What we believe) ----- */
.beliefs-section{
  background: var(--bg-soft);
  margin: 0 -100vw;
  padding: 100px 100vw;
}
.beliefs-layout{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.beliefs-head{
  position: sticky;
  top: 100px;
}
.beliefs-head .section-eyebrow{
  display: inline-flex;
  justify-content: flex-start;
  margin-bottom: 14px;
}
.beliefs-head h2{
  font-size: clamp(28px, 3.8vw, 44px);
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 18px;
  line-height: 1.1;
}
.beliefs-head .section-sub{
  text-align: left;
  margin: 0;
  max-width: 380px;
}
.beliefs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.belief-item{
  background: #fff;
  border: 1px solid rgba(194,213,231,0.6);
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.belief-item:hover{
  transform: translateY(-4px);
  border-color: rgba(30,136,229,0.30);
  box-shadow: 0 12px 28px rgba(12,30,51,0.08);
}
.belief-item:nth-child(1),
.belief-item:nth-child(4){
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 55%, #0d5fa6 100%);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.belief-item:nth-child(1):hover,
.belief-item:nth-child(4):hover{
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 16px 32px rgba(13,95,166,0.32);
}
.belief-item:nth-child(1) .belief-num,
.belief-item:nth-child(4) .belief-num{
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.belief-item:nth-child(1) h4,
.belief-item:nth-child(4) h4{ color: #fff; }
.belief-item:nth-child(1) p,
.belief-item:nth-child(4) p{ color: rgba(255,255,255,0.85); }
.belief-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(30,136,229,0.12);
  color: var(--accent-deep);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}
.belief-item h4{
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.belief-item p{
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px){
  .beliefs-layout{ grid-template-columns: 1fr; gap: 36px; }
  .beliefs-head{ position: static; }
  .beliefs-grid{ grid-template-columns: 1fr; }
}

/* ----- Why tabs ----- */
.why-tabs{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.why-tab-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-tab{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: var(--sans);
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.why-tab:hover{
  background: rgba(30,136,229,0.05);
  color: var(--ink);
}
.why-tab.active{
  background: #fff;
  border-color: rgba(30,136,229,0.25);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(12,30,51,0.06);
}
.why-tab-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30,136,229,0.10);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}
.why-tab.active .why-tab-num{
  background: var(--accent);
  color: #fff;
}
.why-tab-label{
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.why-tab-chevron{
  opacity: 0;
  transform: translateX(-4px);
  color: var(--accent);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.why-tab.active .why-tab-chevron{
  opacity: 1;
  transform: translateX(0);
}
.why-tab-stroke{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.why-tab.active .why-tab-stroke{ opacity: 1; }
.why-tab-stroke rect{
  x: 1px;
  y: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  rx: 14px;
  ry: 14px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.why-tab.active .why-tab-stroke rect{
  animation: whyStrokeDraw var(--why-duration, 6s) linear forwards;
}
.why-tabs.paused .why-tab.active .why-tab-stroke rect{
  animation-play-state: paused;
}
@keyframes whyStrokeDraw{
  from{ stroke-dashoffset: 100; }
  to{ stroke-dashoffset: 0; }
}

.why-tab-panels{
  position: relative;
  background: #fff;
  border: 1px solid rgba(194,213,231,0.6);
  border-radius: 20px;
  padding: 44px 44px;
  min-height: 260px;
  box-shadow: 0 4px 18px rgba(12,30,51,0.05);
}
.why-tab-panel{
  display: none;
  animation: whyFade 0.35s ease;
}
.why-tab-panel.active{ display: block; }
.why-tab-eyebrow{
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30,136,229,0.08);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.why-tab-panel h3{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.why-tab-panel p{
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
@keyframes whyFade{
  from{ opacity: 0; transform: translateY(6px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 820px){
  .why-tabs{ grid-template-columns: 1fr; gap: 20px; }
  .why-tab-panels{ padding: 32px 28px; }
}

/* ============ ABOUT PAGE ============ */
.about-hero{
  padding: 100px 0 60px;
}

.about-section{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
  isolation: isolate;
}
.about-section:nth-of-type(even){
  border-top-color: transparent;
}
.about-section:nth-of-type(even)::before{
  content: none;
}
.about-label{
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  position: sticky;
  top: 120px;
}
.about-body p{
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-body p:first-child::first-letter{
  font-family: var(--serif);
  font-size: 72px;
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--accent);
  font-weight: 600;
}
.about-body strong{
  color: var(--ink);
  font-weight: 600;
}

.credentials{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.credential{
  background: var(--paper);
  border-left: 2px solid var(--accent);
  padding: 18px 22px;
}
.credential .k{
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.credential .v{
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}

/* ============ SERVICES / PRODUCTS PAGE ============ */
body{ counter-reset: prodnum; }
.service-block{
  --svc-accent: #1e88e5;
  --svc-accent-deep: #0d5fa6;
  counter-increment: prodnum;
  position: relative;
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px 40px;
  padding: 80px 12px 70px;
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}
.service-block + .service-block{
  border-top: 1px solid rgba(194,213,231,0.45);
}
.service-block::before{
  content: counter(prodnum, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 0;
  font-family: var(--serif);
  font-size: 220px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--svc-accent) 18%, transparent) 0%,
    transparent 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.service-block:nth-of-type(2){ --svc-accent: #43a047; --svc-accent-deep: #1b5e20; }
.service-block:nth-of-type(3){ --svc-accent: #8e24aa; --svc-accent-deep: #4a148c; }
.service-block:nth-of-type(4){ --svc-accent: #e53935; --svc-accent-deep: #8e0000; }
.service-block:nth-of-type(5){ --svc-accent: #00897b; --svc-accent-deep: #005662; }
.service-block:nth-of-type(6){ --svc-accent: #fb8c00; --svc-accent-deep: #e65100; }

/* Flatten the inner wrappers so we can place each element with grid */
.service-meta{ display: contents; }
.service-features{ display: contents; }

/* Header row: badge → h3 → product-sub → description, all full width */
.service-meta .badge{
  grid-column: 1 / -1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-accent-deep);
  background: color-mix(in srgb, var(--svc-accent) 14%, transparent);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  justify-self: start;
  margin: 0;
  position: relative;
  z-index: 2;
}
.service-meta .badge::before{
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--svc-accent);
}
.service-meta h3{
  grid-column: 1 / -1;
  grid-row: 2;
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 14px 0 6px;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.service-meta h3 em{ font-style: italic; color: var(--svc-accent); font-weight: 500; }
.service-meta .product-sub{
  grid-column: 1 / -1;
  grid-row: 3;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--svc-accent-deep);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 22px;
  position: relative;
  z-index: 2;
}
.service-meta > p:not(.product-sub){
  grid-column: 1 / -1;
  grid-row: 4;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 880px;
  position: relative;
  z-index: 2;
}

/* Bottom row: features (h6 + list) on left, ideal-for on right */
.service-features h6{
  grid-column: 1;
  grid-row: 5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 18px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-features h6::after{
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--svc-accent) 30%, transparent), transparent);
}
.feature-list{
  grid-column: 1;
  grid-row: 6;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 28px;
  position: relative;
  z-index: 2;
}
.feature-list li{
  padding: 10px 0 10px 30px;
  font-size: 13.5px;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}
.feature-list li:hover{
  color: var(--ink);
  transform: translateX(2px);
}
.feature-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--svc-accent), var(--svc-accent-deep));
  box-shadow: 0 2px 6px color-mix(in srgb, var(--svc-accent) 35%, transparent);
}
.feature-list li::after{
  content: '';
  position: absolute;
  left: 5px;
  top: 17px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.ideal-for{
  grid-column: 2;
  grid-row: 5 / span 2;
  align-self: stretch;
  margin: 0;
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--svc-accent) 14%, #fff) 0%,
    color-mix(in srgb, var(--svc-accent) 4%, #fff) 100%);
  border: 1px solid color-mix(in srgb, var(--svc-accent) 25%, transparent);
  border-radius: 20px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.ideal-for::before{
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--svc-accent), transparent 65%);
  opacity: 0.20;
  pointer-events: none;
}
.ideal-for::after{
  content: '\2605';
  position: absolute;
  left: 26px;
  top: 28px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--svc-accent), var(--svc-accent-deep));
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--svc-accent) 35%, transparent);
}
.ideal-for span{
  font-family: var(--sans);
  font-weight: 700;
  color: var(--svc-accent-deep);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin: 56px 0 8px;
  position: relative;
  z-index: 1;
}
.ideal-for p{
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px){
  .service-block{
    grid-template-columns: 1fr;
    padding: 56px 0 50px;
  }
  .service-block::before{ font-size: 160px; right: 0; }
  .feature-list{ grid-column: 1 / -1; }
  .service-features h6{ grid-column: 1 / -1; }
  .ideal-for{
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 24px;
  }
}
@media (max-width: 560px){
  .feature-list{ grid-template-columns: 1fr; }
  .service-block::before{ font-size: 120px; }
}

.visit-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.visit-link:hover{ color: var(--accent-deep); }

/* ============ CONTACT PAGE ============ */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 60px;
}
.contact-info-head{
  margin-bottom: 28px;
}
.contact-info-eyebrow{
  font-family: 'Tinos', 'Times New Roman', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}
.contact-info-head h2{
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  margin-bottom: 14px;
}
.contact-info-head p{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 440px;
}
.contact-item{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(194,213,231,0.6);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-item:hover{
  transform: translateY(-2px);
  border-color: rgba(30,136,229,0.35);
  box-shadow: 0 10px 24px rgba(12,30,51,0.06);
}
.contact-item-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 6px 14px rgba(30,136,229,0.22), inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.contact-item-icon svg{ width: 22px; height: 22px; }
.contact-item-body{
  min-width: 0;
}
.contact-item .label{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-item .value{
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-item a{
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover{ color: var(--accent); }

.contact-form{
  background: #fff;
  border: 1px solid rgba(194,213,231,0.6);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 6px 24px rgba(12,30,51,0.05);
}
.contact-form h3{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-form > p{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.field{ margin-bottom: 20px; }
.field label{
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field textarea,
.field select{
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus{
  box-shadow: 0 0 0 4px rgba(30,136,229,0.12);
}
.field input:focus,
.field textarea:focus,
.field select:focus{
  outline: none;
  border-color: var(--accent);
}
.field textarea{ min-height: 120px; resize: vertical; }
.form-submit{
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.form-submit:hover{ background: var(--accent-deep); box-shadow: 0 10px 24px rgba(30,136,229,0.30); }
.form-msg{
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent);
  text-align: center;
  display: none;
}
.form-msg.show{ display: block; }
.form-msg.is-error{ color: #c62828; }

/* ============ FAQ ============ */
.faq-section{
  padding: 80px 0;
}
.faq-section .section-head{
  text-align: center;
  margin: 0 auto 48px;
}
.faq-section .section-head h2{
  margin-left: auto;
  margin-right: auto;
}
.faq-list{
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item{
  background: #fff;
  border: 1px solid rgba(194,213,231,0.6);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover{ box-shadow: 0 6px 20px rgba(12,30,51,0.06); }
.faq-question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}
.faq-question::-webkit-details-marker{ display: none; }
.faq-question .faq-icon{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.faq-question .faq-icon svg{
  width: 20px;
  height: 20px;
  display: block;
}
.faq-question .faq-icon .icon-up{ display: none; }
.faq-item[open] .faq-icon{ background: var(--accent-deep); }
.faq-item[open] .faq-icon .icon-down{ display: none; }
.faq-item[open] .faq-icon .icon-up{ display: block; }
.faq-answer{
  padding: 0 26px 22px 26px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ ABOUT STATS SECTION ============ */
.stats-section{
  background: #ffffff;
  padding: 32px 0 40px;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.stat-card{
  background: #fff;
  border: 1px solid rgba(194,213,231,0.65);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.stat-card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(75,160,239,0.04), rgba(25,118,210,0) 60%);
  pointer-events: none;
}
.stat-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30,136,229,0.08);
  border-color: rgba(30,136,229,0.25);
}
.stat-num{
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(135deg, #4ba0ef 0%, #1976d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.stat-label{
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
}

@media (max-width: 900px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .stats-section{ padding: 60px 0 20px; }
}
@media (max-width: 500px){
  .stats-grid{ grid-template-columns: 1fr; }
}

/* ============ ABOUT PRODUCTS SHOWCASE ============ */
.products-showcase{
  background: #f4f8fc;
  padding: 100px 0;
}
.products-showcase .section-head{ margin-bottom: 56px; }
.ps-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.ps-card{
  background: #fff;
  border: 1px solid rgba(194,213,231,0.6);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 6px 24px rgba(12,30,51,0.05);
}
.ps-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(30,136,229,0.14);
}
.ps-card::after{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.85;
}
.ps-card-blue::after{ background: linear-gradient(90deg, #4ba0ef, #1976d2); }
.ps-card-green::after{ background: linear-gradient(90deg, #4caf50, #2e7d32); }
.ps-card-orange::after{ background: linear-gradient(90deg, #ffa726, #ef6c00); }
.ps-card-purple::after{ background: linear-gradient(90deg, #ab47bc, #6a1b9a); }
.ps-card-teal::after{ background: linear-gradient(90deg, #26a69a, #00695c); }
.ps-card-pink::after{ background: linear-gradient(90deg, #ec407a, #c2185b); }

.ps-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
}
.ps-card-blue .ps-icon{ background: linear-gradient(135deg, #4ba0ef, #1976d2); box-shadow: 0 8px 18px rgba(33,150,243,0.25); }
.ps-card-green .ps-icon{ background: linear-gradient(135deg, #4caf50, #2e7d32); box-shadow: 0 8px 18px rgba(46,125,50,0.25); }
.ps-card-orange .ps-icon{ background: linear-gradient(135deg, #ffa726, #ef6c00); box-shadow: 0 8px 18px rgba(239,108,0,0.25); }
.ps-card-purple .ps-icon{ background: linear-gradient(135deg, #ab47bc, #6a1b9a); box-shadow: 0 8px 18px rgba(106,27,154,0.25); }
.ps-card-teal .ps-icon{ background: linear-gradient(135deg, #26a69a, #00695c); box-shadow: 0 8px 18px rgba(0,105,92,0.25); }
.ps-card-pink .ps-icon{ background: linear-gradient(135deg, #ec407a, #c2185b); box-shadow: 0 8px 18px rgba(194,24,91,0.25); }

.ps-tag{
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ps-card h3{
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.ps-card p{
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}
.ps-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-deep);
  transition: gap 0.2s;
}
.ps-link:hover{ gap: 10px; }
.ps-card-green .ps-link{ color: #2e7d32; }
.ps-card-orange .ps-link{ color: #ef6c00; }
.ps-card-purple .ps-link{ color: #6a1b9a; }
.ps-card-teal .ps-link{ color: #00695c; }
.ps-card-pink .ps-link{ color: #c2185b; }

@media (max-width: 900px){
  .ps-grid{ grid-template-columns: 1fr; }
  .products-showcase{ padding: 60px 0; }
}

/* ============ CTA BANNER ============ */
.cta-banner{
  background: transparent;
  color: var(--ink);
  padding: 40px 0;
  position: relative;
}
.cta-banner > .container{
  background:
    radial-gradient(ellipse 80% 60% at 78% 8%, rgba(255,255,255,0.22), transparent 60%),
    radial-gradient(ellipse 70% 55% at 12% 95%, rgba(255,255,255,0.14), transparent 65%),
    linear-gradient(165deg, #74b3ef 0%, #3a98e5 45%, #1e7cd3 100%);
  border-radius: 22px;
  padding: 30px 48px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(33,150,243,0.20);
  max-width: none;
  margin: 0 24px;
  position: relative;
}
.cta-banner-inner{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  position: relative;
}
.cta-banner h2{
  font-size: clamp(20px, 2.2vw, 28px);
  color: #fff;
  margin: 0;
  max-width: none;
  line-height: 1.25;
  letter-spacing: -0.01em;
  flex: 1;
  white-space: normal;
}
.cta-banner .btn-primary{ flex-shrink: 0; }
@media (max-width: 720px){
  .cta-banner{ padding: 30px 0; }
  .cta-banner-inner{ flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta-banner > .container{ padding: 28px 24px; border-radius: 18px; }
  .cta-banner h2{ font-size: 20px; }
}
.cta-banner h2 em{ color: #fff; opacity: 0.92; font-style: italic; font-weight: 500; }
.cta-banner .btn-primary{
  background: #fff;
  color: var(--accent-deep);
}
.cta-banner .btn-primary:hover{ background: var(--paper); color: var(--accent-deep); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }

/* ============ FOOTER ============ */
footer{
  background:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 8% 100%, rgba(255,255,255,0.08), transparent 65%),
    linear-gradient(135deg, #1e88e5 0%, #1565c0 50%, #0d5fa6 100%);
  color: #fff;
  padding: 72px 0 30px;
  border-top: none;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo{
  font-size: 28px;
  margin-bottom: 16px;
  display: inline-flex;
  color: #fff;
}
.footer-addresses{
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 360px;
}
.footer-address h6{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
  font-weight: 700;
}
.footer-address p{
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.footer-col h6{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul{ list-style: none; }
.footer-col li{ padding: 6px 0; }
.footer-col a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover{ color: #fff; }
.footer-col a .contact-icon{
  display: inline-block;
  vertical-align: -2px;
  margin-right: 10px;
  opacity: 0.85;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.footer-col a:hover .contact-icon{ opacity: 1; }
.footer-bottom{
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-policies{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-policies a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-policies a:hover{ color: #fff; }
.footer-policies span{
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}

/* ----- Policy pages (privacy / terms / refund) ----- */
.policy-body{
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 0 80px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.policy-body .policy-meta{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.policy-body h2{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.policy-body h2:first-of-type{ margin-top: 0; }
.policy-body p{ margin-bottom: 16px; }
.policy-body ul{ padding-left: 22px; margin-bottom: 18px; }
.policy-body li{ margin-bottom: 8px; }
.policy-body strong{ color: var(--ink); font-weight: 600; }
.policy-body a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(30,136,229,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.policy-body a:hover{ color: var(--accent-deep); border-color: var(--accent-deep); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  .nav-inner{
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .nav-cta{ padding: 8px 16px !important; font-size: 13px; }
  .hero > .container{
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 40px;
    margin: 0 16px;
  }
  .mock-card-primary{ transform: none; }
  .mock-card-list{ transform: none; }
  .nav-links{
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }
  .nav-links.open{ transform: translateY(0); }
  .mobile-toggle{ display: block; }
  .product-strip-grid > .item{ flex: 0 0 calc((100% - 20px) / 2); }
  .product-strip-grid{ gap: 20px; }
  .products-grid{ grid-template-columns: 1fr; }
  .why-tabs{ grid-template-columns: 1fr; gap: 20px; }
  .about-section{ grid-template-columns: 1fr; gap: 24px; }
  .about-label{ position: static; }
  .service-block{ grid-template-columns: 1fr; gap: 32px; }
  .feature-list{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner-inner{ grid-template-columns: 1fr; }
  .credentials{ grid-template-columns: 1fr; }
  section{ padding: 60px 0; }
  .hero{ padding: 60px 0 50px; }
  .container{ padding: 0 24px; }
  .nav-inner{ padding: 18px 24px; }
}

@media (max-width: 500px){
  .product-strip-grid > .item{ flex: 0 0 100%; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; gap: 8px; }
  .contact-form{ padding: 32px 24px; }
}
