@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 1.25rem;
  font-style: normal;
}
.section-title .highlight {
  color: #dc2626;
  position: relative;
  font-style: italic;
}
.section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #dc2626, transparent);
  border-radius: 9999px;
  opacity: 0.6;
}

.section-subtitle {
  text-align: center;
  color: #475569;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 250ms ease;
  white-space: nowrap;
}
.btn svg {
  width: 20px;
  height: 20px;
  transition: transform 250ms ease;
}
.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.2);
}
.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #64748b;
  font-weight: 500;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}
.btn-ghost:hover {
  color: #e2e8f0;
  text-decoration: underline;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn-lg svg {
  width: 22px;
  height: 22px;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}
.btn-xl svg {
  width: 24px;
  height: 24px;
}

.urgency-banner {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  padding: 0.75rem 0;
  color: #ffffff;
}
.urgency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}
.urgency-banner .banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.urgency-banner .banner-icon svg {
  width: 20px;
  height: 20px;
  animation: pulse-icon 2s ease-in-out infinite;
}
.urgency-banner .banner-text {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .urgency-banner .banner-text {
    font-size: 1rem;
  }
}
.urgency-banner .banner-phone {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.urgency-banner .banner-phone:hover {
  background: rgba(255, 255, 255, 0.3);
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: transform 250ms ease;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.logo .logo-icon {
  width: 44px;
  height: 44px;
  color: #dc2626;
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.15));
}
@media (min-width: 768px) {
  .logo .logo-icon {
    width: 48px;
    height: 48px;
  }
}
.logo .logo-img {
  height: 50px;
  width: auto;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 768px) {
  .logo .logo-img {
    height: 55px;
  }
}
.logo:hover .logo-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.25));
}
.logo:hover .logo-img {
  transform: scale(1.05);
}
.logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo .logo-name {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #0f172a;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
@media (min-width: 768px) {
  .logo .logo-name {
    font-size: 1.625rem;
  }
}
.logo .logo-amp {
  color: #dc2626;
  font-style: italic;
  font-weight: 400;
  margin: 0 0.125rem;
}
.logo .logo-tagline {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 0.125rem;
}
@media (min-width: 768px) {
  .logo .logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }
}

.nav {
  display: none;
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
    gap: 2rem;
  }
  .nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #475569;
    position: relative;
  }
  .nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 250ms ease;
  }
  .nav a:hover {
    color: #0f172a;
  }
  .nav a:hover::after {
    width: 100%;
  }
}

.header-cta {
  display: none;
}
@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: #0f172a;
    color: #ffffff;
    border-radius: 9999px;
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: all 250ms ease;
    border: 2px solid transparent;
  }
  .header-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 250ms ease;
  }
  .header-cta:hover {
    background: transparent;
    color: #0f172a;
    border-color: #0f172a;
    transform: translateY(-2px);
  }
  .header-cta:hover svg {
    transform: scale(1.1);
  }
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 9999px;
  transition: all 250ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 8rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding: 8rem 0 12rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0 14rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg .hero-image-bg {
  position: absolute;
  inset: 0;
}
.hero-bg .hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (min-width: 1024px) {
  .hero-bg .hero-image-bg img {
    object-position: center center;
    transform: translateY(-166.07px);
  }
}
.hero-bg .hero-image-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.4) 70%, transparent 85%, transparent 100%);
}
@media (min-width: 1024px) {
  .hero-bg .hero-image-bg::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0.2) 70%, transparent 85%);
  }
}
.hero-bg .hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(220, 38, 38, 0.06) 0%, transparent 50%), linear-gradient(to bottom, transparent 60%, #ffffff 100%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero .container {
    max-width: 800px;
    margin-left: 0;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {
  .hero .container {
    max-width: 900px;
    padding-left: 6rem;
  }
}

.hero-content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
    max-width: 600px;
  }
}

.pre-headline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.pre-headline .star-icon {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.headline .highlight {
  display: block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.subheadline {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media (min-width: 1024px) {
  .subheadline {
    font-size: 1.25rem;
  }
}
.subheadline strong {
  color: #0f172a;
  font-weight: 500;
}

.value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .value-props {
    justify-content: flex-start;
  }
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #475569;
}
.value-prop svg {
  width: 18px;
  height: 18px;
  color: #16a34a;
}

.hero-cta-section {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .hero-cta-section {
    align-items: flex-start;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .trust-badges {
    justify-content: flex-start;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.badge svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.problems {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  margin-top: -6rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .problems {
    margin-top: -8rem;
  }
}
.problems::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

.problems-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 250ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.problem-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.problem-card:hover .problem-icon svg {
  transform: scale(1.1);
}

.problem-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}
.problem-icon svg {
  width: 32px;
  height: 32px;
  color: #dc2626;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.problem-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.problem-solution {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.problem-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #dc2626;
}
.problem-cta:hover {
  color: #ef4444;
}

.social-proof {
  background: #ffffff;
}

.proof-stats {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .proof-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-stat {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  transition: all 250ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.proof-stat:hover {
  background: rgba(220, 38, 38, 0.02);
  border-color: rgba(220, 38, 38, 0.2);
}

.stat-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number .stat-unit {
  font-size: 1.5rem;
  margin-left: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.stat-quote {
  font-size: 0.875rem;
  color: #475569;
  font-style: italic;
}

.testimonial-spotlight {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.quote-icon {
  position: absolute;
  top: -16px;
  left: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  border-radius: 0.75rem;
}
.quote-icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}
.testimonial-text strong {
  color: #0f172a;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.author-info {
  flex: 1;
}
.author-info strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
}
.author-info span {
  font-size: 0.875rem;
  color: #64748b;
}

.author-stars {
  display: flex;
  gap: 2px;
}
.author-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.review-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
}
.review-link svg {
  width: 20px;
  height: 20px;
  color: #dc2626;
}
.review-link:hover {
  color: #0f172a;
}

.team-showcase {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.team-images {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .team-images {
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
  }
}

.team-photo {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.team-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .team-photo--main {
    order: 1;
  }
}
@media (min-width: 768px) {
  .team-photo--logo {
    order: 2;
  }
}

.team-caption {
  text-align: center;
  font-size: 1rem;
  color: #475569;
}
.team-caption strong {
  color: #dc2626;
}

.why-us {
  background: #f8fafc;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.comparison-header .comparison-col {
  padding: 1.25rem 1.5rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 600;
  text-align: center;
}
.comparison-header .comparison-col:first-child {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.comparison-header .comparison-col.negative {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
}
.comparison-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.comparison-item.positive {
  background: rgba(22, 163, 74, 0.03);
  color: #334155;
}
.comparison-item.positive svg {
  color: #16a34a;
}
.comparison-item.negative {
  background: rgba(220, 38, 38, 0.03);
  color: #64748b;
}
.comparison-item.negative svg {
  color: #dc2626;
  opacity: 0.6;
}

.why-us-cta {
  text-align: center;
}

.services {
  background: #ffffff;
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-category {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 250ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.service-category:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.service-category.emergency {
  border-color: rgba(220, 38, 38, 0.3);
}
.service-category.emergency .service-icon {
  background: rgba(220, 38, 38, 0.1);
}
.service-category.emergency .service-icon svg {
  color: #dc2626;
}
.service-category.emergency:hover {
  border-color: rgba(220, 38, 38, 0.5);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.service-icon svg {
  width: 36px;
  height: 36px;
  color: #dc2626;
}

.service-category h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #475569;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service-list li:last-child {
  border-bottom: none;
}
.service-list li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
}

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

.process {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.process-step {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  flex: 1;
  transition: all 250ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.process-step:hover {
  background: rgba(220, 38, 38, 0.02);
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(220, 38, 38, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.step-content p {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-time {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
}

.step-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 0.75rem;
}
.step-icon svg {
  width: 22px;
  height: 22px;
  color: #dc2626;
}

.process-connector {
  display: none;
}
@media (min-width: 768px) {
  .process-connector {
    display: flex;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
    margin-top: 4rem;
  }
  .process-connector svg {
    width: 100%;
    height: 40px;
    color: #94a3b8;
  }
}

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

.gallery {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  overflow: hidden;
}

.gallery-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .gallery-featured {
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
  }
}

.featured-main {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16/10;
}
@media (min-width: 1024px) {
  .featured-main {
    aspect-ratio: 4/3;
  }
}
.featured-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-main:hover img {
  transform: scale(1.05);
}
.featured-main .featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .featured-main .featured-overlay {
    padding: 2.5rem;
  }
}
.featured-main .featured-overlay h3 {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.featured-main .featured-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.featured-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .featured-side {
    gap: 1.5rem;
  }
}

.featured-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-item:hover img {
  transform: scale(1.08);
}
.featured-item .featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.featured-item .featured-overlay h4 {
  color: #ffffff;
  font-size: 1rem;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}
.featured-item .featured-tag {
  margin-bottom: 0.5rem;
  font-size: 0.625rem;
  padding: 0.25rem 0.75rem;
}

.gallery-cta {
  text-align: center;
}
.gallery-cta .gallery-count {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #475569;
}
.gallery-cta .gallery-count strong {
  color: #dc2626;
  font-size: 1.5rem;
  font-family: "DM Serif Display", Georgia, serif;
}

.gallery-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .carousel-slide {
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  .carousel-slide {
    min-width: 33.333%;
  }
}

.slide-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.carousel-slide:hover .slide-image img {
  transform: scale(1.08);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 250ms ease;
}
.carousel-slide:hover .slide-overlay {
  opacity: 1;
}

.slide-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.slide-content {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
}
.slide-content h4 {
  font-size: 1.0625rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  margin-bottom: 0.375rem;
  color: #0f172a;
}
.slide-content p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 9999px;
  transition: all 250ms ease;
  cursor: pointer;
}
.carousel-btn svg {
  width: 24px;
  height: 24px;
  color: #475569;
  transition: all 250ms ease;
}
.carousel-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: scale(1.1);
}
.carousel-btn:hover svg {
  color: #ffffff;
}
.carousel-btn:active {
  transform: scale(0.95);
}
.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.carousel-btn:disabled:hover {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  transform: none;
}
.carousel-btn:disabled:hover svg {
  color: #475569;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 250ms ease;
}
.carousel-dot:hover {
  background: rgba(220, 38, 38, 0.5);
}
.carousel-dot.active {
  width: 32px;
  background: #dc2626;
}

.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(15, 23, 42, 0.1);
  overflow: hidden;
  border-radius: 0 0 1.5rem 1.5rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transition: width 0.1s linear;
  border-radius: 0 9999px 9999px 0;
}

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

.carousel-container::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 250ms ease;
  box-shadow: 0 0 8px #16a34a;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.carousel-container.paused::after {
  opacity: 1;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.carousel-container::before {
  content: "← Swipe →";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.75rem 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  animation: swipe-hint 3s ease-in-out 2s forwards;
}
@media (min-width: 768px) {
  .carousel-container::before {
    display: none;
  }
}

@keyframes swipe-hint {
  0%, 80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.faq {
  background: #ffffff;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 250ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.faq-item:hover {
  border-color: rgba(220, 38, 38, 0.3);
}
.faq-item.active {
  border-color: rgba(220, 38, 38, 0.5);
}
.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 250ms ease;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: #dc2626;
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.faq-question:hover {
  color: #dc2626;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 350ms ease;
}
.faq-answer p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

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

.final-cta {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  text-align: center;
}

.urgency-text {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.offer-box {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
}
.offer-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.offer-list {
  margin-bottom: 2rem;
}
.offer-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #475569;
}
.offer-list li svg {
  width: 20px;
  height: 20px;
  color: #16a34a;
}

.offer-box .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-line {
  font-size: 0.8125rem;
  color: #64748b;
}

.footer {
  background: #1e293b;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}
.footer-col address {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.footer-col address strong {
  color: #ffffff;
}
.footer-col address a {
  color: #ef4444;
}
.footer-col address a:hover {
  color: #ffffff;
}
.footer-col address .hours {
  display: block;
  margin-top: 0.5rem;
  color: #16a34a;
  font-size: 0.875rem;
}
.footer-col ul li {
  padding: 0.375rem 0;
}
.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col ul li a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 250ms ease;
}
.social-links a svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.social-links a:hover {
  background: #dc2626;
}
.social-links a:hover svg {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links a:hover {
  color: #ffffff;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(8px);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 250ms ease;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}
body.scrolled .mobile-cta {
  transform: translateY(0);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}
.mobile-cta-btn svg {
  width: 22px;
  height: 22px;
  animation: phone-ring 1.5s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% {
    transform: rotate(0);
  }
  10%, 30% {
    transform: rotate(-10deg);
  }
  20%, 40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal=fade-up],
[data-reveal] {
  transform: translateY(40px);
}

[data-reveal=fade-left] {
  transform: translateX(-40px);
}

[data-reveal=fade-right] {
  transform: translateX(40px);
}

[data-reveal=scale] {
  transform: scale(0.95);
}

[data-reveal=blur] {
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].is-visible > *:nth-child(1) {
  transition-delay: 0.08s;
}

[data-reveal-stagger].is-visible > *:nth-child(2) {
  transition-delay: 0.16s;
}

[data-reveal-stagger].is-visible > *:nth-child(3) {
  transition-delay: 0.24s;
}

[data-reveal-stagger].is-visible > *:nth-child(4) {
  transition-delay: 0.32s;
}

[data-reveal-stagger].is-visible > *:nth-child(5) {
  transition-delay: 0.4s;
}

[data-reveal-stagger].is-visible > *:nth-child(6) {
  transition-delay: 0.48s;
}

[data-reveal-stagger].is-visible > *:nth-child(7) {
  transition-delay: 0.56s;
}

[data-reveal-stagger].is-visible > *:nth-child(8) {
  transition-delay: 0.64s;
}

[data-reveal-stagger].is-visible > *:nth-child(9) {
  transition-delay: 0.72s;
}

[data-reveal-stagger].is-visible > *:nth-child(10) {
  transition-delay: 0.8s;
}

[data-reveal-stagger].is-visible > *:nth-child(11) {
  transition-delay: 0.88s;
}

[data-reveal-stagger].is-visible > *:nth-child(12) {
  transition-delay: 0.96s;
}

[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

[data-delay="600"] {
  transition-delay: 0.6s;
}

.stat-number {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

[data-reveal] svg path,
[data-reveal] svg line,
[data-reveal] svg circle,
[data-reveal] svg rect {
  transition: stroke-dashoffset 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

.section-title {
  overflow: hidden;
}
.section-title .title-text {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-title.is-visible .title-text {
  transform: translateY(0);
}

.problem-card,
.service-category,
.testimonial-card,
.carousel-slide {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.problem-card:hover,
.service-category:hover,
.testimonial-card:hover,
.carousel-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after {
  transform: translateX(100%);
}

.aos-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

[data-aos-delay="400"] {
  transition-delay: 0.4s;
}

[data-aos-delay="500"] {
  transition-delay: 0.5s;
}

.service-areas {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (max-width: 768px) {
  .service-areas {
    padding: 4rem 0;
  }
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: #dc2626;
}
.area-card:hover .area-link svg {
  transform: translateX(4px);
}
.area-card--primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border: none;
}
.area-card--primary .area-badge {
  background: #dc2626;
  color: #ffffff;
}
.area-card--primary .area-name {
  color: #ffffff;
}
.area-card--primary .area-desc {
  color: rgba(255, 255, 255, 0.75);
}
.area-card--primary .area-link {
  color: #ef4444;
}
.area-card--primary .area-icon {
  color: #ef4444;
}

.area-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: #f1f5f9;
  border-radius: 2rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.area-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: #dc2626;
}
.area-icon svg {
  width: 100%;
  height: 100%;
}

.area-name {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.area-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.area-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: auto;
}
.area-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.areas-more {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.areas-also {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 1rem;
}
.areas-also strong {
  color: #0f172a;
}

.areas-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
.areas-note svg {
  width: 16px;
  height: 16px;
  color: #dc2626;
  flex-shrink: 0;
}
.areas-note strong {
  color: #0f172a;
}

.areas-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .areas-secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .areas-secondary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.area-card--small {
  padding: 1.5rem;
}
.area-card--small .area-name {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}
.area-card--small .area-desc {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.area-card--small .area-badge {
  padding: 0.2rem 0.6rem;
  font-size: 0.5625rem;
}
.area-card--small .area-link {
  font-size: 0.8125rem;
}

.area-card--travel {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #94a3b8;
}
.area-card--travel .area-badge {
  background: #dc2626;
  color: #ffffff;
}
.area-card--travel .area-name {
  color: #ffffff;
}
.area-card--travel .area-desc {
  color: #475569;
}
.area-card--travel:hover {
  border-color: #dc2626;
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
}

/*# sourceMappingURL=v2.css.map */
