/* Kelvin Fundholm — Denim + Copper theme overrides.
   Palette: primary #3e5266, dark #232f3a, accent (copper) #b27a52,
   light surfaces #f3f5f8 / #e6ebf2, text near-black #14202b.
   Built on top of the source style.css — only color/typography/structure tweaks. */

:root {
  --kf-primary: #3e5266;
  --kf-primary-dark: #232f3a;
  --kf-primary-deep: #1a242e;
  --kf-accent: #b27a52;
  --kf-accent-soft: #d6b59a;
  --kf-surface: #ffffff;
  --kf-surface-2: #f3f5f8;
  --kf-surface-3: #e7ecf2;
  --kf-text: #14202b;
  --kf-text-muted: #4a5b6c;
  --kf-border: #d6dde6;
  --kf-success: #2f6b4a;
  --kf-danger: #b6433f;
}

/* Reset background and base text — source had white text on dark; we go light page, dark text */
html, body { background: var(--kf-surface-2) !important; color: var(--kf-text) !important; }
body, html, p { color: var(--kf-text) !important; }
p { color: var(--kf-text) !important; }
.page { background: var(--kf-surface-2) !important; }
.main { background: var(--kf-surface-2) !important; color: var(--kf-text) !important; }

/* Typography refinements */
h1, h2, h3, h4 { color: var(--kf-primary-dark) !important; }
.form h2, .win h2, h1 { font-family: Oswald, sans-serif; }

/* --- HEADER (sticky on all sizes; new colors) --- */
header.header {
  background: var(--kf-primary-dark) !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
  padding: 12px calc(50% - 600px) !important;
  margin-bottom: 32px !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 18px rgba(35,47,58,0.10);
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  row-gap: 0 !important;
}
header.header .logo { color: #fff !important; }
header.header .logo span { color: #fff !important; font-weight: 700; }
header.header a { color: #fff !important; }
header.header .header__btn {
  background: var(--kf-accent) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .2s;
  white-space: nowrap;
}
header.header .header__btn:hover { background: #9c6a44 !important; }

/* Desktop primary nav (added) */
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a {
  color: #e5ebf3 !important;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.primary-nav a:hover { color: #fff !important; }
.primary-nav a.is-active {
  color: var(--kf-accent-soft) !important;
}
.primary-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--kf-accent);
  border-radius: 2px;
}

/* Burger button */
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 0; padding: 0; background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: #fff; border-radius: 2px; transition: transform .25s, top .25s, opacity .2s;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* --- HERO --- */
.hero-v2, .block-form {
  background-image: linear-gradient(135deg, #232f3a 0%, #3e5266 100%) !important;
  background-color: #232f3a !important;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
  color: #fff !important;
  border-radius: 18px !important;
  margin: 0 calc(50% - 600px) 48px !important;
  padding: 56px 48px !important;
  position: relative !important;
  overflow: hidden !important;
}
.hero-v2::before, .block-form::before,
.hero-v2::after, .block-form::after { display: none !important; }
.hero-v2 .hero-subheadline span,
.block-form h1 span {
  -webkit-text-fill-color: #ffffff !important;
  background: #b27a52 !important;
  color: #ffffff !important;
  padding: 2px 10px !important;
  border-radius: 6px !important;
}
.hero-v2 h1 {
  font-size: 48px !important;
  line-height: 1.1 !important;
  font-family: Oswald, sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  opacity: 1 !important;
  color: #ffffff !important;
}
.hero-v2 .hero-subheadline {
  font-family: Roboto, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  text-transform: none !important;
  color: #e7ecf2 !important;
  margin: 0 0 14px !important;
}
.hero-v2 .hero-text { color: #e7ecf2 !important; opacity: 1 !important; }
.hero-left h1 { color: #fff !important; font-size: 48px; line-height: 1.1; }
.hero-left p, .hero-left .hero-text, .hero-left .hero-subheadline {
  color: #e7ecf2 !important;
}
.hero-subheadline span {
  background: var(--kf-accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
}
.hero-trust { list-style: none; padding: 0; margin: 16px 0 0; display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust li { color: #e7ecf2; display: flex; align-items: center; gap: 6px; font-size: 14px; }
.hero-trust strong { color: var(--kf-accent-soft); font-weight: 700; margin-right: 2px; }
.icon { width: 18px; height: 18px; fill: currentColor; }
.icon--li { width: 20px; height: 20px; fill: var(--kf-accent); }
.icon--h { width: 22px; height: 22px; fill: var(--kf-accent); vertical-align: middle; margin-right: 6px; }
.icon--card { width: 28px; height: 28px; fill: var(--kf-accent); }
.icon--star { width: 16px; height: 16px; fill: var(--kf-accent); }

.users { margin: 16px 0; display: flex; align-items: center; gap: 14px; }
.users__photo { display: flex; }
.users__photo img { border: 2px solid #fff; border-radius: 50%; margin-left: -10px; }
.users__photo img:first-child { margin-left: 0; }
.users__info p { color: #e7ecf2 !important; margin: 2px 0 0; font-size: 13px; }

.hero-visual { margin-top: 18px; display: flex; align-items: center; gap: 18px; }
.profit-ticker {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex; flex-direction: column;
}
.ticker-label { font-size: 12px; color: var(--kf-accent-soft); text-transform: uppercase; letter-spacing: .08em; }
.ticker-value { font-size: 24px; font-weight: 700; color: #fff; }
.ticker-small { font-size: 11px; color: #cbd4de; }
.mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 36px; }
.mini-chart span {
  display: inline-block; width: 6px; background: var(--kf-accent);
  border-radius: 2px;
}
.mini-chart span:nth-child(1) { height: 12px; }
.mini-chart span:nth-child(2) { height: 22px; }
.mini-chart span:nth-child(3) { height: 16px; }
.mini-chart span:nth-child(4) { height: 30px; }
.mini-chart span:nth-child(5) { height: 24px; }
.mini-chart span:nth-child(6) { height: 36px; background: var(--kf-accent-soft); }

/* Hero right form panel */
.hero-right { display: flex; align-items: stretch; }
.form, .formx4group {
  background: #ffffff !important;
  border-radius: 14px;
  padding: 28px 26px 24px !important;
  box-shadow: 0 18px 50px rgba(20,32,43,0.18);
  width: 100%;
}
.form h2 {
  color: var(--kf-primary-dark) !important;
  font-size: 22px !important;
  margin: 0 0 14px !important;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: Roboto, sans-serif !important;
}
.form-group { margin-bottom: 12px; }
.form .inp, .form input[type="text"], .form input[type="email"], .form input[type="tel"], .form input[type="password"] {
  width: 100%;
  display: block;
  padding: 12px 14px !important;
  background: #f7f9fc !important;
  color: var(--kf-text) !important;
  border: 1px solid var(--kf-border) !important;
  border-radius: 8px !important;
  font: 400 15px/1.4 Roboto, sans-serif !important;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.form .inp:focus, .form input:focus {
  outline: none;
  border-color: var(--kf-primary) !important;
  box-shadow: 0 0 0 3px rgba(62,82,102,0.15);
}
.submit-btn, .form button[type="submit"] {
  width: 100%;
  display: block;
  padding: 14px 18px !important;
  background: var(--kf-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font: 600 15px/1.2 Roboto, sans-serif !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 6px;
}
.submit-btn:hover { background: #9c6a44 !important; }
.submit-btn:active { transform: translateY(1px); }
.form-footer {
  margin-top: 12px; color: var(--kf-text-muted); font-size: 12px; display: flex; gap: 6px; align-items: center;
}
.form-footer .icon { fill: var(--kf-text-muted); }
.formSubTitle {
  text-align: center;
  color: var(--kf-text-muted);
  font-size: 13px;
}
/* When formSubTitle sits on dark hero background, lift its color */
.hero-v2 .formSubTitle, .block-form .formSubTitle {
  color: #e7ecf2 !important;
}
/* Visible placeholders in form inputs */
.form .inp::placeholder,
.form input::placeholder,
.form textarea::placeholder {
  color: #97a4b3 !important;
  opacity: 1 !important;
}

/* --- Box sections --- */
.box {
  background-color: transparent !important;
  margin-bottom: 64px !important;
  padding: 0 calc(50% - 600px) !important;
  color: var(--kf-text) !important;
}
/* Re-assert hero background AND box-model after generic .box rule (cascade order matters).
   The .box rule above sets `padding: 0 calc(50% - 600px) !important`, which on wide
   viewports (>1232px) grows up to ~360px each side and squashes the hero content into
   a tiny column. The .hero-v2 padding declared earlier loses the cascade to .box, so
   we re-declare it here. */
.hero-v2, .block-form {
  background-image: linear-gradient(135deg, #232f3a 0%, #3e5266 100%) !important;
  background-color: #232f3a !important;
  padding: 56px 48px !important;
  margin: 0 calc(50% - 600px) 48px !important;
}
.win {
  background-image: linear-gradient(135deg, #3e5266 0%, #232f3a 100%) !important;
  background-color: #3e5266 !important;
}
.page-hero {
  background-image: linear-gradient(135deg, #232f3a 0%, #3e5266 100%) !important;
  background-color: #232f3a !important;
}
header.header {
  background-color: #232f3a !important;
}
.footer {
  background-color: #1a242e !important;
}
.social-proof-bar { background-color: #ffffff !important; }
.profit-section .box { background-color: #ffffff !important; }
.box-bottom { padding: 0 calc(50% - 600px) !important; margin-bottom: 64px; }
.box-bottom .box { margin-bottom: 0 !important; }
section.box, section.box-bottom { color: var(--kf-text) !important; }

.glow-inside-top, .glow-inside-bottom, .glow-outside { background: transparent !important; }

/* Social proof bar */
.social-proof-bar {
  background: var(--kf-surface) !important;
  border-radius: 14px;
  padding: 28px 32px !important;
  border: 1px solid var(--kf-border);
  box-shadow: 0 4px 14px rgba(20,32,43,0.05);
  margin: 0 calc(50% - 600px) 48px !important;
}
.social-proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center;
}
.sp-value {
  font: 700 28px/1.1 Oswald, sans-serif;
  color: var(--kf-primary-dark);
  margin-bottom: 4px;
}
.sp-label { color: var(--kf-text-muted); font-size: 14px; }

/* What-is */
.what-is {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center;
}
.what-is__text h2 { color: var(--kf-primary-dark); }
.what-is__text p { color: var(--kf-text); margin-bottom: 12px; }
.icon-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.icon-list li {
  display: flex; gap: 8px; align-items: center;
  background: #fff; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--kf-border);
  color: var(--kf-text);
  font-size: 14px;
}
.what-is__visual img { max-width: 100%; height: auto; border-radius: 14px; }
.visual-caption { color: var(--kf-text-muted); font-size: 13px; margin-top: 10px; text-align: center; }

/* Why automation cards grid */
.cards-grid { display: grid; gap: 22px; margin-top: 18px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--kf-border);
  border-radius: 14px;
  padding: 22px;
  color: var(--kf-text);
  box-shadow: 0 1px 0 rgba(20,32,43,0.03);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(20,32,43,0.08); }
.card h3 { color: var(--kf-primary-dark); margin-top: 10px; }
.card-icon { color: var(--kf-accent); }
.card-highlight {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--kf-surface-3);
  border-left: 3px solid var(--kf-accent);
  color: var(--kf-text);
  font-size: 14px;
  border-radius: 0 6px 6px 0;
}

/* Profit section */
.profit-section .box {
  background: var(--kf-surface) !important;
  border-radius: 14px;
  padding: 36px 32px !important;
  border: 1px solid var(--kf-border);
  margin: 0 calc(50% - 600px) 64px !important;
}
.featured-stat {
  text-align: center; padding: 18px 12px;
  background: var(--kf-surface-3);
  border-radius: 12px;
  margin-bottom: 24px;
}
.fs-label { color: var(--kf-text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.fs-value {
  font: 700 44px/1 Oswald, sans-serif;
  color: var(--kf-primary-dark);
  margin: 4px 0;
}
.fs-sub { color: var(--kf-text-muted); font-size: 13px; }

.calculator-wrap {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center;
  background: var(--kf-surface-3); padding: 24px; border-radius: 12px;
  margin: 0 0 24px;
}
.calculator-left h3 { margin-top: 0; }
.calculator-title-sub { color: var(--kf-text-muted); font-size: 14px; margin-bottom: 8px; }
.calculator-disclaimer { color: var(--kf-text-muted); font-size: 12px; margin-top: 12px; }
.calculator-right { text-align: center; padding: 18px; background: #fff; border-radius: 10px; border: 1px solid var(--kf-border); }
.calculator-text { color: var(--kf-text-muted); font-size: 13px; }
.income-display { color: var(--kf-accent); font-weight: 700; }

.stats-grid.four {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat { background: #fff; border: 1px solid var(--kf-border); border-radius: 10px; padding: 16px; text-align: center; }
.stat-value { font: 700 28px/1 Oswald, sans-serif; color: var(--kf-primary-dark); }
.stat-label { color: var(--kf-text-muted); font-size: 13px; margin-top: 4px; }

/* How it works timeline */
.how-it-works h2 { text-align: center; }
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 24px auto 0;
}
.timeline-item {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--kf-border);
}
.timeline-step {
  flex: 0 0 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--kf-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font: 700 22px/1 Oswald, sans-serif;
}
.timeline-content h3 { color: var(--kf-primary-dark); margin: 0 0 6px; font-size: 18px; }
.timeline-time { color: var(--kf-accent); font-weight: 500; font-size: 14px; }
.crypto-logos { display: flex; gap: 12px; margin-top: 10px; align-items: center; }
.crypto-logos img { width: 28px; height: 28px; }

/* Security */
.security-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start;
}
.security-item {
  background: #fff;
  border: 1px solid var(--kf-border);
  border-radius: 12px;
  padding: 18px 18px 14px;
  margin-bottom: 14px;
}
.security-item h3 { color: var(--kf-primary-dark); margin: 0 0 6px; font-size: 18px; display: flex; align-items: center; gap: 6px; }
.security-item p { color: var(--kf-text); }
.risk-disclaimer {
  background: var(--kf-surface-3);
  border-left: 3px solid var(--kf-accent);
  padding: 12px 14px; border-radius: 0 8px 8px 0;
  color: var(--kf-text); font-size: 13px;
  margin-top: 8px;
}
.security-right { text-align: center; }
.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.badge {
  background: #fff;
  border: 1px solid var(--kf-border);
  color: var(--kf-primary-dark);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* Advantages features */
.feature {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center;
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--kf-border);
  margin-bottom: 22px;
}
.feature-left { grid-template-columns: 1fr 1.2fr; }
.feature-text h3 { color: var(--kf-primary-dark); }
.feature-text p { color: var(--kf-text); }
.bullets { list-style: none; padding: 0; margin: 10px 0 0; }
.bullets li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--kf-text);
}
.bullets li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--kf-accent);
}
.feature-visual img { max-width: 100%; height: auto; border-radius: 10px; }

/* Testimonials */
.testimonials h2 { text-align: center; }
.testimonial {
  display: flex; flex-direction: column; gap: 8px;
}
.testimonial-header { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar { border-radius: 50%; }
.testimonial-user { font-weight: 700; color: var(--kf-primary-dark); }
.testimonial-verified { color: var(--kf-success); font-size: 13px; }
.testimonial-rating { display: flex; gap: 2px; }
.testimonial-quote { color: var(--kf-text); font-style: italic; }
.testimonial-stats {
  display: flex; gap: 14px; justify-content: space-between; margin-top: 6px;
}
.testimonial-stat { background: var(--kf-surface-3); border-radius: 8px; padding: 8px 12px; flex: 1; text-align: center; }
.testimonial-stat .stat-label { font-size: 12px; color: var(--kf-text-muted); display: block; }
.testimonial-stat .stat-num { font-weight: 700; color: var(--kf-primary-dark); }
.testimonial-stat .stat-num.profit { color: var(--kf-success); }
.testimonials-note { text-align: center; color: var(--kf-text-muted); font-size: 13px; margin-top: 16px; }

/* FAQ */
.faq-wrap { background: #fff; border: 1px solid var(--kf-border); border-radius: 14px; padding: 28px; }
.faq-box { text-align: center; margin-bottom: 22px; }
.faq-box h2 { color: var(--kf-primary-dark); margin-bottom: 6px; }
.faq-box p { color: var(--kf-text-muted); }
.faq_wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.faq_item {
  border: 1px solid var(--kf-border);
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--kf-surface-2);
  margin-bottom: 10px;
  cursor: pointer;
}
.faq_titleWrp { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq_subtitle { color: var(--kf-primary-dark); margin: 0; font-size: 16px; font-weight: 600; }
.faq_subtitle span { color: var(--kf-primary-dark); }
.faq_desc { color: var(--kf-text); margin: 10px 0 0; display: none; }
.faq_item.open .faq_desc { display: block; }
.faq_arrow img { width: 12px; height: 12px; transition: transform .25s; opacity: 0.7; }
.faq_item.open .faq_arrow img { transform: rotate(180deg); }

/* Win CTA section */
.win {
  background: linear-gradient(135deg, var(--kf-primary) 0%, var(--kf-primary-dark) 100%) !important;
  color: #fff !important;
  border-radius: 16px;
  padding: 44px 30px !important;
  margin: 0 calc(50% - 600px) 48px !important;
  text-align: center;
}
.win h2 { color: #fff !important; }
.win h2 span { color: var(--kf-accent-soft); }
.win p { color: #e7ecf2 !important; margin-bottom: 18px; }
.win .cta-btn {
  display: inline-block;
  background: var(--kf-accent);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.win .cta-btn:hover { background: #9c6a44; }

/* Footer */
.footer {
  background: var(--kf-primary-deep) !important;
  color: #cbd4de !important;
  padding: 36px calc(50% - 600px) 24px !important;
  margin-bottom: 0 !important;
  margin-top: 24px;
}
.footer p, .footer a { color: #cbd4de !important; }
.footer__top {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  margin-bottom: 18px;
}
.footer__top .logo span { color: #fff !important; }
.footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer nav a { font-size: 14px; }
.footer nav a:hover { color: var(--kf-accent-soft) !important; }
.footer-copyright { color: #8a99a8 !important; font-size: 13px; margin-top: 12px; }
.footer > p { font-size: 12px; color: #8a99a8 !important; margin-top: 12px; line-height: 1.6; }

/* Logo image alignment in header/footer */
.logo.logo-wraper { display: inline-flex !important; align-items: center; gap: 10px; }
.logo.logo-wraper img { width: 36px; height: auto; }
.footer__top .logo.logo-wraper img { width: 32px; }

/* Generic page (tech) layout */
.page-hero {
  background: linear-gradient(135deg, var(--kf-primary-dark) 0%, var(--kf-primary) 100%);
  color: #fff;
  padding: 60px calc(50% - 600px) 50px;
  margin-bottom: 44px;
  border-radius: 0 0 18px 18px;
}
.page-hero h1 { color: #fff !important; font-size: 44px; margin: 0 0 10px; }
.page-hero p { color: #e7ecf2 !important; max-width: 780px; font-size: 16px; line-height: 1.55; opacity: 0.95; }
.content-wrap {
  background: #fff;
  border: 1px solid var(--kf-border);
  border-radius: 14px;
  padding: 32px 36px;
  margin: 0 calc(50% - 600px) 60px;
}
.content-wrap h2 { color: var(--kf-primary-dark); margin-top: 22px; }
.content-wrap h3 { color: var(--kf-primary-dark); }
.content-wrap p, .content-wrap li { color: var(--kf-text); }
.content-wrap a { color: var(--kf-primary); text-decoration: underline; }
.content-wrap a:hover { color: var(--kf-accent); }

/* Sign-in/up tighter form */
.auth-shell {
  max-width: 460px;
  margin: 0 auto 60px;
  background: #fff;
  border: 1px solid var(--kf-border);
  border-radius: 14px;
  padding: 28px 30px;
}
.auth-shell h2 {
  text-align: center;
  font-family: Roboto, sans-serif !important;
  text-transform: none !important;
  font-size: 22px !important;
  margin-bottom: 14px;
  color: var(--kf-primary-dark);
}
.auth-shell .form { box-shadow: none; padding: 0 !important; }
.auth-aux {
  text-align: center; margin-top: 14px; color: var(--kf-text-muted); font-size: 14px;
}
.auth-aux a { color: var(--kf-primary); font-weight: 600; }

/* Contact-info panel */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; margin-top: 20px;
}
.contact-card {
  background: var(--kf-surface-3);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--kf-border);
}
.contact-card h3 { margin-top: 0; color: var(--kf-primary-dark); }
.contact-card a { color: var(--kf-primary); text-decoration: underline; }

/* Intl-tel-input styling fit */
.iti { display: block !important; width: 100%; }
.iti__selected-country { color: var(--kf-text) !important; background: #f7f9fc !important; }

/* --- Mobile rules --- */
@media (max-width: 980px) {
  .primary-nav { display: none; }
  .burger { display: inline-block; }
  .primary-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--kf-primary-dark);
    padding: 8px 16px 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .primary-nav.is-open a {
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 16px;
  }
  .primary-nav.is-open a:last-child { border-bottom: 0; }

  header.header {
    position: sticky !important;
    flex-wrap: nowrap !important;
    padding: 10px 16px !important;
  }
  header.header .header__btn { padding: 8px 12px !important; font-size: 13px; }

  .hero-v2, .block-form {
    margin: 0 12px 28px !important;
    padding: 28px 20px !important;
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 22px !important;
  }
  .hero-left h1 { font-size: 30px; }
  .hero-subheadline { font-size: 16px; }

  .social-proof-bar { margin: 0 12px 28px !important; padding: 18px 18px !important; }
  .social-proof-grid { grid-template-columns: 1fr; gap: 12px; }

  .box { padding: 0 16px !important; margin-bottom: 36px !important; }
  .what-is { grid-template-columns: 1fr; }
  .cards-grid.three { grid-template-columns: 1fr; }
  .stats-grid.four { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .calculator-wrap { grid-template-columns: 1fr; }
  .feature, .feature-left { grid-template-columns: 1fr; padding: 20px; }
  .faq_wrapper { grid-template-columns: 1fr; }
  .icon-list { grid-template-columns: 1fr; }
  .footer { padding: 28px 16px 22px !important; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer nav { gap: 14px; }

  .profit-section .box { margin: 0 12px 36px !important; padding: 24px 18px !important; }
  .win { margin: 0 12px 28px !important; padding: 30px 18px !important; }
  .page-hero { padding: 40px 16px 30px; border-radius: 0 0 12px 12px; }
  .page-hero h1 { font-size: 30px; }
  .content-wrap { margin: 0 12px 36px; padding: 22px 18px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-trust { gap: 10px; }
  .timeline-item { flex-direction: column; }
  .timeline-step { margin: 0 auto; }
  .trust-badges { grid-template-columns: 1fr; }
  .stats-grid.four { grid-template-columns: 1fr; }
}

/* Make sure links inherit no-underline outside content */
a { color: inherit; }
.content-wrap a, .auth-aux a, .footer nav a { text-decoration: none; }
.content-wrap a:hover, .auth-aux a:hover { text-decoration: underline; }
