/* ============================================================
   PetMundo MX – styles.css
   Complete stylesheet for all pages
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:        #1E3A8A;
  --primary-dark:   #162d6e;
  --primary-light:  #2563EB;
  --accent:         #F59E0B;
  --accent-dark:    #D97706;
  --accent-light:   #FCD34D;
  --bg:             #F0F7FF;
  --bg-section:     #EFF6FF;
  --text:           #0F172A;
  --text-muted:     #475569;
  --text-light:     #94A3B8;
  --white:          #FFFFFF;
  --border:         #DBEAFE;
  --border-light:   #E2E8F0;
  --success:        #10B981;
  --error:          #EF4444;

  --font-heading:   'Nunito', sans-serif;
  --font-body:      'Open Sans', sans-serif;

  --radius-card:    16px;
  --radius-btn:     8px;
  --radius-sm:      6px;

  --shadow-sm:      0 1px 3px rgba(30,58,138,0.08), 0 1px 2px rgba(30,58,138,0.06);
  --shadow-md:      0 4px 16px rgba(30,58,138,0.10), 0 2px 6px rgba(30,58,138,0.07);
  --shadow-lg:      0 10px 40px rgba(30,58,138,0.14), 0 4px 12px rgba(30,58,138,0.08);
  --shadow-card:    0 2px 20px rgba(30,58,138,0.09);

  --transition:     0.25s ease;
  --container:      1180px;
}

/* ---------- 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(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 12px 26px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(30,58,138,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,138,0.30);
}

.btn-accent {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(245,158,11,0.30);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

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

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

.btn-lg {
  font-size: 1.05rem;
  padding: 15px 34px;
}

.btn-sm {
  font-size: 0.85rem;
  padding: 8px 18px;
}

/* ---------- Section headers ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 54px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(30,58,138,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--primary-dark); }
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30,58,138,0.25);
  flex-shrink: 0;
}
.nav-logo-text span { color: var(--accent); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--bg-section);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  background: none;
  border: none;
}
.nav-hamburger:hover { background: var(--bg-section); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
}
.nav-mobile a:hover {
  color: var(--primary);
  background: var(--bg-section);
}
.nav-mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 50%, #2563EB 100%);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(245,158,11,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-card);
  padding: 20px 30px;
  min-width: 170px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.hero-stat:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
}

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.steps-section {
  padding: 80px 0;
  background: var(--white);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.step-number {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(30,58,138,0.25);
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 90px 0;
  background: var(--bg-section);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 38px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,58,138,0.15);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 26px;
  flex-shrink: 0;
}
.feature-icon-wrap.blue   { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: var(--primary); }
.feature-icon-wrap.amber  { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); color: var(--accent-dark); }
.feature-icon-wrap.green  { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); color: #059669; }

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}

.feature-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.feature-link:hover { color: var(--accent-dark); gap: 10px; }

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

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

.plan-card {
  background: var(--bg-section);
  border-radius: var(--radius-card);
  padding: 38px 30px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card:hover:not(.plan-featured) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card.plan-featured {
  background: linear-gradient(145deg, var(--primary), #1d4ed8);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
  color: var(--white);
}
.plan-card.plan-featured:hover { transform: scale(1.04) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 40px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,158,11,0.30);
}

.plan-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.plan-card.plan-featured .plan-name { color: var(--white); }

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.65;
}
.plan-card.plan-featured .plan-desc { color: rgba(255,255,255,0.75); }

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
.plan-card.plan-featured .plan-divider { background: rgba(255,255,255,0.18); }

.plan-features {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}
.plan-card.plan-featured .plan-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.12);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i {
  color: var(--success);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.plan-card.plan-featured .plan-features li i { color: var(--accent-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-section);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: var(--accent); font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.avatar-blue   { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.avatar-amber  { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.avatar-green  { background: linear-gradient(135deg, #059669, #10B981); }
.avatar-purple { background: linear-gradient(135deg, #7C3AED, #A78BFA); }

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.testimonial-city {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 90px 0;
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(30,58,138,0.20);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 24px;
}
.faq-answer-inner {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 22px;
}
.faq-answer-inner a { font-weight: 600; }
.faq-item.open .faq-answer { max-height: 600px; }

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

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.form-input, .form-textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 15px; }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--success);
  border: 2px solid #A7F3D0;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}
.form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 360px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 50%, var(--primary-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245,158,11,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title em { font-style: normal; color: var(--accent); }

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .nav-logo:hover { color: rgba(255,255,255,0.85); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255,255,255,0.60);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a i { font-size: 0.8rem; color: var(--accent); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.40);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--text);
  border-top: 3px solid var(--accent);
  padding: 18px 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}
.cookie-text i {
  color: var(--accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
}
.cookie-text a {
  color: var(--accent);
  font-weight: 600;
}
.cookie-text a:hover { color: var(--accent-light); }

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

.btn-cookie-accept {
  background: var(--accent);
  color: var(--text);
  border: 2px solid var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-accept:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 2px solid rgba(255,255,255,0.25);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }

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

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Legal content */
.legal-content {
  padding: 72px 0;
  background: var(--white);
}
.legal-content .container {
  max-width: 820px;
}
.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 40px;
}
.legal-date i { color: var(--accent); }

.legal-section {
  margin-bottom: 44px;
}
.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2 i { color: var(--accent); font-size: 1rem; }
.legal-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.80;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}
.legal-section ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-section a { color: var(--primary); font-weight: 600; }
.legal-section a:hover { color: var(--primary-light); }
.legal-highlight {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
}

/* Contact page */
.contact-cards {
  padding: 72px 0;
  background: var(--white);
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,58,138,0.20);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.icon-blue   { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: var(--primary); }
.icon-amber  { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); color: var(--accent-dark); }
.icon-green  { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); color: #059669; }
.icon-purple { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); color: #7C3AED; }

.contact-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}
.contact-card-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-card-value a { color: var(--primary); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .plans-grid {
    gap: 20px;
  }
  .plan-card.plan-featured {
    transform: scale(1.02);
  }
  .plan-card.plan-featured:hover {
    transform: scale(1.02) translateY(-4px);
  }
}

@media (max-width: 768px) {
  /* Header */
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 64px 0 60px; }
  .hero-stats { gap: 14px; }
  .hero-stat { min-width: 140px; padding: 16px 20px; }

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

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

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card.plan-featured { transform: none; }
  .plan-card.plan-featured:hover { transform: translateY(-4px); }

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

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Contact cards */
  .contact-cards-grid { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero { padding: 50px 0 48px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: center; }
  .hero-stat { width: 100%; max-width: 300px; }

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

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  .contact-form-wrap { padding: 26px 18px; }

  .plans-grid { max-width: 100%; }

  .footer-legal { flex-direction: column; gap: 10px; }
}
