/* Enhanced LeadSurgePro Website Styles */

/* Global Styles */
:root {
  --primary-color: #FF5722; /* Orange from logo */
  --primary-light: #FF8A65; /* Lighter orange for hover effects */
  --primary-dark: #E64A19; /* Darker orange for depth */
  --secondary-color: #212121; /* Black from logo */
  --secondary-light: #484848; /* Lighter black for hover effects */
  --accent-color: #2979FF; /* Blue accent for highlights and CTAs */
  --light-color: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-gray: #757575;
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth; /* Enable smooth scrolling */
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--secondary-color);
  background-color: var(--light-color);
  overflow-x: hidden; /* Prevent horizontal scroll */
  padding-top: 65px !important; /* Increased padding to prevent nav overlap - Ensure override */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.text-primary {
  color: var(--primary-color);
}

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

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 87, 34, 0.3);
  z-index: -1;
}

/* Links & Buttons */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: white;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::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: 0.5s;
  z-index: -1;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-light);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 5px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0; /* Reduced padding */
  height: 55px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 140px; /* Reduced size to 2x original */
  width: auto;
  transition: var(--transition);
  margin-right: 10px; /* Add spacing between logos */
}

.logo img:last-child {
  margin-right: 0; /* Remove margin from last image */
}

.header.scrolled .logo img {
  height: 112px; /* Reduced scrolled size to 2x original (80%) */
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin-bottom: 0;
}

.nav-item {
  margin-left: 30px;
  position: relative;
}

.nav-link {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--light-color);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: var(--border-radius);
  top: 100%;
  left: 0;
  padding: 10px 0;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: var(--secondary-color);
  padding: 12px 20px;
  display: block;
  transition: var(--transition);
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: var(--light-gray);
  color: var(--primary-color);
  padding-left: 25px;
}

.dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 50px 0 100px !important; /* Further reduced top padding to minimize white space */
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23FF5722" opacity="0.2"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.hero-text {
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
  justify-content: center;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--dark-gray);
}

/* Floating Elements */
.floating {
  animation: float 3s ease-in-out infinite;
}

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

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-size: 2.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

/* Services */
.services {
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  padding: 30px;
  border-top: 4px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-top-color: var(--primary-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-features {
  list-style: none;
  margin: 20px 0;
  flex-grow: 1;
}

.service-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-features li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Testimonials */
.testimonials {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M10 8L15 22L20 8" stroke="%23FF5722" stroke-width="1" fill="none" opacity="0.2"/></svg>');
  opacity: 0.5;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 10px;
  flex: 0 0 calc(100% - 20px);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 87, 34, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  overflow: hidden;
  background-color: var(--light-gray);
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author-info p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: var(--transition);
}

.testimonial-arrow:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.testimonial-arrow.prev {
  left: -20px;
}

.testimonial-arrow.next {
  right: -20px;
}

/* Industries */
.industries {
  background-color: var(--light-color);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.industry-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s ease;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.industry-card:hover::before {
  transform: scaleY(1);
}

.industry-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  color: var(--light-color);
}

.industry-card h3 {
  transition: var(--transition);
}

.industry-card:hover h3 {
  color: var(--secondary-color);
}

/* Features */
.features {
  background-color: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 20px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: var(--light-color);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
  opacity: 0.3;
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.cta .btn {
  background-color: var(--light-color);
  color: var(--primary-color);
  margin: 0 10px;
}

.cta .btn:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.cta .btn-outline {
  background-color: transparent;
  border-color: var(--light-color);
  color: var(--light-color);
}

.cta .btn-outline:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: var(--light-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--medium-gray);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.footer-links a:hover::before {
  left: 5px;
}

.footer-contact p {
  color: var(--medium-gray);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-color);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@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);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 80%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .testimonial-arrow.prev {
    left: 10px;
  }
  
  .testimonial-arrow.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 0;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px 0;
    z-index: 1000;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-item {
    margin: 0;
    padding: 10px 20px;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 20px;
    transform: none;
    opacity: 1;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .testimonial-controls {
    margin-top: 20px;
  }
  
  .testimonial-arrow {
    display: none;
  }
  
  .cta {
    padding: 60px 0;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .cta .btn {
    margin: 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 0 15px 0;
  }
  
  .footer-grid {
    gap: 30px;
  }
}

/* Refinements: Typography, Spacing, Buttons, Sections */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}
h1, h2, h3 {
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.75em;
}
p {
  margin-bottom: 1.25em;
}
.container {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.section {
  padding: 4rem 0;
}
.header {
  padding: 1rem 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.nav a {
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover {
  background: rgba(0,102,255,0.1);
  color: #0066FF;
  border-radius: 4px;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn--primary {
  box-shadow: 0 4px 8px rgba(0,102,255,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,102,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
}
.hero__content {
  padding: 2rem;
}
.hero__content h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 1.25rem;
}
.steps-grid {
  gap: 3rem;
}
.step__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.section:nth-child(even) {
  background: #fafafa;
}
.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero__content { text-align: center; }
  .hero__ctas .btn { width: 100%; margin-bottom: 1rem; }
}

/* Updated services-grid styling */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}



/* Full width button */
.btn-full-width {
  width: 100%;
  text-align: center;
}
