:root {
  --blue-primary: #18599C;
  --blue-light: #3171AD;
  --blue-dark: #0f3d6b;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --olive: #626255;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-light: #f5f5f5;
  --gray-border: #e5e5e5;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.text-amber { color: var(--amber); }
.text-white { color: var(--white); }
.text-blue { color: var(--blue-primary); }
.font-bold { font-weight: 700; }
.opacity-80 { opacity: 0.8; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-dark);
}

.btn-secondary {
  background: var(--blue-primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--blue-dark);
}

.btn-white {
  background: var(--white);
  color: var(--blue-primary);
}

.btn-white:hover {
  background: var(--amber);
  color: var(--white);
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.2);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-electric {
  position: relative;
  overflow: hidden;
}

.btn-electric::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-electric:hover::before {
  left: 100%;
}

.btn-electric:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(24, 89, 156, 0.3);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 640px) {
  .header-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .header-container { padding: 0 2rem; }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.logo-link:hover .logo-img-wrapper {
  box-shadow: var(--shadow-lg);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text { display: block; }
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo-title {
  color: var(--blue-primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.header.scrolled .logo-subtitle {
  color: var(--olive);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--amber);
}

.header.scrolled .nav-link {
  color: var(--black);
}

.header.scrolled .nav-link:hover {
  color: var(--amber);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-actions { display: flex; }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .header-phone {
  color: var(--blue-primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .mobile-menu-btn .icon {
  color: var(--black);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  box-shadow: var(--shadow-xl);
  animation: slideDown 0.3s ease;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--blue-primary);
}

.mobile-menu-footer {
  padding: 1rem;
  border-top: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(49, 113, 173, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(24, 89, 156, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.blob-amber {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(245, 158, 11, 0.1);
  animation: pulse 4s ease-in-out infinite;
}

.blob-blue {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(49, 113, 173, 0.2);
  animation: pulse 4s ease-in-out infinite 1s;
}

.blob-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background: rgba(24, 89, 156, 0.05);
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-bolts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bolt {
  position: absolute;
  color: rgba(245, 158, 11, 0.3);
  animation: boltPulse 3s ease-in-out infinite;
}

.hero-bolt svg {
  width: 2rem;
  height: 2rem;
}

@keyframes boltPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1rem 4rem;
}

@media (min-width: 640px) {
  .hero-content { padding: 8rem 1.5rem 4rem; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 8rem 2rem; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge .icon {
  color: var(--amber);
}

.hero-badge span {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-title .text-amber {
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255,255,255,0.8);
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .hero-features { justify-content: flex-start; }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.hero-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 1;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-image-wrapper { display: block; }
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(24,89,156,0.2));
  border-radius: 1.5rem;
  transform: rotate(6deg);
}

.hero-image-container {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-float-bottom {
  bottom: -1.5rem;
  left: -1.5rem;
}

.hero-float-top {
  top: -1.5rem;
  right: -1.5rem;
  background: var(--amber);
  color: var(--white);
}

.float-card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card-icon .icon {
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
}

.float-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  font-family: var(--font-heading);
}

.float-card-label {
  font-size: 0.875rem;
  color: var(--olive);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  width: 100%;
  display: block;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.stats-section {
  padding: 3rem 0;
  background: var(--white);
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--blue-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .stat-value { font-size: 2.25rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--olive);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-description {
  font-size: 1.125rem;
  color: var(--olive);
  max-width: 42rem;
  margin: 0 auto;
}

.services-section {
  padding: 5rem 0 8rem;
  background: linear-gradient(180deg, var(--white), var(--gray-light));
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 89, 156, 0.15);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(24, 89, 156, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon .icon {
  color: var(--blue-primary);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--olive);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--olive);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-primary);
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--amber);
}

.about-section {
  padding: 5rem 0 8rem;
  background: var(--blue-primary);
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.about-blob-1 {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.about-blob-2 {
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: var(--amber);
  transform: translate(50%, 50%);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-content .section-title {
  color: var(--white);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
}

.about-cta {
  margin-top: 2rem;
}

.contact-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 2rem;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--amber);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .icon {
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
}

.contact-label {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: rgba(255,255,255,0.7);
}

.contact-link {
  color: rgba(255,255,255,0.7);
  display: block;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--amber);
}

.contact-license {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-license p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.products-section {
  padding: 5rem 0 8rem;
  background: var(--gray-light);
}

.products-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(24, 89, 156, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-icon .icon {
  color: var(--blue-primary);
}

.product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.875rem;
  color: var(--olive);
}

.products-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-section {
  padding: 5rem 0 8rem;
  background: var(--white);
}

.testimonial-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--gray-light);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

@media (min-width: 640px) {
  .testimonial-card { padding: 3rem; }
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--amber);
  fill: var(--amber);
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .testimonial-text { font-size: 1.5rem; }
}

.testimonial-name {
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--olive);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: var(--gray-border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot:hover {
  background: rgba(24, 89, 156, 0.5);
}

.testimonial-dot.active {
  width: 2rem;
  background: var(--blue-primary);
}

.areas-section {
  padding: 5rem 0 8rem;
  background: var(--gray-light);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  color: var(--black);
  transition: var(--transition);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.area-tag .icon {
  color: var(--blue-primary);
  width: 1rem;
  height: 1rem;
}

.areas-note {
  text-align: center;
  color: var(--olive);
  margin-top: 2rem;
}

.text-link {
  color: var(--blue-primary);
  font-weight: 600;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--amber);
}

.cta-section {
  padding: 5rem 0 8rem;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37.5rem;
  height: 37.5rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  color: var(--amber);
  margin: 0 auto 1.5rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-title { font-size: 3rem; }
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

.cta-features {
  display: grid;
  gap: 1.5rem;
  color: rgba(255,255,255,0.8);
}

@media (min-width: 640px) {
  .cta-features { grid-template-columns: repeat(3, 1fr); }
}

.cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-feature .icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}

.cta-feature-title {
  font-weight: 600;
  color: var(--white);
}

.cta-feature-text {
  font-size: 0.875rem;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  object-fit: contain;
}

.footer-logo-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  max-width: 28rem;
}

.footer-license {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--amber);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item .icon {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--amber);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

