/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ============ VARIABLES ============ */
:root {
  --color-bg-black: #0a0a0a;
  --color-bg-dark: #141414;
  --color-bg-brown: #2b1f1a;
  --color-text-white: #ffffff;
  --color-text-gray: #a1a1a6;
  --color-text-muted: #8a8a8e;
  --color-border: rgba(255,255,255,0.12);
  --color-header-bg: #f2f2f0;
  --color-header-text: #1a1a1a;
  --radius-pill: 100px;
  --radius-card: 24px;
  --container-width: 1140px;
  --transition-fast: 0.22s ease;
  --transition-medium: 0.4s ease;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ SCROLL ANIMATIONS (fade + slide up) ============ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background-color: var(--color-header-bg);
  color: var(--color-header-text);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-header-text);
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 14px;
  color: #5c5c5c;
  transition: color var(--transition-fast);
}

.nav-desktop a:hover {
  color: #1a1a1a;
}

.btn-text-link {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 8px 4px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.btn-text-link:hover {
  transform: scale(1.06);
  opacity: 0.7;
}

/* Burger — hidden by default (desktop), shown in tablet/phone breakpoints */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ============ MOBILE MENU OVERLAY ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 600;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu-link {
  font-size: 28px;
  color: #a1a1a6;
  transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
  color: #ffffff;
}

.mobile-menu-close {
  font-size: 20px;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.mobile-menu-close:hover {
  transform: scale(1.1);
  background-color: rgba(255,255,255,0.08);
}
/* ============ SECTIONS BASE ============ */
.section {
  padding: 100px 0;
}

.section-black {
  background-color: var(--color-bg-black);
}

.section-dark {
  background-color: #161616;
}

.section-brown {
  background-color: var(--color-bg-brown);
}

.rounded-card {
  border-radius: var(--radius-card);
  margin: 24px auto;
  max-width: calc(var(--container-width) + 48px);
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: 16px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-text-gray);
  display: inline-block;
}

.h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 780px;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 18px;
  color: var(--color-text-gray);
  margin-top: 8px;
  margin-bottom: 48px;
}

.muted {
  color: var(--color-text-muted);
  font-weight: 400;
}

.bold-white {
  color: #ffffff;
  font-weight: 700;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 82vh;
}
.hero .container {
  max-width: 100%;
  padding: 0;
  height: 100%;
}
.hero-inner {
  width: 100%;
  height: 100%;
  padding: 0;
  display: block;
}
.hero-illustration {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.hero-hand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, #0a0a0a 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============ BUTTONS (shared) ============ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), filter var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.06);
  filter: brightness(1.15);
  box-shadow: 0 6px 24px rgba(255,255,255,0.12);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-white {
  background-color: #ffffff;
  color: #000000;
}

.btn-gray {
  background-color: #3a3a3a;
  color: #ffffff;
}
/* ============ INTRODUCING MESSAGE (ABOUT) ============ */
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
}

.feature-item p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
.how-it-works-layout {
  display: flex;
  align-items: stretch;
  gap: 48px;
  margin-top: 40px;
}

.how-image-wrap {
  flex: 0 0 46%;
  border-radius: 16px;
  overflow: hidden;
  max-height: 460px;
}

.how-image-wrap {
  flex: 0 0 42%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 420px;
}

.how-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.how-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.how-step {
  display: flex;
  gap: 16px;
  cursor: pointer;
  padding-left: 4px;
}

.how-step-line {
  flex: 0 0 2px;
  width: 2px;
  background-color: rgba(255,255,255,0.15);
  border-radius: 2px;
  transition: background-color var(--transition-medium), width var(--transition-medium);
}

.how-step.is-active .how-step-line {
  background-color: #ffffff;
  width: 3px;
}

.how-step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-step-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.8;
}

.how-step h3 {
  font-size: 17px;
  font-weight: 600;
}

.how-step p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
  max-width: 460px;
}

.how-step:not(.is-active) p,
.how-step:not(.is-active) h3 {
  opacity: 0.65;
  transition: opacity var(--transition-fast);
}

.how-step:hover:not(.is-active) h3,
.how-step:hover:not(.is-active) p {
  opacity: 0.85;
}
/* ============ CAPABILITIES ============ */
.tabs {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--color-border);
  margin-top: 40px;
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  font-size: 15px;
  color: var(--color-text-gray);
  padding-bottom: 16px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.tab:hover {
  color: #ffffff;
}

.tab.is-active {
  color: #ffffff;
  font-weight: 600;
}

.tab.is-active::after {
  transform: scaleX(1);
}

.cap-content-wrap {
  position: relative;
}

.cap-panel {
  display: none;
  align-items: center;
  gap: 56px;
  animation: fadeIn 0.4s ease;
}

.cap-panel.is-active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cap-image-wrap {
  flex: 0 0 46%;
  border-radius: 16px;
  overflow: hidden;
}

.cap-image-wrap-double {
  display: flex;
  gap: 8px;
}

.cap-image-wrap-double .cap-image {
  flex: 1 1 50%;
  width: 50%;
}

.cap-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cap-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cap-label {
  font-size: 13px;
  color: var(--color-text-gray);
}

.cap-text h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 440px;
}

.cap-text .btn {
  align-self: flex-start;
}

/* Dots — hidden on desktop/tablet, shown on phone only (see phone breakpoint) */
.cap-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.cap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.25);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.cap-dot.is-active {
  background-color: #ffffff;
  transform: scale(1.2);
}
/* ============ WHY BRANDS CHOOSE KREMEN ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.why-card {
  padding: 32px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background-color var(--transition-medium);
}

.why-card:hover {
  background-color: rgba(255,255,255,0.03);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
}
/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.price-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: rgba(255,255,255,0.01);
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
}

.price-card-popular {
  background-color: rgba(255,255,255,0.035);
}

.price-card-full {
  grid-column: span 1;
}

.price-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.price-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.price-value {
  font-size: 32px;
  font-weight: 700;
}

.price-desc {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.price-card .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.price-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--color-text-gray);
  font-size: 12px;
}

.price-divider::before,
.price-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--color-border);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #d0d0d0;
}

.price-features svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffffff;
}
/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  align-items: start;
  grid-auto-rows: min-content;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(255,255,255,0.01);
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon-plus {
  position: absolute;
  inset: 0;
}

.faq-icon-plus::before,
.faq-icon-plus::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon-plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon-plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-icon-plus {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question[aria-expanded="true"] .faq-icon-plus {
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 24px;
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-question[aria-expanded="true"] + .faq-answer > p {
  padding: 0 24px 24px;
}

/* ============ CTA / READY TO SCALE ============ */
.cta-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.cta-image-wrap {
  flex: 0 0 46%;
  border-radius: 16px;
  overflow: hidden;
}

.cta-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-subtitle {
  font-size: 15px;
  color: var(--color-text-gray);
  line-height: 1.6;
  max-width: 420px;
}

.cta-text .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============ FOOTER ============ */
.site-footer {
  background-color: #1a1a1a;
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer-contact-line {
  font-size: 14px;
  color: var(--color-text-gray);
}

.footer-contact-line strong {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-gray);
  transition: transform var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.social-icon:hover {
  transform: scale(1.12);
  color: #ffffff;
  border-color: #ffffff;
}

.footer-nav-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--color-text-gray);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  font-size: 12px;
  color: #5c5c5c;
  line-height: 1.6;
  margin-top: 24px;
  max-width: 900px;
}
/* ============ 404 PAGE ============ */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.page-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 600px;
}

.page-404-title {
  font-size: 32px;
  font-weight: 700;
}

.page-404-subtitle {
  font-size: 15px;
  color: var(--color-text-gray);
}

/* ============ FORM MODAL ============ */
.form-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  animation: overlayFadeIn 0.3s ease forwards;
}

@keyframes overlayFadeIn {
  to { opacity: 1; }
}

.form-modal {
  background-color: #ffffff;
  color: #000000;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  animation: modalPopIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes modalPopIn {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.form-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 16px;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.form-modal-close:hover {
  transform: scale(1.1);
  background-color: #f0f0f0;
}

.form-plan-badge {
  display: inline-block;
  background-color: #f5f5f7;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-right: 32px;
}

.form-subtitle {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 28px;
}

.form-field {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid #e5e5e7;
  background-color: #f5f5f7;
  font-size: 14px;
  color: #000000;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  background-color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-pill);
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  transition: transform var(--transition-fast), background-color var(--transition-fast), opacity var(--transition-fast);
}

.form-submit-btn:hover:not(:disabled) {
  transform: scale(1.03);
  background-color: #000000;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-error-text {
  color: #d92d20;
  font-size: 13px;
  margin-top: 12px;
}

.form-success-state {
  text-align: center;
  padding: 20px 0;
}

.form-success-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.form-success-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 14px;
  color: #6e6e73;
}
/* ============================================================
   BREAKPOINT: TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  .container {
    padding: 0 20px;
  }

  /* Header */
  .header-inner {
    position: relative;
  }

  .logo {
    position: absolute;
    left: 20px;
  }

  .logo-text {
    display: none;
  }

  .header-inner > .logo + * {
    margin: 0 auto;
  }

  .header-inner {
    justify-content: center;
  }

  .header-inner .logo-text-center {
    font-size: 16px;
    font-weight: 600;
  }

  .nav-desktop,
  .btn-text-link.get-started-btn {
    display: none;
  }

  .burger {
    display: flex;
    position: absolute;
    right: 20px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-illustration {
    max-width: 420px;
  }

  .h1 {
    font-size: 34px;
    max-width: 100%;
  }

  .h2 {
    font-size: 30px;
    max-width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  /* Introducing Message */
  .feature-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .feature-grid-3 .feature-item:nth-child(3) {
    grid-column: 1;
  }

  /* How It Works — stays side-by-side per client instructions */
  .how-it-works-layout {
    gap: 32px;
  }

  .how-image-wrap {
    flex: 0 0 42%;
    max-height: 380px;
  }

  /* Capabilities — stays in tabs row, just narrower */
  .cap-panel {
    gap: 32px;
  }

  .cap-image {
    height: 320px;
  }

  /* Why Brands Choose Kremen — 2 columns */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing — 2 columns, 3rd card full width */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card-full {
    grid-column: span 2;
  }

  /* FAQ — stays 2 columns, equal height */
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .faq-item {
    display: flex;
    flex-direction: column;
  }

  /* CTA */
  .cta-inner {
    gap: 32px;
  }

  .cta-image {
    height: 280px;
  }

  /* Footer — same layout, just tighter */
  .footer-inner {
    gap: 32px;
  }
}
/* ============================================================
   BREAKPOINT: PHONE (max-width: 600px)
   ============================================================ */
@media (max-width: 600px) {

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .rounded-card {
    margin: 16px auto;
    border-radius: 16px;
  }

  /* Header */
  .logo-icon {
    width: 28px;
    height: 28px;
  }

  /* Hero */
  .hero {
    padding: 32px 0;
  }

  .hero-illustration {
    max-width: 280px;
  }

  .hero-inner {
    gap: 24px;
  }

  .scroll-hint span {
    font-size: 12px;
  }

  /* Typography */
  .h1 {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  /* Introducing Message — 1 column */
  .feature-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-grid-3 .feature-item:nth-child(3) {
    grid-column: auto;
  }

  /* How It Works — vertical stack */
  .how-it-works-layout {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }

  .how-image-wrap {
    flex: none;
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .how-steps {
    gap: 24px;
  }

  .how-step h3 {
    font-size: 15px;
  }

  .how-step p {
    font-size: 13px;
  }

  /* Capabilities — swipe carousel with dots */
  .tabs {
    display: none;
  }

  .cap-content-wrap {
    overflow: hidden;
  }

  .cap-panel {
    display: none;
    flex-direction: column;
    gap: 20px;
  }

  .cap-panel.is-active {
    display: flex;
  }

  .cap-image-wrap {
    flex: none;
    width: 100%;
  }

  .cap-image-wrap-double {
    flex-direction: row;
  }

  .cap-image {
    height: 240px;
  }

  .cap-text h3 {
    font-size: 18px;
    max-width: 100%;
  }

  .cap-dots {
    display: flex;
  }

  /* Why Brands Choose Kremen — 1 column */
  .why-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .why-card {
    border-left: 1px solid var(--color-border);
  }

  /* Pricing — 1 column, tighter spacing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card-full {
    grid-column: span 1;
  }

  .price-card {
    padding: 24px;
  }

  /* FAQ — 1 column */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }

  /* CTA — text overlays image, needs readability fix */
  .cta-inner {
    flex-direction: column;
    gap: 0;
  }

  .cta-image-wrap {
    flex: none;
    width: 100%;
    position: relative;
    border-radius: 16px 16px 0 0;
  }

  .cta-image {
    height: 220px;
  }

  .cta-text {
    background-color: #0a0a0a;
    padding: 24px;
    border-radius: 0 0 16px 16px;
    margin-top: -1px;
  }

  .cta-text .h2 {
    font-size: 22px;
  }

  /* Footer — brand block first, nav second (fix mismatch bug) */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    order: 1;
    max-width: 100%;
  }

  .footer-nav {
    order: 2;
  }

  .footer-disclaimer {
    order: 3;
  }
}

  .how-image.fade-in {
    animation: howFade 0.45s ease;
  }
  @keyframes howFade {
    from { opacity: 0.3; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
  }

#beginJourneyBtn {
  background-color: #3a3a3a;
  color: #ffffff;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

#beginJourneyBtn:hover {
  background-color: #c8c8c8;
  color: #1a1a1a;
  transform: scale(1.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}
