/* ============================================
   AI DLA HOTELI — Landing Page Styles
   Pixel-perfect reconstruction from design
   ============================================ */

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

/* --- Design Tokens --- */
:root {
  --black: #111111;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --gold: #C5A55A;
  --gold-light: #D4B96A;
  --gold-dark: #A8893E;
  --cream: #F7F3EC;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-400: #AAAAAA;
  --gray-500: #888888;
  --gray-600: #666666;
  --gray-700: #555555;
  --gray-800: #333333;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --container: 1140px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   HEADER — sticky nav bar
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo-prefix {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-500);
}

.header-logo-img {
  height: 16px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--transition);
}

.header-link:hover {
  color: var(--black);
}

.header-link-cta {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--black);
}

.header-link-cta:hover {
  color: var(--gold-dark);
}

/* Hamburger (mobile) */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   Left: dark bg block with headline + CTA
   Right: door hanger image with rounded frame
   ============================================ */
.hero {
  padding: 120px 0 0;
  background: var(--white);
  position: relative;
  overflow: visible;
  margin-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  overflow: visible;
}

/* Beige block behind text + under image */
.hero-inner::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 0;
  right: -28px;
  bottom: 5%;
  background: var(--off-white);
  border-radius: 16px;
  z-index: 0;
}

/* --- Hero Left: Content Block --- */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 120px 48px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #616671;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
}

.hero-desc strong {
  color: #111111;
  font-weight: 500;
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid #C9A96E;
  color: #C9A96E;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  align-self: flex-start;
}

.btn-outline:hover {
  background: #C9A96E;
  color: var(--white);
}

/* --- Hero Right: Image Block --- */
.hero-image {
  position: relative;
  z-index: 1;
  align-self: stretch;
}

.hero-image-wrapper {
  position: absolute;
  top: -3px;
  bottom: -8px;
  right: -80px;
  width: 80%;
  max-width: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ============================================
   SECTION: DLACZEGO TO DZIŚ KLUCZOWE
   Two-column layout:
   Left: label + serif heading
   Right: copy paragraphs + stat
   ============================================ */
.why {
  padding: 100px 0 110px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* --- Why Left --- */
.why-left {
  padding-right: 20px;
}

.why-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  margin-bottom: 28px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.5px;
}

.why-title em {
  font-style: italic;
  color: var(--gold);
}

/* --- Why Right --- */
.why-right {
  padding-top: 8px;
}

.why-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.why-text strong {
  color: var(--black);
  font-weight: 700;
}

.why-stat {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.why-stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.why-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.why-stat-value span {
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gray-500);
  letter-spacing: 0;
}


/* ============================================
   SECTION: PODEJŚCIE (Approach)
   Left: consultant photo
   Right: label, serif heading, 3 bordered steps
   ============================================ */
.approach {
  padding: 100px 0 110px;
  background: var(--white);
  position: relative;
}

.approach::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc((100% - var(--container)) / 2);
  right: calc((100% - var(--container)) / 2);
  bottom: 110px;
  background: var(--off-white);
  border-radius: 16px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.approach-image {
  position: relative;
}

.approach-image::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  right: 20%;
  bottom: 15%;
  background: var(--gray-200);
  border-radius: 8px;
  z-index: 0;
}

.approach-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.approach-content {
  padding-left: 12px;
}

.approach-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.approach-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.approach-title em {
  font-style: italic;
}

.approach-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 540px;
}

.approach-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.approach-text p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--black);
}

.approach-text strong {
  color: var(--black);
  font-weight: 600;
}

.approach-intro-packages {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.approach-intro-packages p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 16px;
}


/* ============================================
   SECTION: JAK ZACZĄĆ? (How to start)
   Dark background, serif title,
   3 cards with images, numbers, titles, text
   ============================================ */
.howto {
  padding: 100px 0 110px;
  background: var(--dark);
}

.howto-header {
  margin-bottom: 56px;
}

.howto-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.howto-subtitle {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.howto-card {
  display: flex;
  flex-direction: column;
}

.howto-card-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.howto-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.howto-card:hover .howto-card-image img {
  transform: scale(1.04);
}

.howto-card-number {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.howto-card-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 10px;
}

.howto-card-desc {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}


/* ============================================
   SECTION: PAKIETY DLA HOTELI (Packages)
   Horizontal rows: name left, features center, link right
   ============================================ */
.packages {
  padding: 100px 0 110px;
  background: var(--white);
}

.packages-header {
  margin-bottom: 64px;
}

.packages-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.packages-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.packages-subtitle {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
}

/* --- Package Row --- */
.package-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
}

.package-row:last-child {
  border-bottom: 1px solid var(--gray-200);
}

/* --- Package Name (left) --- */
.package-name h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

/* --- Package Info (center) --- */
.package-system-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.package-features li {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.package-effect {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.package-effect span {
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}




/* ============================================
   SECTION: EFEKTY WDROŻENIA (Effects)
   Dark bg, centered header, 4 stats, divider, quote
   ============================================ */
.effects {
  padding: 100px 0 110px;
  background: var(--dark);
}

.effects-header {
  text-align: center;
  margin-bottom: 60px;
}

.effects-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.effects-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 56px;
}

.effects-stat {
  padding: 12px 0;
}

.effects-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.effects-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}

.effects-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  margin: 0 auto 48px;
}

.effects-quote {
  text-align: center;
}

.effects-quote p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.3px;
}

.effects-quote em {
  font-style: italic;
  font-weight: 400;
}


/* ============================================
   SECTION: GDZIE TRACISZ NAJWIĘCEJ (Painpoints)
   Cream bg, label, 2x2 bordered cards, hint text
   ============================================ */
.painpoints {
  padding: 100px 0 90px;
  background: var(--off-white);
}

.painpoints-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-dark);
  margin-bottom: 32px;
}

.painpoints-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
}

.painpoints-card {
  padding: 32px 36px;
  border: 1px solid var(--gray-200);
}

.painpoints-problem {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 10px;
  line-height: 1.5;
}

.painpoints-solution {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.3px;
}

.painpoints-hint {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
}

.painpoints-hint strong {
  color: var(--black);
  font-weight: 700;
}


/* ============================================
   SECTION: CTA
   Large centered serif heading, subtitle, outline btn
   ============================================ */
.cta {
  padding: 120px 0 140px;
  background: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.cta-title em {
  font-style: italic;
  font-weight: 400;
}

.cta-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 40px;
}

.btn-outline-gold {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}


/* ============================================
   FOOTER — dark, large heading, contacts, logo
   ============================================ */
.site-footer {
  padding: 0;
  background: var(--black);
}

.footer-hero {
  text-align: center;
  padding: 100px 0 80px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  max-width: 720px;
  margin: 0 auto 48px;
  letter-spacing: -0.5px;
}

.footer-title em {
  color: var(--gold);
  font-style: italic;
}

.footer-cta-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}

.footer-cta-link span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-cta-underline {
  width: 48px;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.footer-cta-link:hover .footer-cta-underline {
  width: 80px;
}

/* --- Footer contacts 3-col --- */
.footer-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 40px;
}

.footer-col-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.footer-col-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col-role {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.footer-col-value {
  margin-bottom: 4px;
}

.footer-col-value a {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-col-value a:hover {
  color: var(--gold);
}

/* --- Footer divider --- */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Footer bottom bar --- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.footer-address p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.footer-logo-img {
  height: 18px;
  width: auto;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    padding: 60px 48px;
  }
  .hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
  }
  .hero-image {
    padding: 40px;
  }
  .why-grid {
    gap: 48px;
  }
  .why-title {
    font-size: 2.2rem;
  }
  .approach-grid {
    gap: 48px;
  }
  .approach-title {
    font-size: 1.9rem;
  }
  .howto-title {
    font-size: 2.4rem;
  }
  .package-row {
    grid-template-columns: 180px 1fr;
    gap: 32px;
  }
  .packages-title {
    font-size: 2.4rem;
  }
}

/* ============================================
   RESPONSIVE — 1024px (tablet landscape)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --container: 900px;
  }

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

  .why-grid {
    gap: 48px;
  }

  .approach-title {
    font-size: 1.9rem;
  }

  .howto-title {
    font-size: 2.4rem;
  }

  .package-row {
    grid-template-columns: 180px 1fr;
    gap: 32px;
  }

  .packages-title {
    font-size: 2.4rem;
  }

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

  .painpoints-grid {
    gap: 24px;
  }
}

/* ============================================
   RESPONSIVE — 768px (tablet portrait / large mobile)
   ============================================ */
@media (max-width: 768px) {

  /* --- Header --- */
  .header-nav {
    display: none;
  }
  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 16px 32px rgba(0,0,0,0.05);
    z-index: 999;
  }
  .header-hamburger {
    display: flex;
  }
  .header-logo-prefix {
    display: none;
  }

  /* --- Hero --- */
  .hero {
    padding: 80px 0 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }
  /* Reset beige pseudo-element to full width on mobile */
  .hero-inner::before {
    top: 0;
    left: 16px;
    right: 16px;
    bottom: 0;
    border-radius: 16px;
  }
  .hero-content {
    padding: 48px 32px 280px;
    text-align: left;
  }
  .hero-title {
    font-size: clamp(3rem, 10vw, 4rem);
    letter-spacing: -2px;
  }
  /* On mobile, image sits below text, overlapping the beige bottom */
  .hero-image {
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: -240px;
    padding-bottom: 40px;
    z-index: 2;
  }
  .hero-image-wrapper {
    position: static;
    width: 70%;
    max-width: 280px;
    margin: 0 auto;
    transform: none;
  }

  /* --- Why --- */
  .why {
    padding: 64px 0 72px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-left {
    padding-right: 0;
  }
  .why-title {
    font-size: 2rem;
  }
  .why-stat-value {
    font-size: 1.4rem;
  }

  /* --- Approach --- */
  .approach {
    padding: 64px 0 72px;
  }
  .approach::before {
    top: 40px;
    left: 16px;
    right: 16px;
    bottom: 40px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .approach-image {
    align-self: auto;
    order: 2;
  }
  .approach-image::before {
    display: none;
  }
  .approach-image img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }
  .approach-content {
    padding-left: 0;
    order: 1;
  }
  .approach-title {
    font-size: 1.8rem;
  }

  /* --- How-to --- */
  .howto {
    padding: 64px 0 72px;
  }
  .howto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .howto-title {
    font-size: 2.2rem;
    text-align: left;
  }
  .howto-card-image img {
    aspect-ratio: 16 / 9;
  }

  /* --- Packages --- */
  .packages {
    padding: 64px 0 72px;
  }
  .package-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .packages-title {
    font-size: 2rem;
  }
  .package-badge {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }

  /* --- Effects --- */
  .effects {
    padding: 64px 0 72px;
  }
  .effects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .effects-number {
    font-size: 2.4rem;
  }
  .effects-title {
    font-size: 2.2rem;
  }
  .effects-quote p {
    font-size: 1.1rem;
  }

  /* --- Painpoints --- */
  .painpoints {
    padding: 64px 0 72px;
  }
  .painpoints-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* --- CTA --- */
  .cta {
    padding: 80px 0 100px;
  }
  .cta-title {
    font-size: 2rem;
  }

  /* --- Footer --- */
  .footer-title {
    font-size: 2rem;
  }
  .footer-contacts {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE — 480px (small phones)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-inner::before {
    left: 8px;
    right: 8px;
  }
  .hero-content {
    padding: 40px 20px 240px;
  }
  .hero-title {
    font-size: 2.8rem;
    letter-spacing: -1.5px;
  }
  .hero-desc {
    font-size: 0.88rem;
  }
  .hero-image {
    margin-top: -200px;
  }
  .hero-image-wrapper {
    width: 65%;
    max-width: 240px;
  }

  /* Why */
  .why-title {
    font-size: 1.7rem;
  }
  .why-stat-number {
    font-size: 2rem;
  }

  /* Approach */
  .approach-title {
    font-size: 1.5rem;
  }
  .approach-step-title {
    font-size: 0.75rem;
  }

  /* Effects */
  .effects-grid {
    grid-template-columns: 1fr;
  }
  .effects-number {
    font-size: 2rem;
  }

  /* Packages */
  .package-name {
    font-size: 1rem;
  }

  /* CTA */
  .cta-title {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer-title {
    font-size: 1.6rem;
  }
  .footer-cta-link {
    font-size: 1rem;
  }
}
