/* ============================================================
   MascotaGuía – styles.css
   Complete stylesheet for all pages
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --orange:      #FF6B35;
  --orange-dark: #e05520;
  --orange-light:#fff0ea;
  --green:       #2D6A4F;
  --green-light: #e8f5ee;
  --cream:       #F8F4F0;
  --light-bg:    #FFF8F5;
  --dark:        #1A1A2E;
  --dark-mid:    #2e2e45;
  --grey:        #6b7280;
  --grey-light:  #e5e7eb;
  --white:       #ffffff;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;

  --radius-card: 12px;
  --radius-btn:  8px;
  --shadow-soft: 0 4px 20px rgba(255,107,53,.12);
  --shadow-card: 0 2px 16px rgba(26,26,46,.08);
  --shadow-hover:0 8px 32px rgba(255,107,53,.20);

  --transition: .25s ease;
  --max-w: 1180px;
  --header-h: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.25; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 88px 0; }
.section--alt { background: var(--light-bg); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 560px;
  margin-inline: auto;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(255,107,53,.30);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(45,106,79,.25);
}
.btn-green:hover {
  background: #1f4d39;
  border-color: #1f4d39;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange-light);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(248,244,240,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,107,53,.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,26,46,.10);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255,107,53,.35);
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark-mid);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--orange-light);
  color: var(--orange);
}

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(248,244,240,.98);
  backdrop-filter: blur(12px);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 32px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: background var(--transition), color var(--transition);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--cream) 60%, #ffe8dd 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left – text */
.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(45,106,79,.20);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge i { font-size: .85rem; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  font-size: 1.1rem;
  margin-left: -8px;
  background: var(--orange-light);
}

.hero-trust-avatars span:first-child { margin-left: 0; }

.hero-trust-text { font-size: .88rem; color: var(--grey); }
.hero-trust-text strong { color: var(--dark); font-weight: 700; }

/* Right – decorative visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: linear-gradient(135deg, #ffe0d1 0%, #ffc9b0 50%, #ffb899 100%);
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  33%      { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  66%      { border-radius: 50% 50% 45% 55% / 50% 50% 60% 40%; }
}

.hero-icon-main {
  font-size: 7rem;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(255,107,53,.25));
  animation: floatMain 4s ease-in-out infinite;
}

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

.hero-floating {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  z-index: 3;
  animation: floatOrbit 5s ease-in-out infinite;
}

@keyframes floatOrbit {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-10px) scale(1.05); }
}

.hero-floating.f1 { width: 68px; height: 68px; font-size: 1.9rem; top: 20px; right: 40px; animation-delay: .5s; }
.hero-floating.f2 { width: 56px; height: 56px; font-size: 1.5rem; bottom: 50px; left: 20px; animation-delay: 1.5s; }
.hero-floating.f3 { width: 52px; height: 52px; font-size: 1.3rem; top: 70px; left: 30px; animation-delay: 1s; }
.hero-floating.f4 { width: 48px; height: 48px; font-size: 1.2rem; bottom: 30px; right: 60px; animation-delay: 2s; }

.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-soft);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero-stat-card.sc1 { bottom: 16px; right: -10px; animation: floatOrbit 4.5s ease-in-out infinite .8s; }
.hero-stat-card.sc2 { top: 16px; left: -10px; animation: floatOrbit 5.5s ease-in-out infinite 1.2s; }

.hero-stat-card .stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
}

.hero-stat-card .stat-info .stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}

.hero-stat-card .stat-info .stat-label {
  font-size: .72rem;
  color: var(--grey);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,107,53,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .93rem;
  color: var(--grey);
  line-height: 1.7;
}

.feature-card .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.feature-tag {
  font-size: .75rem;
  font-family: var(--font-head);
  font-weight: 600;
  background: var(--cream);
  color: var(--dark-mid);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% - 16px);
  width: calc(33.33% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 0;
}

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

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px var(--orange-light);
  position: relative;
}

.step-number .step-emoji {
  position: absolute;
  bottom: -6px;
  right: -6px;
  font-size: 1.2rem;
  background: var(--white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.10);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step p { font-size: .92rem; color: var(--grey); }

/* ============================================================
   PLANS SECTION
   ============================================================ */
.plans-section {
  background: var(--light-bg);
  padding: 88px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.plan-card:hover { transform: translateY(-4px); }

.plan-card.recommended {
  border-color: var(--orange);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--orange);
  transform: scale(1.04);
  z-index: 2;
}

.plan-card.recommended:hover { transform: scale(1.04) translateY(-4px); }

.plan-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.plan-description {
  font-size: .88rem;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.plan-price .currency { font-family: var(--font-head); font-size: 1rem; color: var(--grey); font-weight: 600; }
.plan-price .amount { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--dark); line-height: 1; }
.plan-price .period { font-size: .85rem; color: var(--grey); }

.plan-price.free .amount { font-size: 2rem; color: var(--green); }

.plan-features { margin-bottom: 32px; }

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--dark-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--cream);
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li i {
  font-size: .8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-features li i.fa-check { color: var(--green); }
.plan-features li i.fa-times { color: var(--grey-light); }
.plan-features li.disabled { color: var(--grey); }

.plan-card .btn { width: 100%; justify-content: center; }

.plan-card .plan-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 12px 12px 0 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,107,53,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--orange-light);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--dark-mid);
  line-height: 1.75;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: .9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--cream);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.testimonial-info .author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark);
}

.testimonial-info .author-role {
  font-size: .78rem;
  color: var(--grey);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { background: var(--light-bg); }

.faq-list {
  max-width: 760px;
  margin: 52px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  border: 1px solid rgba(255,107,53,.08);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition), background var(--transition);
}

.faq-question:hover { background: var(--orange-light); color: var(--orange); }
.faq-question.active { color: var(--orange); background: var(--orange-light); }

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
  background: var(--orange);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.8;
}

.faq-answer-inner a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-form-section {
  background: var(--cream);
  padding: 88px 0;
}

.contact-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: 0 8px 40px rgba(26,26,46,.10);
  border: 1px solid rgba(255,107,53,.08);
}

.contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header .form-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.form-header h2 { font-size: 1.8rem; margin-bottom: 8px; }
.form-header p { color: var(--grey); font-size: .95rem; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark-mid);
  margin-bottom: 8px;
}

.form-group label span { color: var(--orange); }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control::placeholder { color: #b0b8c5; }

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,.12);
  background: var(--white);
}

textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-success p { color: var(--grey); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e05520 100%);
  padding: 52px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-banner-text p { color: rgba(255,255,255,.80); font-size: 1rem; }

.cta-banner .btn-white { padding: 14px 32px; font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.70);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand .nav-logo .logo-icon {
  background: rgba(255,107,53,.20);
}

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

.footer-desc {
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: rgba(255,255,255,.60);
}

.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.60);
  transition: background var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.60);
  display: block;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.60);
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 3px;
  font-size: .85rem;
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .copyright {
  font-size: .82rem;
  color: rgba(255,255,255,.40);
}

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

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

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

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 3px solid var(--orange);
  padding: 18px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform .4s ease, opacity .4s ease;
}

.cookie-banner.hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}

.cookie-text .cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cookie-text-content p {
  font-size: .88rem;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
}

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

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

.btn-cookie-accept {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-cookie-accept:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.60);
  border: 2px solid rgba(255,255,255,.25);
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.btn-cookie-decline:hover { border-color: rgba(255,255,255,.60); color: var(--white); }

/* ============================================================
   SUB-PAGE STYLES
   ============================================================ */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,53,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(45,106,79,.12) 0%, transparent 60%);
  pointer-events: none;
}

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

.page-hero-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: rgba(255,107,53,.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(255,107,53,.25);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  max-width: 540px;
  margin-inline: auto;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.50);
  margin-bottom: 20px;
}

.page-hero .breadcrumb a { color: var(--orange); }
.page-hero .breadcrumb i { font-size: .7rem; }

/* Legal Content */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 88px;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: var(--orange-light);
  border-radius: 10px;
  border-left: 4px solid var(--orange);
}

.legal-meta span {
  font-size: .85rem;
  color: var(--dark-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-meta span i { color: var(--orange); }

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-content h2 i { color: var(--orange); font-size: 1rem; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-mid);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a { color: var(--orange); text-decoration: underline; }

.legal-content .highlight-box {
  background: var(--green-light);
  border: 1px solid rgba(45,106,79,.20);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 20px 0;
}

.legal-content .highlight-box p { color: var(--green); font-weight: 600; margin-bottom: 0; }
.legal-content .highlight-box p i { margin-right: 6px; }

/* Contact Cards */
.contact-cards-section { padding: 80px 0; }

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,107,53,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-icon.green {
  background: var(--green-light);
  color: var(--green);
}

.contact-card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-card-content p {
  font-size: .88rem;
  color: var(--grey);
  margin-bottom: 4px;
}

.contact-card-content a {
  font-size: .9rem;
  color: var(--orange);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-card-content a:hover { color: var(--orange-dark); }

/* Contact page form */
.contact-page-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(26,26,46,.10);
  max-width: 760px;
  margin: 0 auto;
}

.contact-page-form h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-page-form > p {
  color: var(--grey);
  font-size: .95rem;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE – 768px
   ============================================================ */
@media (max-width: 768px) {

  :root { --header-h: 64px; }

  .section { padding: 64px 0; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 300px; order: -1; }
  .hero-blob { width: 280px; height: 280px; }
  .hero-icon-main { font-size: 5.5rem; }
  .hero-stat-card.sc1 { right: 0; }
  .hero-stat-card.sc2 { left: 0; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .steps-wrapper::before { display: none; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.recommended { transform: none; }
  .plan-card.recommended:hover { transform: translateY(-4px); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact form wrapper */
  .contact-form-wrapper { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }

  /* Contact cards */
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-page-form { padding: 32px 24px; }

  /* Cookie */
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* ============================================================
   RESPONSIVE – 480px
   ============================================================ */
@media (max-width: 480px) {

  .section { padding: 48px 0; }

  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stat-card { display: none; }
  .hero-floating.f1, .hero-floating.f3 { display: none; }

  .section-title { font-size: 1.6rem; }

  .plans-grid { gap: 16px; }

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

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

  .contact-form-wrapper { padding: 28px 18px; }

  .legal-content { padding: 48px 0 64px; }
}
