/* ===========================================
   CisnerosGroup Solutions - Stylesheet
   =========================================== */

:root {
  --navy-900: #0a1729;
  --navy-800: #0d1b2a;
  --navy-700: #142a44;
  --navy-600: #1e3a5f;
  --blue-500: #4a90e2;
  --blue-400: #5ba3d0;
  --blue-300: #87b8d8;
  --blue-100: #e3f0fa;
  --accent-gold: #c9a961;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-section: #f8fafc;
  --text: #1a2332;
  --text-muted: #5b6b80;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 27, 42, 0.1);
  --shadow-lg: 0 20px 50px rgba(13, 27, 42, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--blue-500); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy-700); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { color: var(--text-muted); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}

.brand-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-100);
  color: var(--navy-800);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.78rem;
  font-weight: 600;
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
  font-family: inherit;
}

.lang-toggle button.active {
  background: var(--navy-800);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-800);
  color: white;
}
.btn-primary:hover {
  background: var(--blue-500);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: white;
  color: var(--navy-800);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}
.btn-light:hover {
  background: white;
  color: var(--navy-800);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy-800);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: white;
  overflow: hidden;
  padding: 100px 0 120px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(74, 144, 226, 0.25), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(135, 184, 216, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 span { color: var(--blue-300); }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--blue-300);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 540px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  display: block;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hero-card-head h4 {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.score-pill {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.float-card.tl { top: -10px; left: -30px; }
.float-card.br { bottom: -20px; right: -10px; }

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.float-text small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.float-text b { font-size: 0.9rem; color: var(--navy-800); }

/* ============ SECTIONS ============ */
section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; }

.bg-soft { background: var(--bg-section); }

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-100), #f0f9ff);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.testimonial-text {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

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

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--navy-700));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.author-info b { display: block; color: var(--navy-800); font-size: 0.95rem; }
.author-info small { color: var(--text-muted); font-size: 0.82rem; }

/* ============ RATINGS BAR ============ */
.ratings-bar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.rating-item .platform {
  font-weight: 700;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 1rem;
}

.rating-item .score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-800);
  font-family: var(--font-display);
  line-height: 1;
  margin: 6px 0;
}

.rating-item .reviews {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-item .stars {
  justify-content: center;
  margin: 4px 0;
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-300);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy-800); }
.process-step p { font-size: 0.9rem; }

/* ============ PRICING / PLANS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.plan {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}

.plan.featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.plan.featured::before {
  content: 'Recomendado';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

[data-lang="en"] .plan.featured::before { content: 'Recommended'; }

.plan h3 { margin-bottom: 6px; }
.plan .duration {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: block;
}

.plan .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan .price .amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1;
}

.plan .price .unit {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan ul {
  list-style: none;
  margin-bottom: 28px;
}

.plan ul li {
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a90e2'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / contain;
}

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

/* ============ ABOUT / CEO ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.ceo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  aspect-ratio: 3/4;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

.ceo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  color: white;
}
.ceo-badge b { font-family: var(--font-display); font-size: 1.05rem; }
.ceo-badge small { display: block; color: var(--blue-300); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 1.02rem; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-500);
  display: grid;
  place-items: center;
}
.value-item b { font-family: var(--font-display); color: var(--navy-800); font-size: 0.95rem; display: block; margin-bottom: 2px; }
.value-item small { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.18), transparent 70%);
  pointer-events: none;
}

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

.cta-inner h2 { color: white; max-width: 600px; }
.cta-inner p { color: rgba(255, 255, 255, 0.75); margin-top: 8px; }

/* ============ FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

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

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--blue-300);
  transform: translateX(4px);
}

.contact-method .float-icon {
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: white;
}

.contact-method b { color: var(--navy-800); display: block; margin-bottom: 4px; font-family: var(--font-display); }
.contact-method a, .contact-method span { color: var(--text-muted); font-size: 0.95rem; }
.contact-method a:hover { color: var(--blue-500); }

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-800);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============ FOOTER ============ */
footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}

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

footer h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; }
footer ul a:hover { color: var(--blue-300); }

.footer-brand p { color: rgba(255, 255, 255, 0.6); margin-top: 16px; font-size: 0.92rem; }

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

/* ============ PAGE HEADER ============ */
.page-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(74, 144, 226, 0.2), transparent 60%);
}

.page-header h1 { color: white; position: relative; }
.page-header p { color: rgba(255, 255, 255, 0.75); margin-top: 12px; position: relative; font-size: 1.1rem; }

.crumb {
  position: relative;
  display: inline-flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--blue-300);
  margin-bottom: 18px;
  font-weight: 500;
}

/* ============ FAQ ============ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue-500);
  transition: transform 0.3s;
  font-weight: 400;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ LANGUAGE TOGGLE ============ */
.en, .es { display: none; }
[data-lang="es"] .es { display: initial; }
[data-lang="en"] .en { display: initial; }
[data-lang="es"] .es-block, [data-lang="en"] .en-block { display: block; }
[data-lang="es"] .en-block, [data-lang="en"] .es-block { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .ratings-bar { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { padding: 12px 16px; border-radius: 8px; }
  .menu-toggle { display: block; }
  .hero { padding: 70px 0 90px; }
  section { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .plan.featured { transform: none; }
  .float-card.tl, .float-card.br { position: static; margin: 12px 0; }
}

@media (max-width: 560px) {
  .ratings-bar { grid-template-columns: 1fr 1fr; padding: 24px 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .container { padding: 0 18px; }
}

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

.fade-up { animation: fadeUp 0.8s ease-out both; }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.3s; }

/* Print Google Fonts via link, but provide safe fallback */
