@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --how-blue: #1d4ed8;
  --how-blue-dark: #1e3a8a;
  --how-orange: #ea580c;
  --how-orange-dark: #c2410c;
  --how-light-blue: #3b82f6;
  --how-gray: #64748b;
  
  /* Main site dark theme colors */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  
  --background: #323232;
  --background-dark: #2a2a2a;
  --foreground: #f8fafc;
  --card-bg: rgba(30, 41, 59, 0.8);
  --border-color: rgba(148, 163, 184, 0.2);
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #323232 0%, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%, #323232 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  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;
  }
}

/* Navigation - Premium glass matching main site */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.8),
    rgba(30, 41, 59, 0.7),
    rgba(51, 65, 85, 0.6));
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  animation: nav-glass-shine 4s ease-in-out infinite;
}

@keyframes nav-glass-shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.nav-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffffff, #e0f2fe, #3b82f6, transparent);
  border-radius: 50%;
  animation: nav-sparkle-anim 3s ease-in-out infinite;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

@keyframes nav-sparkle-anim {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.6) rotate(0deg);
    filter: hue-rotate(0deg);
  }
  33% {
    opacity: 1;
    transform: scale(1.4) rotate(120deg);
    filter: hue-rotate(60deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(1.1) rotate(240deg);
    filter: hue-rotate(120deg);
  }
}

.nav-content {
  display: flex;
  align-items: center;
  height: 5rem;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.nav-logo {
  height: 3rem;
  width: auto;
  transition: transform 0.3s;
}

@media (min-width: 1024px) {
  .nav-logo {
    height: 4rem;
  }
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.375rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.nav-link {
  color: #f1f5f9;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(148, 163, 184, 0.1),
    rgba(203, 213, 225, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(59, 130, 246, 0.1),
    transparent);
  transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08));
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fed7aa;
}

.nav-link.active {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.4);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
    flex-shrink: 0;
  }
}

.nav-cta .btn-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  position: relative;
  overflow: hidden;
}

.nav-cta .btn-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: nav-glass-shine 4s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-orange {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: white;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #c2410c, #9a3412);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Mobile Nav */
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.mobile-menu-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* Hero Section - Dark slate gradient like main site */
.hero {
  position: relative;
  background: linear-gradient(
    -45deg,
    #0f172a,
    #1e293b,
    #334155,
    #0f172a,
    #1e293b,
    #374151,
    #1f2937,
    #0f172a
  );
  background-size: 400% 400%;
  animation: flameGradient 20s ease infinite;
  color: white;
  padding: 4rem 0;
  overflow: hidden;
}

@keyframes flameGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.hero-ray {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.3), transparent);
  animation: rayMove 8s ease-in-out infinite;
}

.hero-ray:nth-child(1) { top: 20%; transform: rotate(12deg); animation-delay: 0s; }
.hero-ray:nth-child(2) { top: 40%; transform: rotate(8deg); animation-delay: 2s; }
.hero-ray:nth-child(3) { top: 60%; transform: rotate(16deg); animation-delay: 4s; }

@keyframes rayMove {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) rotate(12deg); }
  50% { opacity: 0.6; transform: translateX(50%) rotate(12deg); }
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(251, 146, 60, 0.08), transparent);
}

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

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

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

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

.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.hero-icon img {
  height: 3rem;
  width: 3rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero h1 span {
  color: #fb923c;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

/* Trust Badges */
.trust-section {
  padding: 3rem 0;
  background: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
}

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

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.25rem;
}

.trust-icon.green { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.trust-icon.blue { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.trust-icon.orange { background: rgba(251, 146, 60, 0.2); color: #fb923c; }
.trust-icon.yellow { background: rgba(250, 204, 21, 0.2); color: #facc15; }

.trust-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Main Content */
main {
  padding: 4rem 0;
}

section {
  margin-bottom: 4rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

h2 span {
  color: var(--how-orange);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--how-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--how-orange), var(--how-orange-dark));
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
  border-bottom: none;
}

.check-icon {
  color: #10b981;
  font-weight: bold;
  flex-shrink: 0;
}

/* CTA Section - Dark slate like hero */
.cta-section {
  background: linear-gradient(
    -45deg,
    #0f172a,
    #1e293b,
    #334155,
    #0f172a
  );
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fb923c;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.phone-link:hover {
  color: #fed7aa;
}

/* Footer - Dark slate like nav */
.footer {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.98),
    rgba(30, 41, 59, 0.95),
    rgba(51, 65, 85, 0.9));
  color: white;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

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

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

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: #cbd5e1;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
}

.footer-contact-icon {
  color: var(--how-orange);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1.5rem;
  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-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--how-orange);
}

/* Gas Safe Badge */
.gas-safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.gas-safe-badge svg {
  color: #10b981;
}

/* Mobile Sticky CTA */
.mobile-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--how-orange), var(--how-orange-dark));
  padding: 1rem;
  text-align: center;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
}

/* Colour-accent card variants */
.card-orange {
  border-left: 3px solid #ea580c;
}
.card-orange .card-icon {
  background: linear-gradient(135deg, #ea580c, #c2410c);
}
.card-orange:hover {
  border-color: #ea580c;
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.15);
}

.card-green {
  border-left: 3px solid #10b981;
}
.card-green .card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.card-green:hover {
  border-color: #10b981;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.card-blue {
  border-left: 3px solid #3b82f6;
}
.card-blue .card-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.card-blue:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

/* Glass-effect cards */
.card-glass {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

/* Section dividers */
.section-divider {
  height: 2px;
  border: none;
  margin: 3rem 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(234, 88, 12, 0.4),
    rgba(16, 185, 129, 0.3),
    rgba(59, 130, 246, 0.3),
    transparent
  );
  border-radius: 1px;
}

/* Intro card with accent */
.intro-section {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea580c, #10b981, #3b82f6);
}

/* Image feature section */
.image-feature {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.image-feature-photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.6));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.image-feature-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-feature-photo figcaption {
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

/* FAQ styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-left: 3px solid transparent;
  transition: all 0.3s;
}

.faq-item:nth-child(1) { border-left-color: #ea580c; }
.faq-item:nth-child(2) { border-left-color: #10b981; }
.faq-item:nth-child(3) { border-left-color: #3b82f6; }
.faq-item:nth-child(4) { border-left-color: #ea580c; }
.faq-item:nth-child(5) { border-left-color: #10b981; }
.faq-item:nth-child(6) { border-left-color: #3b82f6; }

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.faq-item:hover {
  background: rgba(30, 41, 59, 0.9);
  transform: translateX(4px);
}

/* Coloured section heading badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-badge-orange {
  background: rgba(234, 88, 12, 0.15);
  color: #fb923c;
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.section-badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.section-badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Areas list pills */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.area-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--text-light);
  transition: all 0.3s;
}

.area-pill:hover {
  border-color: #ea580c;
  color: #fb923c;
}

/* Why choose us enhanced */
.why-grid {
  display: grid;
  gap: 1rem;
}

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.why-item:hover {
  border-color: rgba(234, 88, 12, 0.4);
  transform: translateY(-2px);
}

.why-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.why-item-text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.why-item-text strong {
  color: var(--foreground);
  display: block;
  margin-bottom: 0.25rem;
}

/* Button green variant */
.btn-green {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-green:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Hero v2 - Home page style with cards */
.hero-v2 {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
}

.hero-v2 .hero-content {
  display: block;
  position: relative;
  z-index: 10;
}

.hero-v2 .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

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

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

.hero-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-title-row {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.hero-icon-img {
  height: 4rem;
  width: 4rem;
}

@media (min-width: 1024px) {
  .hero-icon-img {
    height: 5rem;
    width: 5rem;
  }
}

.hero-v2 h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-v2 h1 {
    font-size: 3.25rem;
  }
}

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

.hero-v2 h1 .hero-highlight {
  display: block;
  background: linear-gradient(90deg, #fb923c, #facc15, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 100%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-v2 .hero-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}

@media (min-width: 1024px) {
  .hero-v2 .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-v2 .hero-subtitle strong {
  color: #fb923c;
  font-weight: 600;
}

.hero-v2 .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

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

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

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.btn-call {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  backdrop-filter: blur(4px);
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

/* Hero service cards (right column) */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: scale(1.03);
  border-color: rgba(148, 163, 184, 0.3);
}

.hero-card-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.hero-card-icon-orange {
  background: linear-gradient(135deg, #ea580c, #dc2626);
}

.hero-card-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.hero-card-icon-green {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

.hero-card:nth-child(1):hover {
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.2);
}

.hero-card:nth-child(2):hover {
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.hero-card:nth-child(3):hover {
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
}

.hero-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.hero-card p {
  font-size: 0.85rem;
  margin: 0;
}

.hero-card:nth-child(1) p { color: #fdba74; }
.hero-card:nth-child(2) p { color: #93c5fd; }
.hero-card:nth-child(3) p { color: #86efac; }

/* Hero trust badges (bottom of hero) */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .hero-trust-bar {
    gap: 2rem;
  }
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
}

.hero-trust-item svg {
  flex-shrink: 0;
}

.hero-trust-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
}

.hero-trust-item .trust-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #94a3b8;
}

/* What to Expect - Step cards */
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.step-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: rgba(234, 88, 12, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* Add padding for mobile CTA */
body {
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}
