@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #0F1724;
  --bg-secondary: #1A2738;
  --bg-card: #1E2D40;
  --bg-card-hover: #253650;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent: #FF6B35;
  --accent-hover: #E85D2A;
  --accent-glow: rgba(255, 107, 53, 0.4);
  --accent-subtle: rgba(255, 107, 53, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(255, 107, 53, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 8px 32px var(--accent-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BACKGROUND ========== */
.bg-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.bg-gradient-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  opacity: 0.06;
}

.bg-gradient-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  opacity: 0.05;
}

.bg-lines-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  opacity: 0.4;
}

.bg-line {
  width: 1px;
  background: linear-gradient(to top, transparent 0%, var(--accent) 50%, transparent 100%);
  animation: linePulse 4s ease-in-out infinite;
}

.bg-line:nth-child(1) { height: 60%; animation-delay: 0s; opacity: 0.3; }
.bg-line:nth-child(2) { height: 45%; animation-delay: 0.5s; opacity: 0.2; }
.bg-line:nth-child(3) { height: 75%; animation-delay: 1s; opacity: 0.4; }
.bg-line:nth-child(4) { height: 50%; animation-delay: 1.5s; opacity: 0.2; }
.bg-line:nth-child(5) { height: 65%; animation-delay: 2s; opacity: 0.3; }
.bg-line:nth-child(6) { height: 40%; animation-delay: 0.3s; opacity: 0.15; }
.bg-line:nth-child(7) { height: 55%; animation-delay: 0.8s; opacity: 0.25; }
.bg-line:nth-child(8) { height: 70%; animation-delay: 1.3s; opacity: 0.3; }

@keyframes linePulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15, 23, 36, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(15, 23, 36, 0.95);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo__img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo__fallback {
  display: none;
}

@media (max-width: 768px) {
  .logo__img {
    height: 34px;
  }
}

.logo__dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 36, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 8px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 850px;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #FF8F5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.stat-item {
  background: rgba(30, 45, 64, 0.6);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
  min-width: 180px;
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.stat-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--text-white, #fff);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 0;
  position: relative;
}

.section--dark {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section__title span {
  background: linear-gradient(135deg, var(--accent) 0%, #FF8F5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ========== CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(30, 45, 64, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-subtle) 0%, rgba(255, 107, 53, 0.15) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-accent);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card__list {
  list-style: none;
  margin-top: 16px;
}

.card__list li {
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== PAIN SECTION ========== */
.pain-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.pain-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.pain-content .highlight {
  color: var(--text-primary);
  font-weight: 400;
  background: var(--accent-subtle);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.step {
  position: relative;
  padding: 36px;
  background: rgba(30, 45, 64, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.step__number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.step__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step__list {
  list-style: none;
  margin-top: 14px;
}

.step__list li {
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.step__list li::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 600;
}

/* ========== TABLE ========== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(30, 45, 64, 0.3);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table th:first-child {
  border-radius: 0;
}

.comparison-table td {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--accent-subtle);
  color: var(--text-primary);
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 120px 0;
}

.cta-section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-section__title span {
  background: linear-gradient(135deg, var(--accent) 0%, #FF8F5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section__text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 300;
}

/* ========== FORM ========== */
.form {
  max-width: 580px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  text-align: left;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__input,
.form__select,
.form__textarea {
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(30, 45, 64, 0.6);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form__select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form__textarea {
  min-height: 110px;
  resize: vertical;
}

.btn--full {
  width: 100%;
}

/* ========== MARGIN GRID ========== */
.margin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.margin-item {
  background: rgba(30, 45, 64, 0.4);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.margin-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.margin-item__arrow {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.margin-item__arrow::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 700;
}

/* ========== PROCESS FLOW ========== */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
}

.process-step {
  background: rgba(30, 45, 64, 0.5);
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border);
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--border-accent);
}

.process-step__number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #FF8F5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.process-step__title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.process-step__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.process-arrow {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 1.4rem;
  padding-top: 35px;
  opacity: 0.6;
}

/* ========== INFO BLOCK ========== */
.info-block {
  background: rgba(30, 45, 64, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  margin: 40px 0;
}

.info-block__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.info-block__text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-block__list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.info-block__list li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-block__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ========== DISCLAIMER ========== */
.disclaimer {
  background: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
}

.disclaimer__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.disclaimer__text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__accent {
  color: var(--accent);
  font-weight: 600;
}

.footer__contacts {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--accent);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== FOOD LANDING — CHECKERBOARD CARDS ========== */
.food-landing .cards-grid .card:nth-child(even),
.food-landing .margin-grid .margin-item:nth-child(even) {
  background: rgba(48, 66, 93, 0.55);
}

.food-landing .cards-grid .card:nth-child(even):hover,
.food-landing .margin-grid .margin-item:nth-child(even):hover {
  background: var(--bg-card-hover);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section__header {
    margin-bottom: 48px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 18px;
  }

  .process-flow {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: column;
  }

  .stat-item {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .card {
    padding: 28px;
  }

  .info-block {
    padding: 28px;
  }
}
