/* ============================================================
   NELA PĘKUL ANGIELSKI — Landing Page Styles
   Brand: Royal Blue #2563EB · Deep Navy #1E3A5F
   Fonts: Poppins · Inter · Cormorant Garamond
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --royal-blue:   #2563EB;
  --blue-mid:     #1D52C8;
  --deep-navy:    #1E3A5F;
  --soft-white:   #FFFFFF;
  --ice-blue:     #EAF3FF;
  --ice-blue-2:   #F0F7FF;
  --silver-grey:  #D1D5DB;
  --text-dark:    #0F1F3D;
  --text-mid:     #374151;
  --text-light:   #6B7280;
  --glow-blue:    rgba(37, 99, 235, 0.35);
  --glow-soft:    rgba(37, 99, 235, 0.15);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--soft-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- TYPOGRAPHY UTILITIES --- */
.gradient-text {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #93C5FD 0%, #E0F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.luxury-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1em;
  color: var(--royal-blue);
}

/* --- LAYOUT --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--ice-blue-2); }

.section__eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--royal-blue);
  color: #fff;
  border-color: var(--royal-blue);
}
.btn--primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-blue);
}

.btn--ghost {
  background: transparent;
  color: var(--royal-blue);
  border-color: var(--royal-blue);
}
.btn--ghost:hover {
  background: var(--royal-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--royal-blue);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--ice-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--glow { box-shadow: 0 4px 20px var(--glow-blue); }
.btn--glow:hover { box-shadow: 0 8px 36px var(--glow-blue); }

.btn--glow-white { box-shadow: 0 4px 20px rgba(255,255,255,0.25); }

.btn--nav {
  background: var(--royal-blue);
  color: #fff;
  border-color: var(--royal-blue);
  padding: 10px 24px;
  font-size: 0.875rem;
}
.btn--nav:hover { background: var(--blue-mid); transform: translateY(-1px); }

.btn--sm { padding: 10px 22px; font-size: 0.875rem; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }
.btn--full { width: 100%; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__logo-accent {
  color: var(--royal-blue);
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--royal-blue); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--silver-grey);
  padding: 20px 24px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 14px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--ice-blue);
}
.nav__mobile .btn { margin-top: 20px; }

/* --- AURORA BACKGROUND --- */
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}

.aurora-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-layer {
  position: absolute;
  inset: -10px;
  opacity: 0.45;
  will-change: transform;
  filter: blur(10px) invert(1);
  background-image:
    repeating-linear-gradient(100deg, #ffffff 0%, #ffffff 7%, transparent 10%, transparent 12%, #ffffff 16%),
    repeating-linear-gradient(100deg, #3b82f6 10%, #a5b4fc 15%, #93c5fd 20%, #ddd6fe 25%, #60a5fa 30%);
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;
  animation: aurora 60s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

.aurora-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, #ffffff 0%, #ffffff 7%, transparent 10%, transparent 12%, #ffffff 16%),
    repeating-linear-gradient(100deg, #3b82f6 10%, #a5b4fc 15%, #93c5fd 20%, #ddd6fe 25%, #60a5fa 30%);
  background-size: 200%, 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  animation: aurora 60s linear infinite;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--ice-blue) 60%, #dbeafe 100%);
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--royal-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero__headline-word {
  display: block;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__sub--caps {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
}
.badge__icon { color: var(--royal-blue); font-size: 0.7rem; }

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

.hero__card-stack {
  position: relative;
  width: 320px;
  height: 380px;
}

.hero__card {
  position: absolute;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
}

.hero__card--back {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy) 100%);
  transform: rotate(6deg) translate(12px, 12px);
  opacity: 0.25;
}

.hero__card--front {
  background: #fff;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.18), 0 4px 16px rgba(0,0,0,0.06);
  padding: 0;
  border: 1px solid rgba(37, 99, 235, 0.1);
  overflow: hidden;
  position: relative;
}

.hero__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  image-rendering: high-quality;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  filter: contrast(1.04) saturate(1.08) brightness(1.02);
}

.hero__card-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--royal-blue);
  background: rgba(255,255,255,0.92);
  padding: 6px 14px;
  border-radius: 100px;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.hero__card-tag:hover {
  background: var(--royal-blue);
  color: #fff;
}

.hero__floating {
  position: absolute;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  white-space: nowrap;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.hero__floating--1 { bottom: 100px; left: -10px; animation: float 4s ease-in-out infinite; }
.hero__floating--2 { top: 50px; right: -50px; animation: float 4s ease-in-out 0.8s infinite; }
.hero__floating--3 { bottom: 30px; right: -40px; animation: float 4s ease-in-out 1.6s infinite; }
.hero__floating--4 { top: 180px; left: -10px; animation: float 4s ease-in-out 2.4s infinite; }
.hero__floating--5 { top: 20px; left: -10px; animation: float 4s ease-in-out 3.2s infinite; }
.hero__floating--6 { bottom: 180px; right: -55px; animation: float 4s ease-in-out 1.2s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--royal-blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* --- MARQUEE --- */
.marquee-wrap {
  background: var(--deep-navy);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee {
  display: flex;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.marquee__dot { color: var(--royal-blue) !important; font-size: 0.7rem !important; }

.marquee-wrap--light {
  background: #ffffff;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.marquee-wrap--light .marquee span {
  color: var(--text-mid);
}

.marquee-wrap--light .marquee__dot {
  color: var(--royal-blue) !important;
}

.marquee--reverse {
  animation: marquee-reverse 32s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* --- ABOUT --- */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #dbeafe 0%, transparent 14%),
    radial-gradient(ellipse at 18% 60%, rgba(234, 160, 60, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 30%,  rgba(255, 200, 80, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 40%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #fffdf9 0%, #ffffff 45%, #F0F7FF 100%);
  pointer-events: none;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

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

.about__img-wrap {
  position: relative;
  max-width: 400px;
}

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 8px 32px rgba(180, 100, 30, 0.18),
    0 24px 64px rgba(180, 100, 30, 0.1),
    0 0 0 1px rgba(255, 200, 100, 0.15);
  background: linear-gradient(160deg, #f5e4c8 0%, #e8c98a 100%);
}

.about__img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(30, 20, 10, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about__real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__stat {
  position: absolute;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.16), 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.95);
}
.about__stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__stat span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 5px;
}

.about__stat--2 { top: 28px; right: -16px; }

.about__lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about__body {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about__quote {
  border-left: 3px solid var(--royal-blue);
  padding: 16px 0 16px 20px;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  color: var(--deep-navy);
  line-height: 1.6;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--royal-blue);
  background: var(--ice-blue);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* --- OFFER --- */
.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.offer__card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.offer__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

.offer__card--featured {
  background: linear-gradient(160deg, #dbeafe 0%, #eff6ff 100%);
  color: var(--text-dark);
  border-color: rgba(37, 99, 235, 0.2);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.18), 0 0 0 2px rgba(37, 99, 235, 0.15);
}
.offer__card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.22), 0 0 0 2px rgba(37, 99, 235, 0.2);
}
.offer__card--featured h3 { color: var(--text-dark); }
.offer__card--featured h3 small { color: var(--royal-blue); }
.offer__card--featured p { color: var(--text-mid); }
.offer__card--featured .offer__list li { color: var(--text-dark); }
.offer__card--featured .offer__list li::before { color: var(--royal-blue); }

.offer__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--royal-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.offer__card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.offer__card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.offer__card h3 small {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}

.offer__card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.offer__list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer__list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer__list li::before {
  content: '✓';
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.85rem;
}

/* --- WHY --- */
.why {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.why__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.why .container {
  position: relative;
  z-index: 1;
}

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

.why__item {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(37, 99, 235, 0.08);
  background: #fff;
  transition: var(--transition);
}

.why__item:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

.why__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.why__item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why__item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* --- REVIEWS --- */
.reviews__source-link {
  color: var(--royal-blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reviews__source-link:hover { color: var(--blue-mid); }

.rc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.rc {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow:
    0 2px 8px rgba(37, 99, 235, 0.04),
    0 8px 32px rgba(37, 99, 235, 0.06);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rc:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.06),
    0 16px 48px rgba(37, 99, 235, 0.1);
}

.rc__stars {
  color: var(--royal-blue);
  font-size: 0.75rem;
  letter-spacing: 4px;
}

.rc__text {
  color: var(--deep-navy);
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
}

.rc__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

.rc__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc__info strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-navy);
}

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

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(160deg, #f0f7ff 0%, #dbeafe 50%, #eff6ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-banner__eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-banner p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- CONTACT --- */
.contact {
  position: relative;
  overflow: hidden;
}

.contact__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}

.contact .container {
  position: relative;
  z-index: 1;
}

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

.contact__info p {
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.7;
  font-size: 1rem;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__channel-icon {
  width: 48px;
  height: 48px;
  background: var(--ice-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.contact__channel strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact__channel span {
  font-size: 0.875rem;
  color: var(--royal-blue);
}

.contact__link {
  font-size: 0.875rem;
  color: var(--royal-blue);
  text-decoration: none;
  transition: color var(--transition);
}
.contact__link:hover {
  color: var(--blue-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- FORM --- */
.contact__form {
  background: var(--ice-blue-2);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  background: #fff;
  border: 1.5px solid var(--silver-grey);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #B0BAC9;
}

.form__group textarea { resize: vertical; min-height: 100px; }

/* --- FOOTER --- */
@keyframes footerShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer {
  background: linear-gradient(
    135deg,
    #0f1f3d 0%,
    #1E3A5F 30%,
    #1a2f6b 55%,
    #0d2247 80%,
    #0f1f3d 100%
  );
  background-size: 300% 300%;
  animation: footerShift 12s ease infinite;
  padding: 60px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(37,99,235,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(99,102,241,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.footer .container { position: relative; z-index: 1; }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 160px 220px;
  gap: 80px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer__logo {
  height: 44px;
  width: auto;
  filter: brightness(10);
}

.footer__name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}
.footer__name em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.footer__brand .luxury-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
  display: block;
}

.footer__links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__quote {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.75;
  border-left: 3px solid rgba(147,197,253,0.5);
  padding-left: 18px;
  margin-bottom: 16px;
}
.footer__quote cite {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  color: rgba(147,197,253,0.7);
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  transition: var(--transition);
}
.footer__social-link:hover {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer__social-handle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* --- SCROLL ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { animation-delay: 0.15s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s;  transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.45s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.6s;  transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- SECTION TRANSITIONS --- */
.hero::after,
.about::after,
.offer::after,
.why::after,
.reviews::after,
.cta-banner::after,
.contact::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  z-index: 20;
}

/* Hero bottom fades into About's warm white */
.hero::after {
  height: 140px;
  background: linear-gradient(to bottom, transparent, #fffdf9);
}

/* About bottom fades into Offer's ice-blue-2 */
.about::after {
  height: 110px;
  background: linear-gradient(to bottom, transparent, #F0F7FF);
}

/* Offer bottom fades into Why's white */
.offer::after {
  height: 110px;
  background: linear-gradient(to bottom, transparent, #ffffff);
}

/* Why bottom fades into Reviews' ice-blue-2 */
.why::after {
  height: 110px;
  background: linear-gradient(to bottom, transparent, #F0F7FF);
}

/* Reviews bottom fades into CTA's light blue */
.reviews::after {
  height: 110px;
  background: linear-gradient(to bottom, transparent, #f0f7ff);
}

/* CTA bottom fades into Contact's white */
.cta-banner::after {
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
}

/* Contact → Footer: no fade, hard cut handled by footer's own background */

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__visual { display: none; }
  .hero__scroll-hint { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-wrap { max-width: 340px; margin: 0 auto; }
  .offer__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .offer__card--featured { transform: none; }
  .offer__card--featured:hover { transform: translateY(-6px); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links, .btn--nav { display: none; }
  .nav__hamburger { display: flex; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .hero__headline { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .contact__form { padding: 28px 20px; }
  .hero__floating { display: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .about__stat--2 { position: static; margin-top: 16px; }
  .about__img-placeholder { aspect-ratio: 1/1; }
}
