/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── VARIABLES ── */
:root {
  --bg:     #fffbf5;
  --blue:   #003087;
  --card:   #ffffff;
  --green:  #06d6a0;
  --ink:    #1c1a18;
  --muted:  #7a7570;
  --orange: #ff6b35;
  --pink:   #ff6b9d;
  --radius: 20px;
  --yellow: #ffd93d;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
}

h1 {
  animation: popIn 0.5s 0.1s cubic-bezier(0.34,1.56,0.64,1) both;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
}

/* ── ANIMATIONS ── */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -30px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-25px, 20px); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.5); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  25%       { transform: rotate(8deg) translateY(-8px); }
  75%       { transform: rotate(-4deg) translateY(4px); }
}

/* ── LANG SWITCHER ── */
.lang-bar {
  background: white;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  gap: 4px;
  padding: 4px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 200;
}

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 24px;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--ink);
  color: white;
}

/* ── HERO ── */
.hero {
  align-items: center;
  background: linear-gradient(160deg, #fff8e7 0%, #fff3f0 50%, #f0fff8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 100px 24px 60px;
  position: relative;
  text-align: center;
}

.deco {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.deco-1 {
  animation: float1 8s ease-in-out infinite;
  background: var(--yellow);
  filter: blur(70px);
  height: 350px;
  left: -100px;
  opacity: 0.25;
  top: -100px;
  width: 350px;
}

.deco-2 {
  animation: float2 10s ease-in-out infinite;
  background: var(--orange);
  bottom: -40px;
  filter: blur(60px);
  height: 280px;
  opacity: 0.2;
  right: -60px;
  width: 280px;
}

.deco-3 {
  animation: float1 12s ease-in-out infinite reverse;
  background: var(--green);
  filter: blur(50px);
  height: 220px;
  left: 8%;
  opacity: 0.18;
  top: 45%;
  width: 220px;
}

.float-icon {
  align-items: center;
  animation: wiggle 4s ease-in-out infinite;
  border-radius: 16px;
  display: flex;
  font-size: 30px;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  z-index:1;
}

.fi-1 {
  animation-delay: 0s;
  background: var(--yellow);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(255,217,61,0.4);
  color: var(--ink);
  font-size: 28px;
  height: 56px;
  left: 7%;
  top: 14%;
  transform: rotate(-8deg);
  width: 56px;
}

.fi-2 {
  animation-delay: -1.5s;
  background: var(--orange);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
  color: white;
  font-size: 34px;
  height: 68px;
  right: 9%;
  top: 18%;
  transform: rotate(6deg);
  width: 68px;
}

.fi-3 {
  animation-delay: -3s;
  background: var(--green);
  border-radius: 14px;
  bottom: 26%;
  box-shadow: 0 4px 14px rgba(6,214,160,0.35);
  color: var(--ink);
  font-size: 22px;
  height: 48px;
  left: 5%;
  transform: rotate(10deg);
  width: 48px;
}

.fi-4 {
  animation-delay: -2s;
  background: var(--blue);
  border-radius: 18px;
  bottom: 22%;
  box-shadow: 0 4px 18px rgba(0,48,135,0.3);
  color: white;
  font-size: 30px;
  height: 60px;
  right: 7%;
  transform: rotate(-6deg);
  width: 60px;
}

.fi-5 {
  animation-delay: -0.5s;
  background: var(--pink);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255,107,157,0.35);
  color: white;
  font-size: 20px;
  height: 44px;
  left: 11%;
  top: 58%;
  transform: rotate(4deg);
  width: 44px;
}

.hero-badge {
  align-items: center;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  background: white;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.15);
  color: var(--orange);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 18px;
  position: relative;
  z-index: 1;
}

.pulse-dot {
  animation: pulseDot 2s ease infinite;
  background: var(--green);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.highlight {
  color: var(--orange);
  display: inline-block;
  position: relative;
}

.highlight::after {
  background: var(--yellow);
  border-radius: 4px;
  bottom: -4px;
  content: '';
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  transform: rotate(-1.5deg);
  z-index: -1;
}

.hero-sub {
  animation: popIn 0.5s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  margin: 24px auto 40px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 800;
}

.cta-group {
  animation: popIn 0.5s 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  align-items: center;
  background: var(--ink);
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(28,26,24,0.2);
  color: white;
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(28,26,24,0.25);
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  align-items: center;
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 50px;
  color: var(--ink);
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
}

.btn-secondary:hover {
  background: var(--yellow);
  transform: translateY(-3px) scale(1.02);
}

.hero-note {
  animation: popIn 0.5s 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  color: white;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-inner {
  animation: ticker 22s linear infinite;
  display: inline-flex;
}

.ticker-item {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.04em;
  padding: 0 32px;
}

.ticker-item i {
  color: var(--yellow);
}

/* ── SECTIONS ── */
.section {
  margin: 0 auto;
  max-width: 1040px;
  padding: 100px 24px;
}

.section-tag {
  align-items: center;
  background: var(--yellow);
  border-radius: 30px;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding: 6px 14px;
  text-transform: uppercase;
}

/* ── PROBLEM ── */
.problem-section {
  background: var(--ink);
  padding: 100px 24px;
}

.problem-inner {
  margin: 0 auto;
  max-width: 1040px;
}

.problem-section .section-tag {
  background: var(--orange);
  color: white;
}

.problem-section h2 {
  color: white;
}

.problem-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 48px;
}

.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s;
}

.problem-card:hover {
  transform: translateY(-4px);
}

.problem-card .big-num {
  color: var(--orange);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.problem-card .big-num-text {
  color: var(--orange);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.problem-card p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.problem-card p strong {
  color: white;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
}

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

.feat-card {
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.feat-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.feat-card.yellow { background: var(--yellow); }
.feat-card.orange { background: var(--orange); color: white; }
.feat-card.green  { background: var(--green); }
.feat-card.blue   { background: var(--blue); color: white; }

.feat-icon {
  display: block;
  font-size: 40px;
  margin-bottom: 20px;
}

.feat-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  opacity: 0.8;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: linear-gradient(135deg, #fff8e7, #fff3f0);
}

.how-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .how-inner {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  align-items: flex-start;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 16px;
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.step:hover {
  transform: translateX(6px);
}

.step-num {
  align-items: center;
  border-radius: 50%;
  color: white;
  display: flex;
  flex-shrink: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.step:nth-child(1) .step-num { background: var(--orange); }
.step:nth-child(2) .step-num { background: var(--green); color: var(--ink); }
.step:nth-child(3) .step-num { background: var(--blue); }

.step-text h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.step-text p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

/* ── PHONE ── */
.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  background: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(28,26,24,0.25), 8px 8px 0 var(--yellow);
  padding: 14px;
  width: 255px;
}

.phone-screen {
  background: #1c1a18;
  border-radius: 28px;
  overflow: hidden;
}

.phone-top {
  background: var(--orange);
  padding: 20px 20px 24px;
}

.phone-app-name {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.phone-balance {
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.phone-balance-label {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.phone-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.phone-section-label {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

.tx {
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
}

.tx-left {
  align-items: center;
  display: flex;
  gap: 10px;
}

.tx-emoji {
  align-items: center;
  border-radius: 8px;
  display: flex;
  font-size: 15px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.tx-info {
  display: flex;
  flex-direction: column;
}

.tx-name {
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.tx-date {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  font-weight: 600;
}

.tx-amt {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.tx-amt.neg { color: #ff6b6b; }
.tx-amt.pos { color: var(--green); }

.phone-add-btn {
  align-items: center;
  background: var(--yellow);
  border: none;
  border-radius: 12px;
  color: var(--ink);
  cursor: default;
  display: flex;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
  padding: 13px;
  width: 100%;
}

/* ── PRICING ── */
.pricing-section {
  background: var(--ink);
  padding: 100px 24px;
}

.pricing-inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1040px;
}

@media (max-width: 700px) {
  .pricing-inner {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}

.pricing-section .section-tag {
  background: var(--green);
  color: var(--ink);
}

.pricing-section h2 {
  color: white;
}

.pricing-section .lead {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 16px;
}

.price-box {
  background: var(--yellow);
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  box-shadow: 8px 8px 0 rgba(255,255,255,0.08);
  padding: 48px 40px;
  position: relative;
}

.price-sticker {
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 20px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  top: -18px;
}

.price-amount {
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-amount sup {
  font-size: 36px;
  vertical-align: super;
}

.price-once {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  margin-top: 4px;
  opacity: 0.55;
  text-transform: uppercase;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.price-list li {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
}

.check-icon {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  flex-shrink: 0;
  font-size: 11px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.price-trial {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  margin-top: 24px;
  opacity: 0.5;
  text-align: center;
}

/* ── SWEDEN ── */
.sweden-section {
  padding: 100px 24px;
  text-align: center;
}

.sweden-flag-big {
  animation: wiggle 4s ease-in-out infinite;
  display: block;
  font-size: 64px;
  margin-bottom: 24px;
}

.sweden-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
}

.sweden-section p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  margin: 16px auto 28px;
  max-width: 500px;
}

.r24k-badge {
  align-items: center;
  background: var(--blue);
  border: 2.5px solid var(--ink);
  border-radius: 50px;
  color: white;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  padding: 12px 24px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.r24k-badge:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  padding: 28px 24px;
  text-align: center;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.2,0.64,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── TOPBAR ── */
.topbar {
  align-items: center;
  background: rgba(255,251,245,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  left: 0;
  padding: 14px 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

/* ── COMING SOON PAGE ── */
.cs-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 24px 120px;
  position: relative;
  text-align: center;
}

.cs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.cs-pill {
  align-items: center;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 50px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  padding: 10px 20px;
  white-space: nowrap;
}

.cs-pill.green  { background: var(--green);  border-color: var(--green); }
.cs-pill.yellow { background: var(--yellow); border-color: var(--yellow); }
.cs-pill.orange { background: var(--orange); border-color: var(--orange); color: white; }

.cs-launch {
  animation: popIn 0.5s 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  background: var(--ink);
  border-radius: 20px;
  color: white;
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 56px;
  padding: 14px 28px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.cs-launch span { color: var(--yellow); }

.cs-footer {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 48px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.cs-footer a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.cs-footer a:hover { color: var(--orange); }

/* ── MOBILE ── */
@media (max-width: 600px) {
  /* prevent horizontal scroll */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* hide floating icons on small screens — they cause overflow */
  .float-icon {
    display: none;
  }

  /* topbar tighter on mobile */
  .topbar {
    padding: 12px 20px;
  }

  /* lang switcher moves down a touch so it clears topbar */
  .lang-bar {
    right: 16px;
    top: 16px;
  }

  /* coming soon wrap */
  .cs-wrap {
    padding: 100px 20px 120px;
  }

  /* h1 tighter on small screens */
  h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  /* hero badge wraps nicely */
  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
    text-align: center;
  }

  /* pills stack with more breathing room */
  .cs-pills {
    gap: 10px;
    margin-top: 36px;
  }

  .cs-pill {
    font-size: 13px;
    padding: 9px 16px;
  }

  /* launch badge */
  .cs-launch {
    margin-top: 40px;
  }

  /* footer below content, not absolute */
  .cs-footer {
    margin-top: 40px;
  }

  /* ticker fixed at bottom — tighten padding */
  .ticker {
    padding: 12px 0;
  }

  .ticker-item {
    font-size: 13px;
    padding: 0 20px;
  }
}

/* ── NAV UPDATES ── */
.topbar {
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  border-radius: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-cta {
  align-items: center;
  background: var(--ink);
  border-radius: 50px;
  color: white;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.8;
}

.nav-right {
  align-items: center;
  display: flex;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 6px;
  transition: color 0.15s, background 0.15s;
}

.lang-btn:hover {
  background: var(--card);
  color: var(--ink);
}

.lang-btn.active {
  background: var(--yellow);
  color: var(--ink);
}

@media (max-width: 600px) {
  .nav-links    { display: none; }
  .lang-switcher { display: none; }
  .nav-cta      { font-size: 13px; padding: 8px 16px; }
}

/* ── PROBLEM CARD GREEN VARIANT ── */
.problem-card--green {
  align-items: center;
  background: var(--green);
  border-color: var(--green);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.problem-with-label {
  color: rgba(0,0,0,0.45);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 48px 24px;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 1040px;
}

.footer-logo {
  align-items: center;
  color: white;
  display: flex;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: white;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 600;
}

/* ── INNER PAGES ── */
.page-hero {
  background: linear-gradient(160deg, #fff8e7 0%, #fff3f0 50%, #f0fff8 100%);
  padding: 140px 24px 80px;
  text-align: center;
}

.page-hero-inner {
  margin: 0 auto;
  max-width: 720px;
}

.page-title {
  animation: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 12px;
}

.page-subtitle {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}

.prose-section {
  margin: 0 auto;
  max-width: 760px;
  padding: 64px 24px 100px;
}

.prose h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 48px 0 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: #3a3835;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose code {
  background: rgba(0,0,0,0.06);
  border-radius: 6px;
  font-family: monospace;
  font-size: 14px;
  padding: 2px 6px;
}

.prose strong {
  color: var(--ink);
  font-weight: 800;
}

/* ── FAQ ── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 24px 0 48px;
}

.faq-item {
  background: #fff;
  border: 2px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 28px;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-q {
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
}

/* ── CONTACT FORM ── */
.contact-section {
  background: linear-gradient(160deg, #fff8e7 0%, #fff3f0 100%);
  padding: 80px 24px 100px;
}

.contact-inner {
  margin: 0 auto;
  max-width: 760px;
}

.contact-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
}

.contact-lead {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-lead strong {
  color: var(--ink);
}

.contact-form {
  background: #ffffff;
  border: 2px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  padding: 40px 44px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .form-row            { grid-template-columns: 1fr; }
  .contact-form        { padding: 28px 24px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: #faf8f4;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  padding: 14px 18px;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
}

.form-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.form-submit {
  align-items: center;
  background: var(--ink);
  border: none;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  padding: 16px 32px;
  transition: opacity 0.2s, transform 0.2s;
}

.form-submit:hover:not(:disabled) {
  opacity: 0.85;
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
}

.submit-label,
.submit-sending {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.form-success {
  align-items: center;
  background: #f0fff8;
  border: 2px solid var(--green);
  border-radius: 16px;
  color: var(--ink);
  flex-direction: column;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  padding: 32px;
  text-align: center;
}

.form-success i {
  color: var(--green);
  font-size: 40px;
  margin-bottom: 4px;
}

.form-success p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.form-error {
  background: #fff0f0;
  border: 2px solid #ff4444;
  border-radius: 12px;
  color: #cc0000;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  padding: 14px 18px;
}

