/* ============ Base ============ */
:root {
  --red: #cc0000;
  --red-dark: #a30000;
  --red-light: #ff1a1a;
  --dark: #1a1a1a;
  --footer-dark: #17181c;
  --gray-text: #5c5c5c;
  --border: #eaeaea;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { line-height: 1.2; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.1px;
  text-align: center;
}
.btn-white { background: #fff; color: var(--red); box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.16); }
.btn-cta { background: #fff; color: var(--red); font-size: 1.05rem; padding: 16px 38px; box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.22); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 12px rgba(204,0,0,0.25); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(204,0,0,0.32); }
.btn-red-outline { background: #fff; color: var(--red); border-color: var(--red); }
.btn-red-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--red); transform: translateY(-2px); }
.btn i { margin-right: 6px; }
.full-width { width: 100%; text-align: center; }

/* ============ Section Titles ============ */
.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-sub {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 56px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ Top strip ============ */
.top-strip {
  background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
  text-align: center;
  font-size: 0.75rem;
  color: #777;
  padding: 8px 12px;
  letter-spacing: 0.2px;
}

/* ============ Header ============ */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo { font-weight: 800; font-size: 1.4rem; color: var(--dark); letter-spacing: -0.5px; }
.logo-img { height: 58px; width: auto; display: block; }
.logo .fas { color: var(--red); font-size: 1rem; vertical-align: middle; margin-left: 2px; }
.logo-light { color: #fff; }
.logo-light .fas { color: #fff; }
.logo-light-img { border-radius: 10px; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}
.main-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
  border-radius: 1px;
}
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-email {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 500;
}
.header-right .btn-white {
  background: var(--red);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.9rem;
}
.header-right .btn-white:hover { background: var(--red-dark); }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, #e21f1f 0%, var(--red) 50%, var(--red-dark) 100%);
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 26px;
  border-radius: 24px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  animation: fadeInDown 0.8s ease;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h2 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-sub {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-tags {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.92;
  animation: fadeInUp 0.8s ease 1s both;
}
.hero-tags span {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ============ Stats bar ============ */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px;
  min-width: 140px;
}
.stat-num {
  color: var(--red);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 500;
}

/* ============ About ============ */
.about {
  padding: 90px 0 70px;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.about-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
  background: #fff;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(204,0,0,0.2);
}
.about-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(204,0,0,0.25);
}
.about-card h3 { margin-bottom: 14px; font-size: 1.2rem; font-weight: 700; }
.about-card p { color: var(--gray-text); font-size: 0.95rem; line-height: 1.7; }

/* ============ About Page Story ============ */
.about-story {
  padding: 90px 0;
  background: #fff;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
  text-align: left;
}
.story-content p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.story-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.story-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(204,0,0,0.25);
}
.story-stat {
  display: flex;
  flex-direction: column;
}
.story-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.story-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 500;
}

/* ============ Values Section ============ */
.values-section {
  padding: 90px 0;
  background: #fafafa;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
  background: #fff;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(204,0,0,0.2);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(204,0,0,0.25);
}
.value-card h3 { margin-bottom: 14px; font-size: 1.15rem; font-weight: 700; }
.value-card p { color: var(--gray-text); font-size: 0.92rem; line-height: 1.7; }

/* ============ Plans ============ */
.plans { padding: 90px 0 60px; background: #fafafa; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.plan-card-featured {
  border: 2px solid var(--red);
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(204,0,0,0.15);
}
.plan-card-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 48px rgba(204,0,0,0.2);
}
.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.75rem;
  padding: 8px 20px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(204,0,0,0.35);
  white-space: nowrap;
}
.plan-tag {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.plan-card h3 {
  font-size: 2.2rem;
  margin: 10px 0 4px;
  font-weight: 800;
}
.plan-type {
  color: var(--gray-text);
  font-size: 0.88rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: 0;
}
.plan-card ul {
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}
.plan-card ul li {
  padding: 9px 0;
  font-size: 0.92rem;
  color: #444;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.plan-card ul li::before {
  content: "✓";
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.95rem;
}
.plan-card .btn { margin-top: auto; }
.pricing-disclaimer {
  margin-top: 40px;
  font-size: 0.78rem;
  color: #888;
  text-align: center;
  background: #f0f0f0;
  padding: 16px 24px;
  border-radius: var(--radius);
  line-height: 1.6;
}

/* ============ Reviews ============ */
.reviews {
  padding: 90px 0;
  background: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.stars i { margin: 0 1px; }
.review-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
  text-align: right;
}

/* ============ Why us ============ */
.why { padding: 90px 0; background: #fafafa; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
  background: #fff;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(204,0,0,0.25);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(204,0,0,0.25);
}
.why-card h3 { margin-bottom: 14px; font-size: 1.15rem; font-weight: 700; }
.why-card p { color: var(--gray-text); font-size: 0.92rem; line-height: 1.7; }

/* ============ Services ============ */
.services { padding: 90px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(204,0,0,0.2);
}
.service-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(204,0,0,0.25);
}
.service-card h4 { margin-bottom: 8px; font-size: 1.05rem; font-weight: 700; }
.service-card p { color: var(--gray-text); font-size: 0.9rem; line-height: 1.6; }

/* ============ CTA ============ */
.cta {
  background: linear-gradient(135deg, #e21f1f 0%, var(--red) 50%, var(--red-dark) 100%);
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-badge {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-weight: 800;
  padding: 10px 28px;
  border-radius: 24px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}
.cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; position: relative; z-index: 1; }
.cta p { opacity: 0.95; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-hours { margin-top: 24px; font-size: 0.9rem; opacity: 0.85; position: relative; z-index: 1; }

/* ============ Callback form ============ */
.callback {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  background: #fafafa;
}
.callback-card {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.callback-card h3 { font-size: 1.6rem; margin-bottom: 6px; font-weight: 800; }
.callback-card > p { color: var(--gray-text); margin-bottom: 24px; font-size: 0.95rem; }
.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row input,
.form-row select {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: #fafafa;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204,0,0,0.08);
  background: #fff;
}
.callback-card form button { margin-top: 12px; }

/* ============ FAQ ============ */
.faq { padding: 90px 0 100px; background: #fff; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 4px 24px;
  transition: var(--transition);
  background: #fff;
}
.faq-item:hover { border-color: rgba(204,0,0,0.25); box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.faq-item[open] { box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: rgba(204,0,0,0.2); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 16px;
  color: var(--dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,0,0,0.08);
  border-radius: 50%;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  color: var(--gray-text);
  font-size: 0.95rem;
  padding-bottom: 22px;
  padding-right: 10px;
  line-height: 1.7;
}

/* ============ Legal Sections ============ */
.legal-section {
  padding: 70px 0;
  background: #fafafa;
}
.legal-section.legal-alt {
  background: #fff;
}
.legal-card {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.legal-section.legal-alt .legal-card {
  background: #fafafa;
}
.legal-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.legal-card > p:first-of-type {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.legal-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--dark);
}
.legal-card p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-card a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card a:hover { color: var(--red-dark); }

/* ============ Footer ============ */
.site-footer {
  background: var(--footer-dark);
  color: #ccc;
  padding-top: 60px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-desc {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.footer-contact-link,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-link:hover,
.footer-contact-item:hover {
  color: #fff;
}
.footer-contact-link i,
.footer-contact-item i {
  color: #ef4444;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: #ccc;
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 1rem; font-weight: 700; }
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #aaa;
  margin-bottom: 11px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-col p {
  font-size: 0.88rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
}
.footer-col p i {
  color: #ef4444;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}
.footer-col a i {
  color: #ef4444;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}
.footer-hours {
  color: #aaa !important;
  font-size: 0.85rem !important;
}
.footer-legal-wrapper {
  background: #0f1115;
  padding-top: 40px;
}
.footer-legal {
  padding: 0 24px 30px;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.7;
}
.disclaimer-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.disclaimer-box i {
  color: #ef4444;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.disclaimer-box p {
  color: #888;
  font-size: 0.8rem;
  line-height: 1.7;
  margin: 0;
}
.copyright {
  text-align: center;
  color: #666;
  font-size: 0.78rem;
  margin-bottom: 6px;
}
.footer-tagline {
  text-align: center;
  color: #555;
  font-size: 0.75rem;
}

/* ============ Animations ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Fade in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .plans-grid, .why-grid, .reviews-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-card-featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .plans-grid, .why-grid, .services-grid, .reviews-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .plan-card-featured { transform: none; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 20px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }
  .main-nav.nav-open { right: 0; }
  .mobile-menu-toggle { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero h2 { font-size: 1.3rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-tags { flex-direction: column; gap: 8px; }
  .section-title { font-size: 1.9rem; }
  .cta h2 { font-size: 1.7rem; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr; gap: 30px; }
  .callback-card { padding: 32px 24px; }
  .legal-card { padding: 28px 22px; }
  .story-content h2 { font-size: 1.7rem; }
}

@media (max-width: 600px) {
  .hero { padding: 70px 20px 60px; }
  .hero h1 { font-size: 1.8rem; }
  .hero h2 { font-size: 1.1rem; }
  .form-row { flex-direction: column; }
  .header-email { display: none; }
  .stats-inner { flex-direction: column; gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .plan-price { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
}
