body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #3a4252;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #005bea;
  gap: 0.7rem;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 0.4rem;
  box-shadow: 0 2px 8px rgba(0,119,182,0.07);
  background: #fff;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: #22304a;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 0.4rem 0.2rem 0.4rem 0.2rem;
  position: relative;
  transition: color 0.18s, background 0.18s;
  border-radius: 0.7rem;
  letter-spacing: 0.01em;
}
nav a:hover, nav a:focus {
  color: #0074e4;
  background: none;
  text-shadow: 0 2px 8px rgba(0,91,234,0.10);
}
nav a::after {
  content: none;
}
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(10,24,60,0.97) 0%, rgba(0,41,94,0.92) 60%, rgba(0,91,234,0.55) 100%),
    url('https://www.24hour-emergencydentist.co.uk/wp-content/uploads/2023/05/ct-scan-4.webp') center/cover no-repeat;
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 48px 0 rgba(0,41,94,0.18);
  border-radius: 0 0 2.5rem 2.5rem;
  border-bottom: 3.5px solid #22304a;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: inherit;
  filter: blur(3.5px) brightness(0.98) saturate(1.13);
  z-index: 0;
  transition: filter 0.4s;
}
.hero:hover::before {
  filter: blur(5px) brightness(1.07) saturate(1.22);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0,198,251,0.18) 0%, rgba(0,91,234,0.13) 60%, transparent 100%);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
  animation: heroOverlayAnim 8s ease-in-out infinite alternate;
}
@keyframes heroOverlayAnim {
  0% { opacity: 0.7; background-position: 70% 30%; }
  100% { opacity: 0.95; background-position: 60% 40%; }
}
.hero-particles {
  pointer-events: none;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(120deg, #b3d4fc 0%, #00c6fb 100%);
  opacity: 0.18;
  animation: heroParticleAnim 12s linear infinite;
}
.hero-particle.p1 { width: 38px; height: 38px; left: 12%; top: 18%; animation-delay: 0s; }
.hero-particle.p2 { width: 22px; height: 22px; left: 78%; top: 32%; animation-delay: 2s; }
.hero-particle.p3 { width: 28px; height: 28px; left: 55%; top: 70%; animation-delay: 4s; }
.hero-particle.p4 { width: 16px; height: 16px; left: 30%; top: 60%; animation-delay: 6s; }
.hero-particle.p5 { width: 24px; height: 24px; left: 65%; top: 15%; animation-delay: 8s; }
@keyframes heroParticleAnim {
  0% { transform: translateY(0) scale(1); opacity: 0.18; }
  50% { transform: translateY(-30px) scale(1.15); opacity: 0.28; }
  100% { transform: translateY(0) scale(1); opacity: 0.18; }
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  width: 100%;
  gap: 3rem;
}
.hero-image {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,119,182,0.08);
}
.hero-text {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
}
.hero-title-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}
.hero-title-icon {
  font-size: 2.7rem;
  color: #00c6fb;
  filter: drop-shadow(0 2px 12px rgba(0,198,251,0.18));
  flex-shrink: 0;
  margin-right: 0.2rem;
}
.hero-text h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff !important;
  background: none;
  border-radius: 0.3em;
  margin-bottom: 0.1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 24px rgba(10,30,80,0.32), 0 1px 0 #fff;
  line-height: 1.1;
  padding: 0;
  display: inline-block;
}
.hero-text h2 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  margin-top: 0.2rem;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(10,30,80,0.22), 0 1px 0 #fff;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-text h2 span {
  position: relative;
  padding-bottom: 0.18em;
  display: inline-block;
}
.hero-text h2 span::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #22304a 0%, #005bea 100%);
  border-radius: 2px;
  margin-top: 0.18em;
  opacity: 0.8;
}
.hero-lead {
  font-size: 1.13rem;
  color: #e3e8f0 !important;
  margin-bottom: 1.5rem;
  margin-top: 0.2rem;
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(10,30,80,0.18);
  font-weight: 400;
}
.hero-lead strong {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,198,251,0.18);
}
.hero-text p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}
.hero-text h1, .hero-text h2 {
  color: #fff !important;
  text-shadow: 0 4px 24px rgba(10,30,80,0.22);
}
.hero-text p {
  color: #e3e8f0 !important;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, #ffb300 0%, #ff6f00 100%);
  color: #fff;
  padding: 0.85rem 2.1rem;
  border-radius: 2.7rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,91,234,0.07);
  border: 2px solid rgba(0,91,234,0.10);
  outline: 1.5px solid rgba(255,179,0,0.10);
  outline-offset: 0.5px;
  background-clip: padding-box;
  transition: border 0.18s, outline 0.18s, background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, #ffb300 0%, #ff9800 100%);
  color: #fff;
  border-color: #ffb300;
  box-shadow: 0 4px 24px 0 rgba(255,179,0,0.25), 0 1.5px 8px 0 rgba(0,0,0,0.07);
  outline: 2px solid #ffb30033;
  transform: translateY(-2px) scale(1.04);
}
.cta:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(255,179,0,0.10);
}
.cta-secondary {
  display: inline-block;
  background: linear-gradient(90deg, #005bea 0%, #00c6fb 100%);
  color: #fff;
  padding: 0.85rem 2.1rem;
  border-radius: 2.7rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,91,234,0.07);
  border: 2px solid rgba(0,91,234,0.10);
  outline: 1.5px solid rgba(0,91,234,0.10);
  outline-offset: 0.5px;
  background-clip: padding-box;
  transition: border 0.18s, outline 0.18s, background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
  color: #fff;
  border-color: #005bea;
  box-shadow: 0 4px 24px 0 rgba(0,91,234,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.07);
  outline: 2px solid #005bea33;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(0,91,234,0.10);
}
.cta i, .cta-secondary i {
  font-size: 1em;
}
.intro {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 1.5rem;
  padding: 1.2rem 1.2rem 0.7rem 1.2rem;
}
footer {
  background: #e3f0ff;
  color: #1a1a2e;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 0.98rem;
  margin-top: 3.5rem;
  border-radius: 1.2rem 1.2rem 0 0;
  letter-spacing: 0.01em;
}
/* Navbar Responsive */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.nav-toggle .bar {
  width: 26px;
  height: 3px;
  background: #0077b6;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-cta {
  display: inline-block;
  margin-left: 1.1rem;
  padding: 0.48rem 1.3rem;
  background: #fff;
  color: #005bea;
  font-weight: 600;
  font-size: 1.02rem;
  border: 2px solid #005bea;
  border-radius: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,91,234,0.06);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s, transform 0.13s;
  position: relative;
  z-index: 1;
}
.nav-cta:hover, .nav-cta:focus {
  background: #005bea;
  color: #fff;
  border-color: #005bea;
  box-shadow: 0 4px 16px rgba(0,91,234,0.13);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
  nav {
    flex-direction: row;
    gap: 0;
    padding: 1rem;
    position: relative;
  }
  .nav-toggle {
    display: flex;
    z-index: 201;
  }
  .nav-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    width: 320px;
    min-width: 220px;
    max-width: 90vw;
    position: fixed;
    top: 0;
    right: -340px;
    left: auto;
    height: 100vh;
    background: #fff;
    border-radius: 1.1rem 0 0 1.1rem;
    box-shadow: -2px 0 32px rgba(0,91,234,0.13);
    padding: 2.2rem 1.1rem 1.5rem 1.1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0);
    transition: right 0.32s cubic-bezier(.4,0,.2,1), opacity 0.25s;
    z-index: 202;
  }
  .nav-right.open {
    right: 0;
    opacity: 1;
    pointer-events: auto;
    transition: right 0.32s cubic-bezier(.4,0,.2,1), opacity 0.25s;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    width: 100%;
    margin-bottom: 0.5rem;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .nav-cta {
    margin: 0;
    width: auto;
    min-width: 120px;
    text-align: center;
    font-size: 1.08rem;
    padding: 0.9rem 1.2rem;
    border-radius: 1.3rem;
    align-self: flex-end;
  }
  .hero {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .intro {
    padding: 0 1rem;
  }
  .dropdown-menu {
    display: block !important;
    position: static;
    width: 100%;
    max-height: 70vh;
    overflow-y: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    border: none;
  }
  .dropdown-accordion {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .dropdown-category-toggle {
    width: 100%;
    text-align: left;
    padding: 0.7rem 0.2rem 0.4rem 0.5rem;
  }
  .dropdown-items {
    width: 100%;
    padding-left: 1.2rem;
    margin: 0.1rem 0 0.5rem 0;
    border-left: 2px solid #e3f0ff;
    display: block;
  }
  .dropdown-items li {
    display: block;
    width: 100%;
  }
  .dropdown-items li a {
    width: 100%;
    padding: 0.38rem 0.9rem 0.38rem 0.7rem;
    border-radius: 0.7rem;
    margin-bottom: 0.18rem;
    display: block;
  }
  .dropdown-close-btn {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .dropdown-close-btn button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #22304a;
    cursor: pointer;
    padding: 0.2rem 0.7rem 0.2rem 0.2rem;
    border-radius: 0.5rem;
    transition: background 0.15s;
  }
  .dropdown-close-btn button:hover {
    background: #e3f0ff;
  }
  .sidebar-close-btn {
    display: block !important;
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #22304a;
    cursor: pointer;
    padding: 0.2rem 0.7rem 0.2rem 0.2rem;
    border-radius: 0.5rem;
    transition: background 0.15s;
    z-index: 203;
  }
  .sidebar-close-btn:hover {
    background: #e3f0ff;
  }
  .nav-right {
    padding-top: 3.5rem;
  }
}
@media (min-width: 701px) {
  .nav-toggle {
    display: none;
  }
  .nav-right {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    min-width: 600px;
    max-width: 900px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(34,48,74,0.10);
    border-radius: 1.2rem;
    padding: 1.2rem 2.2rem 1.2rem 2.2rem;
    z-index: 10;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
    border: 1.5px solid #e3e8f0;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: flex;
  }
  .dropdown-accordion {
    margin-bottom: 0;
    flex: 1 1 180px;
    min-width: 160px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
    box-shadow: none;
    border-radius: 0.7rem;
    padding: 0.2rem 0.7rem 0.2rem 0.7rem;
  }
  .dropdown-category-toggle, .dropdown-category {
    background: none !important;
    border: none;
    color: #005bea;
    font-weight: 700;
    font-size: 1.13rem;
    text-align: left;
    padding: 0.2rem 0 0.5rem 0.2rem;
    margin: 0 0 0.2rem 0;
    border-radius: 0.4rem;
    box-shadow: none;
  }
  .dropdown-items {
    display: block !important;
    padding-left: 0.7rem;
    margin: 0 0 0.7rem 0;
    list-style: none;
    border-left: 2px solid #e3e8f0;
    width: 100%;
  }
  .dropdown-items li a {
    color: #3a4252;
    font-size: 0.98rem;
    padding: 0.38rem 0.9rem 0.38rem 0.7rem;
    display: block;
    border-radius: 0.7rem;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    font-weight: 400;
    width: 100%;
    margin-bottom: 0.18rem;
    position: relative;
  }
  .dropdown-items li a:hover {
    background: #f5f7fa;
    color: #005bea;
    box-shadow: 0 2px 8px rgba(0,91,234,0.06);
  }
  .dropdown-close-btn {
    display: none !important;
  }
  .sidebar-close-btn {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .hero-image {
    margin-bottom: 1rem;
    justify-content: center;
  }
  .hero-text {
    align-items: center;
    text-align: center;
    margin-bottom: 1.2rem;
  }
  .hero-text h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .hero-text h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .hero-text p {
    font-size: 0.97rem;
    margin-bottom: 0.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }
  .cover-dental-img {
    max-width: 220px;
    margin: 0 auto 1.2rem auto;
    display: block;
  }
  .cta, .cta-secondary {
    font-size: 0.97rem;
    padding: 0.8rem 1.5rem;
  }
}
.mockup-dental {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0 1.5rem 0;
  padding: 0 1rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 1.5rem;
  padding: 1.2rem 1.2rem 0.7rem 1.2rem;
}
.mockup-img-container {
  background: #f9f9fb;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,119,182,0.07);
  padding: 1.2rem 1.2rem 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.mockup-caption {
  margin-top: 1rem;
  color: #ffb300;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.mockup-real-img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,119,182,0.10);
  display: block;
  background: #fff;
}
.cover-dental-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,119,182,0.13));
  margin-left: 0.5rem;
  background: transparent;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-direction: row;
}
@media (max-width: 700px) {
  .nav-right {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }
}
/* Overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,48,74,0.18);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}
.dropdown-category {
  color: #005bea;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.4rem 0 0.2rem 0.5rem;
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
  border-left: 3px solid #005bea;
  background: linear-gradient(90deg, #e3f0ff 0%, #fff 100%);
  border-radius: 0.3rem;
}
/* Simple dropdown styles */
.dropdown-menu.simple-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(34,48,74,0.10);
  border-radius: 1.1rem;
  padding: 0.7rem 0.5rem;
  z-index: 10;
  border: 1.5px solid #e3e8f0;
  max-height: 60vh;
  overflow-y: auto;
}
.dropdown:hover .dropdown-menu.simple-dropdown,
.dropdown:focus-within .dropdown-menu.simple-dropdown {
  display: block;
}
.dropdown-category {
  font-weight: 700;
  color: #005bea;
  padding: 0.5rem 1rem 0.2rem 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.1rem;
  background: none;
  border: none;
}
.dropdown-menu.simple-dropdown li a {
  color: #3a4252;
  font-size: 1rem;
  padding: 0.38rem 1.2rem;
  display: block;
  border-radius: 0.7rem;
  transition: background 0.15s, color 0.15s;
  font-weight: 400;
  margin-bottom: 0.12rem;
  text-decoration: none;
}
.dropdown-menu.simple-dropdown li a:hover {
  background: #f5f7fa;
  color: #005bea;
}
@media (max-width: 700px) {
  .dropdown-menu.simple-dropdown {
    display: none;
    position: static;
    left: 0;
    top: auto;
    min-width: 0;
    max-width: 100vw;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 0.2rem 0 0.2rem 0;
    border: none;
    max-height: none;
    overflow-y: visible;
    margin-top: 0;
    background: none;
  }
  .dropdown.open .dropdown-menu.simple-dropdown {
    display: block;
  }
  .dropdown-category {
    font-weight: 700;
    color: #005bea;
    padding: 0.7rem 1.2rem 0.2rem 1.2rem;
    margin: 0.2rem 0 0.1rem 0;
    background: none;
    border: none;
    width: 100%;
  }
  .dropdown-menu.simple-dropdown li a {
    color: #3a4252;
    font-size: 1rem;
    padding: 0.38rem 1.2rem;
    display: block;
    border-radius: 0.7rem;
    transition: background 0.15s, color 0.15s;
    font-weight: 400;
    margin-bottom: 0.12rem;
    text-decoration: none;
    width: 100%;
  }
  .dropdown-menu.simple-dropdown li a:hover {
    background: #f5f7fa;
    color: #005bea;
  }
}
.nav-login-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  color: #005bea !important;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.22rem 0.7rem;
  font-size: 0.89rem;
  box-shadow: 0 2px 8px rgba(0,91,234,0.07);
  border: 1.5px solid #b3d4fc;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  margin-left: 1.2rem;
}
.nav-login-btn i {
  font-size: 0.98em;
  color: #005bea;
}
.nav-login-btn:hover, .nav-login-btn:focus {
  background: #f5f7fa;
  color: #0074e4 !important;
  border: 1.5px solid #0074e4;
  box-shadow: 0 4px 16px 0 rgba(0,91,234,0.10);
  text-decoration: none;
}
.benefits-section {
  max-width: 1200px;
  margin: 3.5rem auto 2.5rem auto;
  padding: 2.5rem 1.5rem 2.7rem 1.5rem;
  text-align: center;
  background: linear-gradient(120deg, #fafdff 0%, #e3f0ff 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 rgba(0,91,234,0.07);
  border: 1.5px solid #e3e8f0;
  position: relative;
}
.benefits-section::before {
  content: '';
  position: absolute;
  left: 2.5rem; right: 2.5rem; top: 1.2rem; bottom: 1.2rem;
  border-radius: 1.2rem;
  background: linear-gradient(90deg, #e3f0ff 0%, #fff 100%);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: #005bea;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,91,234,0.08);
  position: relative;
  z-index: 1;
}
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem 2.2rem;
  justify-items: center;
  position: relative;
  z-index: 1;
}
.benefit-card {
  background: linear-gradient(120deg, #fafdff 60%, #e3f0ff 100%);
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px rgba(0,91,234,0.10);
  border: 1.5px solid #e3e8f0;
  padding: 1.2rem 1.1rem 1.1rem 1.1rem;
  max-width: 270px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, border 0.18s, transform 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(120deg, #e3f0ff 0%, #fff 100%);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.benefit-card i {
  font-size: 2.1rem;
  color: #0074e4;
  margin-bottom: 0.7rem;
  background: #e3f0ff;
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,91,234,0.08);
  margin-top: -1.2rem;
  margin-bottom: 0.5rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
  border: 2px solid #b3d4fc;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0.2rem 0 0.5rem 0;
  color: #005bea;
  letter-spacing: 0.01em;
  text-shadow: none;
  position: relative;
  z-index: 1;
  text-transform: none;
}
.benefit-card p {
  font-size: 0.97rem;
  color: #3a4252;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.benefit-card:hover, .benefit-card:focus {
  box-shadow: 0 8px 32px rgba(0,91,234,0.13);
  border: 1.5px solid #0074e4;
  background: linear-gradient(120deg, #e3f0ff 0%, #fafdff 100%);
  transform: translateY(-3px) scale(1.01);
}
.benefit-card:hover i, .benefit-card:focus i {
  background: #e3f0ff;
  color: #005bea;
  box-shadow: 0 4px 16px rgba(0,91,234,0.10);
  border-color: #0074e4;
}
@media (max-width: 700px) {
  .benefits-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1rem;
  }
  .benefits-section::before {
    left: 0.5rem; right: 0.5rem; top: 0.5rem; bottom: 0.5rem;
    border-radius: 0.7rem;
  }
  .benefits-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .benefits-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .benefit-card {
    max-width: 100%;
    padding: 1rem 0.7rem;
  }
  .benefit-card i {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    margin-top: -0.7rem;
  }
  .benefit-card h3 {
    font-size: 1rem;
  }
  .benefit-card p {
    font-size: 0.93rem;
  }
}
.steps-section {
  max-width: 1200px;
  margin: 3.5rem auto 2.5rem auto;
  padding: 2.5rem 1.5rem 2.7rem 1.5rem;
  text-align: center;
  background: linear-gradient(120deg, #fafdff 0%, #e3f0ff 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 rgba(0,91,234,0.07);
  border: 1.5px solid #e3e8f0;
  position: relative;
}
.steps-title {
  font-size: 2rem;
  font-weight: 700;
  color: #005bea;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,91,234,0.08);
  position: relative;
  z-index: 1;
}
.steps-guide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  position: relative;
  z-index: 1;
}
.step-card {
  background: linear-gradient(120deg, #fafdff 60%, #e3f0ff 100%);
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px rgba(0,91,234,0.10);
  border: 1.5px solid #e3e8f0;
  padding: 1.2rem 1.1rem 1.1rem 1.1rem;
  min-width: 170px;
  max-width: 210px;
  flex: 1 1 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, border 0.18s, transform 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  position: relative;
}
.step-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #005bea;
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  margin-right: -1.1rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,91,234,0.10);
  border: 2px solid #b3d4fc;
  font-family: inherit;
}
.step-icon i {
  font-size: 2.1rem;
  color: #0074e4;
  background: #e3f0ff;
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,91,234,0.08);
  margin-left: -1.1rem;
  border: 2px solid #b3d4fc;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  z-index: 1;
}
.step-card h3 {
  font-size: 1.01rem;
  font-weight: 500;
  margin: 0.2rem 0 0.5rem 0;
  color: #005bea;
  letter-spacing: 0.01em;
  text-shadow: none;
  position: relative;
  z-index: 1;
  text-transform: none;
}
.step-card p {
  font-size: 0.93rem;
  color: #3a4252;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.step-card:hover, .step-card:focus {
  box-shadow: 0 8px 32px rgba(0,91,234,0.13);
  border: 1.5px solid #0074e4;
  background: linear-gradient(120deg, #e3e8f0 0%, #fafdff 100%);
  transform: translateY(-3px) scale(1.03);
}
.step-card:hover .step-icon i, .step-card:focus .step-icon i {
  background: #0074e4;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,91,234,0.13);
  border-color: #005bea;
}
/* Línea de conexión entre pasos */
.steps-guide::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(90deg, #b3d4fc 0%, #e3e8f0 100%);
  z-index: 0;
  border-radius: 2px;
}
.step-card {
  z-index: 1;
  background-clip: padding-box;
}
@media (max-width: 900px) {
  .steps-guide {
    gap: 1.1rem;
  }
  .step-card {
    min-width: 140px;
    max-width: 180px;
    padding: 1rem 0.7rem;
  }
  .step-icon i {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
  .step-icon span {
    font-size: 0.98rem;
    width: 1.7rem;
    height: 1.7rem;
  }
}
@media (max-width: 700px) {
  .steps-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1rem;
  }
  .steps-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .steps-guide {
    flex-direction: column;
    gap: 1.1rem;
    align-items: stretch;
  }
  .steps-guide::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 7%;
    bottom: 7%;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, #b3d4fc 0%, #e3e8f0 100%);
    z-index: 0;
    border-radius: 2px;
    right: auto;
  }
  .step-card {
    min-width: 0;
    max-width: 100%;
    padding: 1rem 0.7rem;
    margin: 0 auto;
  }
  .step-icon {
    flex-direction: row;
    justify-content: flex-start;
  }
  .step-icon i {
    font-size: 1.2rem;
    padding: 0.4rem;
    margin-left: -0.7rem;
  }
  .step-icon span {
    font-size: 0.85rem;
    width: 1.3rem;
    height: 1.3rem;
    margin-right: -0.7rem;
  }
} 