/* ========================================
   SINTA — Landing Page CSS
   Earthy Elegant Palette · Fixed Navbar
   ======================================== */

:root {
  /* New Earthy Color Palette */
  --primary: #8A7650;
  --primary-dark: #6B5A3E;
  --primary-light: #A6956F;
  --primary-pale: rgba(138, 118, 80, 0.1);
  --primary-glow: rgba(138, 118, 80, 0.08);
  
  --secondary: #8E977D;
  --secondary-dark: #727A62;
  --secondary-light: #A8B096;
  
  --white: #FFFFFF;
  --off-white: #FAF9F8;
  --cream: #F5F0E8;
  --dark: #2C2820;
  --charcoal: #3D3835;
  --gray: #6B6463;
  --gray-light: #A8A09B;
  --border: rgba(0, 0, 0, 0.08);
  --border-2: rgba(0, 0, 0, 0.12);
  
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  
  --container: 1280px;
  --nav-height: 70px;
  --section-py: 5rem 0;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  
  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.2;
}

h4 {
  font-size: 1.1rem;
  font-weight: 500;
}

em {
  font-style: italic;
  color: var(--primary);
}

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

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

/* Eyebrow */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rule {
  width: 2rem;
  height: 1px;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: var(--section-py);
}

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

.section__header {
  margin-bottom: 3rem;
}

.section__header h2 {
  margin-top: 0.5rem;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 1rem auto 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--t-base);
  cursor: pointer;
  border: none;
  background: none;
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.68rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.8rem;
}

.btn--primary {
  background: var(--primary);
  color: white;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--dark:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border-2);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

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

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

.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION - FIXED SIZE
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--t-base);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  gap: 2rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
}

/* Navigation Links */
.nav__links {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}

.nav__links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--t-base);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--dark);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* Actions */
.nav__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--t-base);
  border-radius: 2px;
}

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

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-pale) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 118, 80, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-delayed 25s ease-in-out infinite;
  pointer-events: none;
}

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

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

.hero__content {
  padding: 4rem 2rem 4rem calc((100vw - var(--container)) / 2 + 2rem);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease forwards 0.1s;
  opacity: 0;
}

.hero__title {
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease forwards 0.2s;
  opacity: 0;
}

.hero__sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 440px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease forwards 0.3s;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s ease forwards 0.4s;
  opacity: 0;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.6s ease forwards 0.5s;
  opacity: 0;
}

.hero__stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-top: 0.2rem;
}

.hero__stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

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

/* Hero Visual - WITH CORNER RADIUS */
/* Hero Visual - WITH CORNER RADIUS */
/* Hero Visual - WITH CORNER RADIUS */
.hero__visual {
  height: 100vh;
  position: relative;
  overflow: visible;
}

.hero__visual-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow-md);
}

.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomSlow 25s ease-in-out infinite alternate;
  display: block;
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
              linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: 40px;
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
              linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: 30px 0 0 30px;
}

.hero__visual-card {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  z-index: 2;
  border: 1px solid var(--primary-pale);
  box-shadow: var(--shadow-md);
}

.hero__visual-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.hero__visual-author {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
  background: var(--dark);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: scrollMarquee 30s linear infinite;
}

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

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.marquee__dot {
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  display: inline-block;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about__visual img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__visual:hover img {
  transform: scale(1.03);
}

.about__visual-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about__visual-badge-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--primary-light);
  line-height: 1;
}

.about__visual-badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.about__desc {
  color: var(--gray);
  line-height: 1.7;
  margin: 1.5rem 0 2rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.about__feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ========================================
   BUNDLES / PACKAGES
   ======================================== */
.bundles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bundle__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.bundle__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.bundle__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.bundle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bundle__card:hover .bundle__image img {
  transform: scale(1.05);
}

.bundle__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  z-index: 1;
}

.bundle__content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bundle__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.bundle__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.bundle__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bundle__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bundle__features li {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bundle__features li i {
  color: var(--primary);
  font-size: 0.7rem;
}

.bundle__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.bundle__price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
}

/* ========================================
   FEATURED GALLERY - UNIQUE IMAGES
   ======================================== */
.featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.featured__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.featured__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.featured__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured__card:hover .featured__image-wrap img {
  transform: scale(1.08);
}

.featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 40, 32, 0.85) 0%, rgba(44, 40, 32, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--t-base);
}

.featured__card:hover .featured__overlay {
  opacity: 1;
}

.featured__category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.4rem;
}

.featured__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
}

.featured__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t-fast);
}

.featured__link:hover {
  gap: 0.7rem;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.howit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.howit__grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.howit__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.howit__number {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.howit__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  transition: all var(--t-base);
}

.howit__step:hover .howit__icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
}

.howit__step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.howit__step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--t-base);
}

.testimonial__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial__author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  flex-shrink: 0;
  border: 2px solid var(--primary-pale);
}

.testimonial__name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark);
}

.testimonial__role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta__band {
  background: linear-gradient(135deg, var(--dark) 0%, #3D3835 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(138, 118, 80, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__band h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta__band h2 em {
  color: var(--primary-light);
}

.cta__band p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   CONTACT
   ======================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.contact__detail i {
  color: var(--primary);
  width: 20px;
}

.contact__social {
  display: flex;
  gap: 1rem;
}

.contact__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all var(--t-fast);
}

.contact__social a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: all var(--t-fast);
  outline: none;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-pale);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer__logo span {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--dark);
}

.footer__desc {
  color: var(--gray);
  font-size: 0.85rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
}

.footer__col ul li a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.85rem;
  transition: color var(--t-fast);
}

.footer__col ul li a:hover {
  color: var(--primary);
}

.footer__input-wrap {
  display: flex;
}

.footer__input-wrap input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.85rem;
  outline: none;
}

.footer__input-wrap input:focus {
  border-color: var(--primary);
}

.footer__input-wrap button {
  padding: 0.7rem 1.1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: background var(--t-fast);
}

.footer__input-wrap button:hover {
  background: var(--primary-dark);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--gray-light);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  text-decoration: none;
  color: var(--gray-light);
  transition: color var(--t-fast);
}

.footer__bottom-links a:hover {
  color: var(--primary);
}

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

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--t-base);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
}

.stagger > *:nth-child(1) {
  animation: fadeUp 0.5s ease forwards 0.05s;
}

.stagger > *:nth-child(2) {
  animation: fadeUp 0.5s ease forwards 0.1s;
}

.stagger > *:nth-child(3) {
  animation: fadeUp 0.5s ease forwards 0.15s;
}

.stagger > *:nth-child(4) {
  animation: fadeUp 0.5s ease forwards 0.2s;
}

.stagger > *:nth-child(5) {
  animation: fadeUp 0.5s ease forwards 0.25s;
}

.stagger > *:nth-child(6) {
  animation: fadeUp 0.5s ease forwards 0.3s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero__content {
    padding: 4rem 2rem;
  }
  
  .hero__visual {
    height: 60vh;
    min-height: 400px;
    border-radius: 30px;
  }
  
  .hero__visual-img {
    border-radius: 30px;
  }
  
  .hero__visual::before {
    border-radius: 30px;
  }
  
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about__visual img {
    height: 400px;
  }
  
  .about__visual-badge {
    right: 1rem;
  }
  
  .bundles__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .howit__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .howit__grid::before {
    display: none;
  }
  
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }
  
  .nav__links.active {
    display: flex;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .featured__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .bundles__grid {
    grid-template-columns: 1fr;
  }
  
  .howit__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__desc {
    margin: 0 auto;
  }
  
  .footer__logo {
    justify-content: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero__stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .featured__grid {
    grid-template-columns: 1fr;
  }
  
  .howit__grid {
    grid-template-columns: 1fr;
  }
  
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .bundles__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .nav__actions .btn--ghost {
    display: none;
  }
}