/* =========================================
   GEVAJO MAMOPU - Main Stylesheet
   Warm Palette International SEO Agency
   ========================================= */


:root {
  --primary: #C4622D;
  --secondary: #2D5C4A;
  --accent: #E8A84C;
  --bg: #FAF7F2;
  --bg2: #F3EDE3;
  --bg3: #EDE5D8;
  --text: #2A2118;
  --text-muted: #6B5B4E;
  --text-light: #9B8B7E;
  --white: #FFFDF9;
  --border: color-mix(in oklch, var(--primary), white 82%);
  --border-light: color-mix(in oklch, var(--bg), black 8%);
  --shadow-warm: rgba(196, 98, 45, 0.12);
  --shadow-deep: rgba(42, 33, 24, 0.18);
  --primary-light: color-mix(in oklch, var(--primary), white 85%);
  --primary-mid: color-mix(in oklch, var(--primary), white 60%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 85%);
  --accent-light: color-mix(in oklch, var(--accent), white 75%);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --shadow-1: 0 1px 3px rgba(42,33,24,0.08), 0 1px 2px rgba(42,33,24,0.06);
  --shadow-2: 0 4px 12px rgba(42,33,24,0.10), 0 2px 4px rgba(42,33,24,0.06);
  --shadow-3: 0 8px 24px rgba(42,33,24,0.12), 0 4px 8px rgba(42,33,24,0.06);
  --shadow-4: 0 16px 40px rgba(42,33,24,0.14), 0 6px 12px rgba(42,33,24,0.08);
  --shadow-warm-1: 0 4px 16px var(--shadow-warm), 0 1px 4px rgba(42,33,24,0.06);
  --shadow-warm-2: 0 8px 28px var(--shadow-warm), 0 2px 8px rgba(42,33,24,0.08);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: color-mix(in oklch, var(--primary), black 15%); }
ul { list-style: none; }
address { font-style: normal; }
code {
  background: var(--bg3);
  padding: 0.15em 0.45em;
  border-radius: var(--radius-xs);
  font-size: 0.875em;
  font-family: monospace;
  color: var(--primary);
}


h1, h2, h3, h4, h5 {
  font-family: 'Familjen Grotesk', sans-serif;
  color: var(--text);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.7; }


.sec {
  padding: var(--space-2xl) 2rem;
}
.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}
.sec-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: var(--shadow-warm-1);
  text-decoration: none;
}
.btn-primary:hover {
  background: color-mix(in oklch, var(--primary), black 15%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm-2);
  color: var(--white);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-muted);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.hdr.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow-warm), 0 1px 4px rgba(0,0,0,0.06);
  padding: 0.85rem 2rem;
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  z-index: 101;
}
.hdr-logo img { width: 36px; height: 36px; }
.hdr-logo span {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hdr-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: left 0.25s, right 0.25s;
}
.hdr-nav a:hover::after,
.hdr-nav a.active::after { left: 0.85rem; right: 0.85rem; }
.hdr-nav a:hover { color: var(--primary); background: var(--primary-light); }
.hdr-nav a.active { color: var(--primary); }
.hdr-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
  box-shadow: var(--shadow-warm-1);
}
.hdr-cta::after { display: none !important; }
.hdr-cta:hover {
  background: color-mix(in oklch, var(--primary), black 15%) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm-2) !important;
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 101;
}
.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}


.hero-sec {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 50%, color-mix(in oklch, var(--accent), white 88%) 100%);
  position: relative;
  overflow: hidden;
}
.hero-sec::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent), white 80%) 0%, transparent 70%);
  pointer-events: none;
}
.hero-sec::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in oklch, var(--secondary), white 88%) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.hero-h1 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-langs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.lang-tag {
  background: var(--white);
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  transition: all 0.2s;
}
.lang-tag:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--border);
}


.hero-right {
  position: relative;
  height: 480px;
}
.hero-cards {
  position: relative;
  width: 100%;
  height: 100%;
}
.hcard {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 85%;
  border: 1px solid var(--border-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hcard-3 {
  top: 0; right: 0;
  transform: rotate(3deg) translateY(10px);
  box-shadow: var(--shadow-1);
  background: color-mix(in oklch, var(--bg3), white 40%);
  z-index: 1;
}
.hcard-2 {
  top: 50px; right: 15px;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-2);
  z-index: 2;
}
.hcard-1 {
  top: 110px; right: 5px;
  transform: rotate(0.5deg);
  box-shadow: var(--shadow-warm-2);
  z-index: 3;
  border-left: 3px solid var(--primary);
}
.hero-cards:hover .hcard-3 { transform: rotate(4deg) translateY(5px); }
.hero-cards:hover .hcard-2 { transform: rotate(-2deg) translateY(-5px); }
.hero-cards:hover .hcard-1 { transform: rotate(0deg) translateY(-10px); box-shadow: var(--shadow-4); }
.hcard-ico {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.1rem;
  transition: background 0.25s;
}
.hcard:hover .hcard-ico { background: var(--primary); color: var(--white); }
.hcard h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.hcard p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-light);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.img-band { background: var(--bg2); }
.img-band-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.img-band-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.img-band-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.img-band-main:hover img { transform: scale(1.03); }
.img-band-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(42,33,24,0.75));
  padding: 2rem 1.5rem 1.5rem;
}
.img-band-overlay p {
  color: rgba(255,253,249,0.92);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}
.img-band-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.img-band-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  transition: transform 0.25s, box-shadow 0.25s;
  flex: 1;
}
.img-band-stat:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-warm-1);
}
.stat-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.img-band-stat p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}


.svc-sec { background: var(--bg); }
.svc-head { margin-bottom: var(--space-lg); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.crd {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.crd:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm-2);
  border-color: var(--border);
}
.crd-ico {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.crd:hover .crd-ico {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.crd-ttl {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.crd-txt {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.crd-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.crd-link:hover { gap: 0.7rem; color: color-mix(in oklch, var(--primary), black 15%); }
.crd-link i { font-size: 0.75rem; transition: transform 0.2s; }
.crd-link:hover i { transform: translateX(3px); }


.ben-sec {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.ben-overlap-img {
  position: absolute;
  top: -60px;
  right: 0;
  width: 45%;
  height: 280px;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0.25;
}
.ben-overlap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ben-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ben-left .sec-title { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.ben-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ben-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ben-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-warm-1);
}
.ben-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--secondary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.875rem;
  margin-top: 2px;
}
.ben-item h4 {
  font-size: 0.975rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.ben-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.proc-sec { background: var(--bg); }
.proc-head { margin-bottom: var(--space-lg); }
.proc-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.proc-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}
.proc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-1);
}
.proc-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-mid);
  line-height: 1;
  min-width: 3rem;
}
.proc-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.proc-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.team-sec { background: var(--bg2); }
.team-head { margin-bottom: var(--space-lg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-crd {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-crd:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm-2);
}
.team-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-crd:hover .team-img-wrap img { transform: scale(1.05); }
.team-info {
  padding: 1.25rem;
}
.team-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.team-role {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-bio {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.cta-band {
  background: linear-gradient(135deg, var(--secondary) 0%, color-mix(in oklch, var(--secondary), black 20%) 100%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: var(--space-lg);
  background: rgba(255,253,249,0.06);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,253,249,0.12);
}
.cta-band-left h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-band-left p {
  color: rgba(255,253,249,0.75);
  font-size: 0.975rem;
}
.cta-band-right {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.cta-band .btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(232,168,76,0.3);
}
.cta-band .btn-primary:hover {
  background: color-mix(in oklch, var(--accent), black 10%);
  color: var(--text);
}
.cta-band .btn-ghost {
  border-color: rgba(255,253,249,0.35);
  color: rgba(255,253,249,0.85);
}
.cta-band .btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,253,249,0.1);
}


.ftr {
  background: var(--text);
  padding: var(--space-xl) 2rem var(--space-sm);
}
.ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,253,249,0.1);
}
.ftr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.ftr-logo img { width: 32px; height: 32px; }
.ftr-logo span {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,253,249,0.9);
}
.ftr-brand p {
  color: rgba(255,253,249,0.55);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.ftr-brand address {
  color: rgba(255,253,249,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
}
.ftr-brand address a {
  color: rgba(255,253,249,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.ftr-brand address a:hover { color: var(--accent); }
.ftr-nav-col h4 {
  color: rgba(255,253,249,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ftr-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ftr-nav-col a {
  color: rgba(255,253,249,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.ftr-nav-col a:hover {
  color: rgba(255,253,249,0.9);
  padding-left: 4px;
}
.ftr-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ftr-bottom p {
  color: rgba(255,253,249,0.35);
  font-size: 0.8rem;
}


.mob-tab {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px var(--shadow-warm);
  padding: 0.5rem 0 max(0.5rem, env(safe-area-inset-bottom));
}
.mob-tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.4rem 0.25rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  min-height: 44px;
  justify-content: center;
}
.mob-tab-item i { font-size: 1.1rem; }
.mob-tab-item.active { color: var(--primary); }
.mob-tab-item:hover { color: var(--primary); background: var(--primary-light); }


.float-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-warm-2), 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.float-btn:hover {
  background: color-mix(in oklch, var(--primary), black 15%);
  transform: scale(1.08);
}
.float-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.float-options.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--text);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border-light);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.float-opt:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-warm-1);
  background: var(--primary-light);
  color: var(--primary);
}
.float-opt i {
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}


.page-hero {
  padding-top: 8rem;
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-light);
}
.page-hero-content { max-width: 700px; }


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.frm {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-2);
}
.frm h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.frm-grp {
  margin-bottom: 1.25rem;
}
.frm-grp label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.frm-grp input,
.frm-grp textarea,
.frm-grp select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
}
.frm-grp input:focus,
.frm-grp textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.frm-grp textarea { resize: vertical; min-height: 120px; }
.frm-grp input::placeholder,
.frm-grp textarea::placeholder { color: var(--text-light); }
.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
  cursor: pointer;
}
.frm-check label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.frm-check label a { color: var(--primary); }


.diff-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.diff-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}
.diff-item:last-child { border-bottom: none; padding-bottom: 0; }
.diff-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-mid);
  line-height: 1;
}
.diff-body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
  color: var(--text);
}
.diff-body p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.diff-body p:last-child { margin-bottom: 0; }


.comparison-sec { background: var(--bg2); }
.comp-head { margin-bottom: var(--space-lg); }
.comp-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.comp-col {
  padding: 2.5rem;
}
.comp-col-a {
  background: color-mix(in oklch, var(--bg3), white 30%);
  border-right: 1px solid var(--border-light);
}
.comp-col-b {
  background: var(--white);
}
.comp-col h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}
.comp-col-a h3 i { color: #C0392B; }
.comp-col-b h3 i { color: var(--secondary); }
.comp-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.comp-col ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid var(--border-light);
  line-height: 1.55;
  transition: border-color 0.2s;
}
.comp-col-b ul li { border-left-color: var(--secondary-light); }
.comp-col-b ul li:hover { border-left-color: var(--secondary); }


.tools-sec { background: var(--bg); }
.tools-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tools-left p { color: var(--text-muted); line-height: 1.75; }
.tools-right img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s;
}
.tools-right:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-4);
}


.gs-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.gs-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gs-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-1);
}
.gs-step-ico {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s;
}
.gs-step:hover .gs-step-ico { background: var(--primary); color: var(--white); }
.gs-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.gs-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.gs-form-sec { background: var(--bg2); }
.gs-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.gs-form-left .sec-title { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.gs-form-left p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.gs-contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.gs-ci-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.gs-ci-item i { color: var(--primary); width: 18px; }
.gs-ci-item a { color: var(--text-muted); transition: color 0.2s; }
.gs-ci-item a:hover { color: var(--primary); }
.gs-expect-sec { background: var(--bg); }
.gs-expect-head { margin-bottom: var(--space-lg); }
.gs-expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.gs-exp-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.gs-exp-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-1);
}
.gs-exp-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.gs-exp-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.glos-sec { background: var(--bg); }
.glos-alpha-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.glos-alpha-nav a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.glos-alpha-nav a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.glos-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.glos-letter {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  padding: 2rem 0 1rem;
  border-top: 2px solid var(--border);
  margin-top: 1rem;
}
.glos-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-light);
  max-width: 800px;
}
.glos-item:last-child { border-bottom: none; }
.glos-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.glos-tag {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--secondary);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.glos-item p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.glos-item p:last-child { margin-bottom: 0; }


.contact-sec { background: var(--bg); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-2);
}
.contact-info-card h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--text);
}
.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding-left 0.2s;
}
.ci-item:last-child { border-bottom: none; }
.ci-item:hover { padding-left: 4px; }
.ci-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
}
.ci-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.ci-item p, .ci-item a {
  font-size: 0.925rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ci-item a:hover { color: var(--primary); }
.map-sec { background: var(--bg2); padding-top: 0; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.contact-faq-sec { background: var(--bg); }
.cfaq-head { margin-bottom: var(--space-lg); }
.cfaq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cfaq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cfaq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-1);
}
.cfaq-item h3 {
  font-size: 0.975rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cfaq-item h3 i { color: var(--primary); font-size: 0.875rem; }
.cfaq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.legal-hero {
  padding-top: 8rem;
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-light);
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.legal-sec { background: var(--bg); }
.acc-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.acc-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--white);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.acc-item:hover { box-shadow: var(--shadow-warm-1); }
.acc-item.open { border-color: var(--border); }
.acc-hdr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}
.acc-hdr:hover { background: var(--primary-light); }
.acc-item.open .acc-hdr { background: var(--primary-light); }
.acc-hdr span {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.acc-ico {
  color: var(--primary);
  font-size: 0.875rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.acc-item.open .acc-ico { transform: rotate(180deg); }
.acc-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
}
.acc-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}
.acc-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.acc-body p:last-child { margin-bottom: 0; }
.acc-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.acc-body ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.acc-body a { color: var(--primary); }


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}
.thanks-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-3);
}
.thanks-ico {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
.thanks-card h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--text);
}
.thanks-card > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.thanks-countdown {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  margin-bottom: 2rem;
}
.thanks-countdown p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.thanks-countdown strong { color: var(--primary); }


.ck-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,33,24,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ck-overlay.show { opacity: 1; pointer-events: auto; }
.ck-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(42,33,24,0.15);
}
.ck-panel.show { transform: translateX(0); }
.ck-head {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg2);
}
.ck-head-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ck-shield {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.ck-head h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.ck-head p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.ck-cats {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ck-cat {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-light);
}
.ck-cat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.ck-cat-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.ck-cat-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.ck-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.ck-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ck-slider {
  position: absolute;
  inset: 0;
  background: var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s;
}
.ck-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: var(--shadow-1);
}
.ck-toggle input:checked + .ck-slider { background: var(--secondary); }
.ck-toggle input:checked + .ck-slider::before { transform: translateX(18px); }
.ck-toggle input:disabled + .ck-slider { opacity: 0.7; cursor: not-allowed; }
.ck-actions {
  padding: 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ck-btn-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.ck-btn-accept:hover {
  background: color-mix(in oklch, var(--primary), black 15%);
  transform: translateY(-1px);
}
.ck-btn-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.ck-btn-reject:hover {
  border-color: var(--text-muted);
  color: var(--text);
}
.ck-link {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
}
.ck-link a { color: var(--primary); }


@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 2.5rem; }
  .hero-right { height: 380px; }
}

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .hdr-burger { display: flex; }
  .mob-tab { display: flex; }
  body { padding-bottom: 70px; }
  .float-widget { bottom: 5.5rem; right: 1rem; }

  .hero-sec { padding: 6rem 1.5rem 3rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { height: 320px; }
  .hcard { width: 90%; }
  .hcard-3 { top: 0; right: 0; }
  .hcard-2 { top: 40px; right: 10px; }
  .hcard-1 { top: 90px; right: 5px; }

  .sec { padding: 4rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .ben-content { grid-template-columns: 1fr; gap: 2rem; }
  .ben-overlap-img { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .img-band-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; gap: 2rem; }
  .cta-band-right { flex-direction: row; flex-wrap: wrap; }
  .ftr-inner { grid-template-columns: 1fr; gap: 2rem; }
  .diff-item { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  .comp-table { grid-template-columns: 1fr; }
  .comp-col-a { border-right: none; border-bottom: 1px solid var(--border-light); }
  .tools-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .gs-steps-grid { grid-template-columns: 1fr; }
  .gs-form-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .gs-expect-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .cfaq-grid { grid-template-columns: 1fr; }
  .ck-panel { width: 100%; }
  .frm { padding: 1.75rem; }
  .cta-band { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.9rem; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .ftr-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .thanks-card { padding: 2rem; }
  .diff-item { grid-template-columns: 1fr; }
  .diff-num { font-size: 2rem; }
  .proc-step { flex-direction: column; gap: 0.75rem; }
}