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

:root {
  --primary: #FF4F00;
  --accent: #FF7A5C;
  --highlight: #F36223;
  --primary-dark: #CC3E00;
  --light-orange: #FFF0EA;
  --lightest-orange: #FFF7F4;
  --dark: #1A1108;
  --dark-2: #2D1F0F;
  --mid: #5C4033;
  --text: #3D2B1F;
  --text-light: #7A5C4A;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --border: #E8DDD6;
  --shadow-sm: 0 2px 8px rgba(255,79,0,0.08);
  --shadow-md: 0 6px 24px rgba(255,79,0,0.12);
  --shadow-lg: 0 16px 48px rgba(255,79,0,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  line-height: 1.2;
  color: var(--dark);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,79,0,0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,79,0,0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.logo-text {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: #FF4F00;
  transition: all var(--transition);
}

.nav a:hover {
  color: #FF4F00;
  background: var(--light-orange);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.burger:hover {
  background: var(--light-orange);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #3D1A00 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,17,8,0.85) 0%,
    rgba(26,17,8,0.6) 50%,
    rgba(26,17,8,0.3) 100%
  );
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.hero-circle:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: 10%;
  animation-delay: 3s;
  opacity: 0.06;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 100px;
  min-height: 100vh;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,79,0,0.2);
  border: 1px solid rgba(255,79,0,0.4);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  position: relative;
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-live-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255,79,0,0.92);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-float-card.card-1 {
  bottom: 2rem;
  left: -2rem;
  animation: float 6s ease-in-out infinite;
}

.hero-float-card.card-2 {
  top: 3rem;
  right: -1.5rem;
  animation: float 7s ease-in-out infinite reverse;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.float-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.float-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   BLOCK 1 — INTRO/PROMO (image left, text right)
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  background: var(--light-orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.intro-text .section-subtitle {
  margin-bottom: 2rem;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--light-orange);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.feature-chip:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.feature-chip-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================================
   BLOCK 2 — CAROUSEL / SLIDER
   ============================================================ */
.carousel-section {
  overflow: hidden;
}

.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  background: var(--dark);
}

.carousel-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}

.carousel-slide:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.carousel-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,17,8,0.92) 0%, transparent 100%);
  color: var(--white);
}

.carousel-slide-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.carousel-slide-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.carousel-slide-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.1rem;
  color: var(--text);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   BLOCK 3 — ACCORDION
   ============================================================ */
.accordion-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.accordion-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--lightest-orange);
}

.accordion-header h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  transition: all var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.open .accordion-body {
  max-height: 500px;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

.accordion-body-inner ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ============================================================
   BLOCK 4 — CIRCLE / ABOUT
   ============================================================ */
.about-circle-section {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.about-circle-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.about-center-photo {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255,79,0,0.4);
  box-shadow: 0 0 0 20px rgba(255,79,0,0.06), 0 32px 80px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.about-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-items {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text-item {
  position: absolute;
  max-width: 220px;
  text-align: center;
}

.about-text-item:nth-child(1) { top: 5%; left: 5%; text-align: right; }
.about-text-item:nth-child(2) { top: 5%; right: 5%; text-align: left; }
.about-text-item:nth-child(3) { bottom: 5%; left: 5%; text-align: right; }
.about-text-item:nth-child(4) { bottom: 5%; right: 5%; text-align: left; }

.about-text-item-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.about-text-item h4 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.about-text-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Mobile about */
.about-mobile-text {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-mobile-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.about-mobile-card h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.about-mobile-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   BLOCK 5 — TABLE COMPARISON
   ============================================================ */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}

.comparison-table thead {
  background: var(--dark);
  color: var(--white);
}

.comparison-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.comparison-table thead th.highlight-col {
  background: var(--primary);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.comparison-table tbody tr:hover {
  background: var(--lightest-orange);
}

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

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text);
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.comparison-table .highlight-col {
  background: rgba(255,79,0,0.04);
  font-weight: 600;
  color: var(--primary);
}

.check-yes {
  color: var(--primary);
  font-size: 1.1rem;
}

.check-no {
  color: var(--border);
  font-size: 1rem;
}

/* ============================================================
   BLOCK 6 — PRICE CARDS
   ============================================================ */
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  background: var(--white);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.price-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.price-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.price-plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.price-card.featured .price-plan-name {
  color: var(--accent);
}

.price-amount {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card.featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.price-card.featured .price-period {
  color: rgba(255,255,255,0.55);
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.price-card.featured .price-divider {
  background: rgba(255,255,255,0.12);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2rem;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.4;
}

.price-card.featured .price-feature {
  color: rgba(255,255,255,0.8);
}

.price-feature-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 1rem;
}

.price-card.featured .price-feature-icon {
  color: var(--accent);
}

/* ============================================================
   BLOCK 7 — CALCULATOR SLIDER
   ============================================================ */
.calculator-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.calc-ui {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.calc-title {
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.calc-field {
  margin-bottom: 2rem;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
}

.calc-label-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.calc-label-value {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  position: relative;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,79,0,0.4);
  transition: transform var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(255,79,0,0.4);
}

.calc-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.calc-select:focus {
  border-color: var(--primary);
}

.calc-result {
  background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.calc-result-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.calc-result-price {
  font-family: var(--font-main);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.calc-result-note {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0.25rem;
}

.calc-savings {
  text-align: right;
}

.calc-savings-label {
  font-size: 0.8rem;
  opacity: 0.75;
}

.calc-savings-amount {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 700;
}

.calc-text {
  padding-left: 2rem;
}

.calc-text h3 {
  font-family: var(--font-main);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.calc-text p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.calc-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.calc-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.calc-list-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   BLOCK 8 — SELLING TEXT (no images)
   ============================================================ */
.selling-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}

.selling-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.selling-left .section-label {
  color: var(--accent);
}

.selling-left .section-title {
  color: var(--white);
}

.selling-left .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.selling-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.selling-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sh-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,79,0,0.15);
  border: 1px solid rgba(255,79,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.sh-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.sh-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.selling-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.selling-text-block {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  transition: background var(--transition);
}

.selling-text-block:hover {
  background: rgba(255,255,255,0.07);
}

.selling-text-block h4 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.selling-text-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ============================================================
   BLOCK 9 — INFOGRAPHIC
   ============================================================ */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.infographic-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.infographic-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.infographic-card:hover::before {
  transform: scaleX(1);
}

.infographic-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.infographic-value {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.infographic-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.infographic-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.infographic-bar-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--border);
}

.infographic-bar-title {
  font-family: var(--font-main);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.progress-label-text {
  font-weight: 500;
  color: var(--text);
}

.progress-label-pct {
  font-weight: 700;
  color: var(--primary);
}

.progress-bar {
  height: 8px;
  background: var(--light-orange);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BLOCK 10 — 4 PHOTOS + TESTIMONIALS ROW
   ============================================================ */
.photos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark);
}

.photo-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: all 0.5s ease;
  opacity: 0.85;
}

.photo-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.photo-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26,17,8,0.92) 0%, transparent 100%);
  color: white;
}

.photo-card-caption h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: white;
}

.photo-card-caption p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.photos-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--accent) 50%, var(--primary) 80%, transparent 100%);
  margin: 1.5rem 0;
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}

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

.testimonial-stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-section {
  background: var(--off-white);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.form-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-main);
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,79,0,0.1);
}

.form-input::placeholder {
  color: #BBADA5;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 2rem;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
}

.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.cookie-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--primary);
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--primary-dark);
}

.cookie-btn-necessary {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.cookie-btn-necessary:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  font-size: 0.78rem;
}

.cookie-btn-settings:hover {
  color: white;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: var(--accent);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.legal-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.legal-content {
  padding: 4rem 0;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
}

.legal-body h2 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.legal-body h2:first-child {
  border-top: none;
  margin-top: 0;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-body a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-orange) 100%);
  padding: 6rem 2rem;
}

.thanks-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--light-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,79,0,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(255,79,0,0); }
}

.thanks-card h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.thanks-card p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-text-item {
    max-width: 180px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 120px;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .hero-description {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrap {
    max-width: 600px;
    margin: 0 auto;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-image img {
    height: 420px;
  }

  .accordion-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .accordion-image {
    display: none;
  }

  .about-text-items {
    display: none;
  }

  .about-mobile-text {
    display: grid;
  }

  .infographic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .selling-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .calculator-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .calc-text {
    padding-left: 0;
  }
}

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

  .header-cta .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .carousel-slide {
    flex: 0 0 calc(80% - 0.5rem);
  }

  .photos-row {
    grid-template-columns: 1fr 1fr;
  }

  .photo-card img {
    height: 260px;
  }

  .testimonials-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-image {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .price-card.featured {
    transform: none;
  }

  .cookie-banner {
    flex-direction: column;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.25rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .comparison-table thead th,
  .comparison-table td {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .photos-row {
    grid-template-columns: 1fr;
  }

  .hero-float-card {
    display: none;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

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

  .about-mobile-text {
    grid-template-columns: 1fr;
  }
}
