/* ============================================================
   Carol InDecor — Design System
   ============================================================ */

:root {
  --white: #ffffff;
  --primary: #046bd2;
  --primary-dark: #0357a8;
  --primary-light: #3d8ee8;
  --navy: #1e293b;
  --navy-soft: #2a3a52;
  --bg-light: #f0f5fa;

  --text-body: #46536b;
  --text-muted: #7c8aa3;
  --accent-gold: #edad23;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 7px;
  --radius-md: 7px;
  --radius-lg: 7px;

  --shadow-soft: 0 10px 40px -12px rgba(30, 41, 59, 0.15);
  --shadow-strong: 0 25px 60px -15px rgba(4, 107, 210, 0.25);

  --container: 1240px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.section {
  padding: 110px 0;
  position: relative;
}
.sec-story { padding: 90px 0; }
.section--light { background: var(--bg-light); }
.section--navy { background: var(--navy); color: #cfd8e6; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.h-lg { font-size: clamp(1.7rem, 2.5vw, 2.4rem); }
p.lead { font-size: 1.02rem; color: var(--text-muted); margin-top: 18px; }
h1 em, h2 em {
  font-style: italic;
  color: var(--primary-light);
  background: linear-gradient(90deg, #4fa3ef, #8ec6ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section--navy h2 em, .why-section h2 em, .cta-band h2 em {
  background: linear-gradient(90deg, #7fc0ff, #cfe6ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(4, 107, 210, 0.55);
}
.btn-outline {
  border: 1.5px solid rgba(30, 41, 59, 0.2);
  color: var(--navy);
}
.btn-outline.on-navy {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   Header
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1010;
  background: #111111;
  color: var(--white);
  transition: top var(--transition);
}
.announcement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 40px;
  min-height: 38px;
}
.announcement-track { position: relative; width: 100%; max-width: 560px; height: 18px; text-align: center; }
.announcement-item {
  position: absolute;
  inset: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-item.is-active { opacity: 1; transform: translateY(0); }
body.nav-open .announcement-bar { display: none; }
body.is-scrolled .announcement-bar { top: -60px; }

.site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(30,41,59,0.08);
  transition: all var(--transition), top var(--transition);
}
body.is-scrolled .site-header { top: 0; }
.site-header.is-scrolled {
  padding: 13px 0;
  background: var(--white);
  box-shadow: 0 4px 30px -10px rgba(30,41,59,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-img { width: 58px; height: 58px; object-fit: contain; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo-text-accent { color: var(--primary); }
.footer-logo .logo-img { width: 52px; height: 52px; }
.logo span.accent { color: #7fc0ff; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  background: rgba(30,41,59,0.06);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  position: relative;
  transition: all var(--transition);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.active { position: relative; z-index: 1002; background: rgba(30,41,59,0.08); }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { background: var(--navy); top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { background: var(--navy); top: 0; transform: rotate(-45deg); }
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(9,17,32,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}
body.nav-open .nav-backdrop { display: block; opacity: 1; }

/* ============================================================
   Banner Hero Slider
   ============================================================ */
.banner-hero {
  position: relative;
  width: 100%;
  margin-top: 115px;
}
.banner-hero-swiper { width: 100%; }
.banner-hero-swiper .swiper-slide { width: 100%; height: auto; }
.banner-hero-swiper .swiper-slide a { display: block; width: 100%; line-height: 0; }
.banner-hero-swiper .swiper-slide img {
  width: 100%; height: auto;
  object-fit: contain;
  display: block;
}
.banner-hero-pagination {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.banner-hero-pagination .swiper-pagination-bullet {
  width: 9px; height: 9px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  border-radius: 7px;
  transition: all var(--transition);
  cursor: pointer;
}
.banner-hero-pagination .swiper-pagination-bullet-active { width: 26px; background: var(--accent-gold); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 158px 0 90px;
  transition: padding-top var(--transition);
}
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide img,
.hero-swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.09);
  transition: transform 7s ease;
}
.hero-swiper .swiper-slide-active img,
.hero-swiper .swiper-slide-active video {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,17,32,0.35) 0%, rgba(9,17,32,0.28) 30%, rgba(9,17,32,0.5) 65%, rgba(9,17,32,0.85) 100%),
    radial-gradient(circle at 50% 30%, rgba(4,107,210,0.15), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.6) 40%, transparent 90%);
  pointer-events: none;
}
.hero-swiper-pagination {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  border-radius: 7px;
  transition: all var(--transition);
  cursor: pointer;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-light);
  width: 30px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.hero-frame {
  width: 100%;
  max-width: 1080px;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 56px 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content { max-width: 780px; width: 100%; min-width: 0; text-align: center; overflow-wrap: break-word; }
.hero-frame-footer {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hf-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.hf-contact svg { width: 18px; height: 18px; color: var(--accent-gold); flex-shrink: 0; }
.hf-social { display: flex; gap: 10px; min-width: 0; }
.hf-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--transition);
  flex-shrink: 0;
}
.hf-social a:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.hf-social svg { width: 15px; height: 15px; }
.hf-more { display: flex; align-items: center; gap: 8px; min-width: 0; flex-wrap: wrap; justify-content: center; color: #cfd8e6; font-size: 0.85rem; }
.hf-more strong { color: var(--white); }
.hf-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.hf-more:hover svg { transform: translateX(4px); }
.hero-tag {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 7px;
  background: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.25);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  margin-bottom: 16px;
}
.hero p.lead {
  color: #cfd8e6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.hero-stats { justify-content: center;
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
}
.hero-stat .num span { color: var(--primary-light); }
.hero-stat .label {
  font-size: 0.85rem;
  color: #8291ab;
  margin-top: 4px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #7e8ba3;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--primary-light), transparent);
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue { 0% { opacity: 0.2; } 50% { opacity: 1; } 100% { opacity: 0.2; } }

/* ============================================================
   Page Hero (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 228px 0 100px;
  background: linear-gradient(160deg, var(--navy) 0%, #16233a 60%, #0e1c30 100%);
  overflow: hidden;
  transition: padding-top var(--transition);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(4,107,210,0.3), transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #8291ab;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--primary-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); max-width: 720px; }
.page-hero p.lead { color: #b7c2d4; max-width: 620px; }

/* ============================================================
   Feature / Value Cards
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.feature-card {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.07);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 7px;
  background: var(--bg-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-icon.has-photo { padding: 0; overflow: hidden; }
.feature-icon.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-card:hover .feature-icon.has-photo { transform: none; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   Why Carol InDecor (sticky intro + feature list)
   ============================================================ */
.why-section { position: relative; overflow: hidden; padding-bottom: 70px; }
.why-section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.why-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(9,17,32,0.6);
}
.why-section .container { position: relative; z-index: 2; }
.why-section .section-head h2 { color: var(--white); }
.why-section .section-head .lead { color: #c7d2e0; }
.why-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(237,173,35,0.35);
  border-radius: 100px;
  padding: 10px 22px;
  margin-top: 24px;
  color: var(--white);
  font-size: 0.92rem;
  backdrop-filter: blur(6px);
}
.why-badge-inline strong { color: var(--accent-gold); font-weight: 800; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--white); }
.why-card p { color: #b7c2d4; font-size: 0.95rem; }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(237,173,35,0.16);
  color: var(--accent-gold);
  margin-bottom: 18px;
}
.why-icon svg { width: 21px; height: 21px; }
.why-cta-row { text-align: center; margin-top: 44px; }

/* Pill tags (brand aesthetic / values chips) */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  padding: 10px 22px;
  border-radius: 7px;
  border: 1.5px solid rgba(4,107,210,0.25);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(4,107,210,0.04);
}

.story-quote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--navy);
}
.value-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 36px;
}
.value-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.value-check .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(237,173,35,0.14);
  color: var(--accent-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-check .check svg { width: 13px; height: 13px; }
.split-cta-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

/* ============================================================
   About / Split Sections
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.split > * { min-width: 0; }
.split-visual { position: relative; height: 100%; }
.split-frame {
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--bg-light), var(--white));
  border: 1px solid rgba(30,41,59,0.08);
  padding: 50px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.split-frame svg { width: 100%; height: auto; }
.split-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.split-frame.has-photo { padding: 14px; }
.split-tag {
  position: absolute;
  bottom: -28px; left: -28px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f6c34e, var(--accent-gold) 55%, #c98a12);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 45px -12px rgba(237,173,35,0.55);
}
.split-tag-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.split-tag-icon svg { width: 22px; height: 22px; }
.split-tag strong { font-family: 'Lato', sans-serif; font-weight: 900; font-size: 1.9rem; line-height: 1; display: block; }
.split-tag span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }

.timeline { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.timeline-item { display: flex; gap: 18px; }
.timeline-dot {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: var(--bg-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 4px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   Stats band
   ============================================================ */
.stats-band {
  position: relative;
  background: linear-gradient(90deg, #c5def9 0%, #fff3da 100%);
  border-bottom: 1px solid rgba(30,41,59,0.06);
  padding: 20px 0 20px;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item { position: relative; padding: 0 24px; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: rgba(30,41,59,0.1);
}
.stat-icon { display: none; }
.stat-item .num {
  font-family: 'Lato', sans-serif;
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.stat-item .label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   Product Cards
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30,41,59,0.06);
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-6px); }
.product-visual {
  height: 190px;
  background: linear-gradient(150deg, var(--navy), #16233a);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual svg { width: 48%; height: auto; position: relative; z-index: 2; }
.product-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.product-visual img[src*="03a962e2351ec893035b6d3a12d83605"] { object-position: center 25%; }
.product-body { padding: 24px 26px; }
.product-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag-chip {
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 7px;
  background: var(--bg-light);
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Stacked scroll cards (Our Craft, desktop) ---------- */
.stack-cards { position: relative; padding-top: 10px; }
.stack-card {
  position: sticky;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,41,59,0.07);
  box-shadow: 0 30px 60px -24px rgba(30,41,59,0.28);
  overflow: hidden;
  margin-bottom: 32px;
}
.stack-card:nth-child(1) { top: 108px; z-index: 1; }
.stack-card:nth-child(2) { top: 128px; z-index: 2; }
.stack-card:nth-child(3) { top: 148px; z-index: 3; }
.stack-card:nth-child(4) { top: 168px; z-index: 4; }
.stack-card:nth-child(5) { top: 188px; z-index: 5; }
.stack-card:nth-child(6) { top: 208px; z-index: 6; }
.stack-card-visual { position: relative; overflow: hidden; min-height: 280px; }
.stack-card-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.stack-card-visual img[src*="03a962e2351ec893035b6d3a12d83605"] { object-position: center 25%; }
.stack-card-body { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.stack-card-num {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}
.stack-card-body h3 { font-size: 1.7rem; color: var(--navy); }
.stack-card-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.65; margin-bottom: 4px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--transition); }
.product-card:hover .link-arrow svg { transform: translateX(6px); }

/* ============================================================
   Kitchen Shapes Section
   ============================================================ */
.shapes-section { padding-top: 0; }
.shapes-banner {
  background: linear-gradient(120deg, var(--navy), var(--primary) 130%);
  padding: 34px 20px;
  text-align: center;
}
.shapes-banner h2 {
  color: var(--white);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  max-width: 780px;
  margin: 0 auto;
}
.shapes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 70px;
}
.shape-card { text-align: center; }
.shape-photo {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}
.shape-photo img { width: 100%; height: 100%; object-fit: cover; }
.shape-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.shape-card p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* Materials */
.material-card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--white), var(--bg-light));
  border: 1px solid rgba(30,41,59,0.07);
}
.material-card h3 { display:flex; align-items:center; gap:14px; font-size: 1.3rem; margin-bottom: 16px; }
.material-badge {
  width: 48px; height: 48px; border-radius: 7px;
  background: var(--primary); color: var(--white);
  display:flex; align-items:center; justify-content:center;
}
.material-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.material-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.material-list svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 12px 26px;
  border-radius: 7px;
  border: 1.5px solid rgba(30,41,59,0.15);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3.2;
  position: relative;
  background: linear-gradient(150deg, var(--navy), #223449);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 4/5.2; grid-row: span 2; }
.gallery-item svg { width: 46%; opacity: 0.9; position: relative; z-index: 2; transition: transform var(--transition); }
.gallery-item:hover svg { transform: scale(1.08); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4,107,210,0.85), transparent 55%);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 3;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay div strong { color: var(--white); display: block; font-size: 1rem; }
.gallery-overlay div span { color: #cfe4ff; font-size: 0.8rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30,41,59,0.06);
}
.stars { display: flex; gap: 4px; color: #f5a623; margin-bottom: 20px; }
.stars svg { width: 18px; height: 18px; }
.testimonial-card p.quote { font-size: 1.02rem; color: var(--navy); margin-bottom: 26px; font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.person-avatar {
  width: 46px; height: 46px; border-radius: 7px;
  background: var(--bg-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.person-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.person-role { font-size: 0.8rem; color: var(--text-muted); }

.products-swiper-mobile { display: none; }

.testimonials-swiper { position: relative; width: 100%; padding: 10px clamp(20px, 4vw, 64px) 54px; }
.testimonials-swiper .swiper-slide { height: auto; }
.testimonials-swiper .testimonial-card { height: 100%; }
.testimonials-pagination {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.testimonials-pagination .swiper-pagination-bullet {
  width: 9px; height: 9px;
  background: rgba(30,41,59,0.18);
  opacity: 1;
  border-radius: 7px;
  transition: all var(--transition);
  cursor: pointer;
}
.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 26px;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(9,17,32,0.72), rgba(20,30,48,0.6) 55%, rgba(9,17,32,0.78)),
    radial-gradient(circle at 90% 10%, rgba(245,166,35,0.16), transparent 50%);
}
.cta-band h2, .cta-band p { color: var(--white); position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
.cta-band p { opacity: 0.95; }
.cta-band > div { max-width: 620px; }
.cta-band .btn-primary { margin-top: 6px; }
.cta-band .btn-primary { background: var(--white); color: var(--navy); position: relative; z-index: 2; }

/* ---------- Split CTA (text / video / features) ---------- */
.cta-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cta-split-video {
  position: relative;
  background: var(--navy);
  min-height: 460px;
}
.cta-split-video video, .cta-split-video img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition);
}
.video-play svg { width: 26px; height: 26px; color: var(--navy); margin-left: 4px; }
.video-play::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  animation: pulse-ring 2.5s ease-out infinite;
}
.video-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.cta-split-video.playing .video-play { opacity: 0; pointer-events: none; }
@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.cta-split-content {
  background: linear-gradient(160deg, var(--navy), #16233a);
  padding: 52px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.cta-split-content .kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.cta-split-content .big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-top: -14px;
}
.cta-split-content > p { color: #b7c2d4; font-size: 0.98rem; margin-top: -10px; }
.cta-split-features { display: flex; flex-direction: column; gap: 16px; }
.cta-split-feature { display: flex; align-items: center; gap: 14px; }
.cta-split-feature .f-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(237,173,35,0.16);
  color: var(--accent-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-split-feature .f-icon svg { width: 18px; height: 18px; }
.cta-split-feature span { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.cta-split-content .btn-primary { align-self: flex-start; margin-top: 8px; }
/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  color: #cfd8e6;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 30px; font-size: 1.3rem; }
.contact-row { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-row .icon {
  width: 42px; height: 42px; border-radius: 7px;
  background: rgba(4,107,210,0.18); color: #6fb3ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .icon svg { width: 19px; height: 19px; }
.contact-row strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 0.9rem; color: #a9b4c9; }
.contact-row a:hover { color: #6fb3ff; }
.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 7px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.social-row a:hover { background: var(--primary); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30,41,59,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(30,41,59,0.12);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--bg-light);
  transition: all var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(4,107,210,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(30,41,59,0.08);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FAQ (AEO)
   ============================================================ */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  text-align: left;
}
.faq-question .plus {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--bg-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 1.1rem;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer p { padding: 0 28px 26px; color: var(--text-muted); font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #121e30; color: #8291ab; padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 18px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom .social-row a { width: 36px; height: 36px; }

/* ============================================================
   Utilities / animations
   ============================================================ */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

.back-to-top {
  position: fixed;
  bottom: 92px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-strong);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.6);
  z-index: 900;
  transition: all var(--transition);
}
.whatsapp-float svg { width: 22px; height: 22px; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px -6px rgba(37, 211, 102, 0.75); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .faq-columns { grid-template-columns: 1fr; max-width: 700px; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stat-item { padding: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shapes-grid { gap: 46px; }
}

@media (max-height: 780px) {
  .scroll-cue { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .why-badge-inline { padding: 10px 22px; font-size: 0.80rem; }
  .stat-item .label { font-size: 0.6rem; }
  .logo-img { width: 44px; height: 44px; }
  .logo-text { font-size: 1.02rem; }
  .header-inner { gap: 12px; }
  .shapes-grid { grid-template-columns: 1fr; }
  .main-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; z-index: 1001;
    background: var(--white); border: none; border-radius: 0; padding: 90px 36px 0;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 14px; transition: right var(--transition); box-shadow: -10px 0 40px rgba(0,0,0,0.15); }
  .main-nav.open { right: 0; }
  .main-nav .nav-link { color: var(--navy) !important; font-size: 1.1rem; background: none !important; }
  .main-nav .nav-link.active { background: var(--bg-light) !important; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 50px 30px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: auto; }
  .section { padding: 70px 0; }
  .hero-stats { flex-wrap: wrap; gap: 30px; }
  .hero { padding: 128px 0 60px; }
  .announcement-item { font-size: 0.72rem; }
  .announcement-inner { padding: 8px 34px; }
  .hero-frame { padding: 36px 22px 24px; border-radius: 20px; min-width: 0; }
  .hero-frame-footer { flex-direction: column; align-items: center; text-align: center; gap: 16px; margin-top: 18px; padding-top: 16px; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-content { text-align: center; align-items: center; padding: 40px 30px; }
  .cta-split-content .btn-primary { align-self: center; }
  .cta-split-feature { justify-content: center; }
  .cta-split-video { min-height: 260px; }
  .hero h1 { font-size: 1.9rem; }
  .hero h1 br { display: none; }
  .hero-actions { flex-wrap: nowrap; gap: 10px; margin-bottom: 18px; }
  .hero-actions .btn { flex: 1 1 0; padding: 11px 10px; font-size: 0.78rem; white-space: nowrap; }
  .split-tag { left: 50%; right: auto; transform: translateX(-50%); padding: 14px 20px; gap: 12px; }
  .split-tag-icon { width: 38px; height: 38px; }
  .split-tag-icon svg { width: 18px; height: 18px; }
  .split-tag strong { font-size: 1.5rem; }
  .split-tag span { font-size: 0.68rem; white-space: nowrap; }

  .why-card { padding: 10px 10px; }

  .products-swiper-mobile { display: none; }

  .stack-cards { padding-top: 4px; }
  .stack-card {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 20px;
  }
  .stack-card:nth-child(1) { top: 96px; }
  .stack-card:nth-child(2) { top: 108px; }
  .stack-card:nth-child(3) { top: 120px; }
  .stack-card:nth-child(4) { top: 132px; }
  .stack-card:nth-child(5) { top: 144px; }
  .stack-card:nth-child(6) { top: 156px; }
  .stack-card-visual { min-height: 200px; }
  .stack-card-body { padding: 24px 22px; gap: 8px; }
  .stack-card-num { font-size: 0.75rem; }
  .stack-card-body h3 { font-size: 1.28rem; }
  .stack-card-body p { font-size: 0.9rem; line-height: 1.55; }
}
@media (max-width: 400px) {
  .logo-text { font-size: 0.9rem; }
  .logo-img { width: 38px; height: 38px; }
}
