/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0099cc;
  --accent: #cc3333;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.icon {
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

.w-full {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 48px;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 1);
}

.btn-primary:hover {
  background: #0088bb;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0 0 20px rgba(204, 51, 51, 0.3);
}

.btn-accent:hover {
  box-shadow: 0 0 30px rgba(204, 51, 51, 0.5);
}

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

.btn-white:hover {
  background: var(--gray-100);
  transform: scale(1.05);
}

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

.btn-icon svg {
  transition: transform 0.3s ease;
}

.btn-icon:hover svg {
  transform: rotate(12deg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: rgba(0, 153, 204, 0.95);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 2.5rem;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo img {
  height: 3rem;
}

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

.navbar-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

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

.navbar.scrolled .nav-link {
  color: var(--white);
}

.navbar.scrolled .nav-link::after {
  background: var(--white);
}

.navbar.scrolled .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}

.navbar-phone::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar-phone:hover::after {
  width: 100%;
}

.navbar.scrolled .navbar-phone {
  color: var(--white);
}

.navbar.scrolled .navbar-phone::after {
  background: var(--white);
}

.navbar-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.navbar-cta-subtitle {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}

.navbar.scrolled .navbar-cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .btn-primary {
  background: var(--accent);
}

.navbar.scrolled .btn-primary:hover {
  background: rgba(204, 51, 51, 0.9);
}

.navbar-toggle {
  display: flex;
  padding: 0.75rem;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--gray-900);
  cursor: pointer;
}

.navbar.scrolled .navbar-toggle {
  color: var(--white);
}

.navbar-mobile {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-link-mobile {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0.75rem 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}

@media (min-width: 768px) {
  .navbar-desktop {
    display: flex;
  }
  
  .navbar-toggle {
    display: none;
  }
  
  .navbar-logo img {
    height: 3rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 9rem;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.hero-cta .btn {
  box-shadow: 0 0 20px rgba(204, 51, 51, 0.3);
  transition: all 0.3s ease;
}

.hero-cta .btn:hover {
  box-shadow: 0 0 30px rgba(204, 51, 51, 0.5);
  transform: scale(1.02);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-top: 3rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-stat:nth-child(1) {
  animation-delay: 0.5s;
}

.hero-stat:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-stat:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-stat:nth-child(4) {
  animation-delay: 0.8s;
}

.hero-stat svg {
  color: var(--white);
}

.hero-stat span {
  font-size: 0.875rem;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

.scroll-indicator {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding: 0.25rem;
}

.scroll-indicator-inner {
  width: 0.25rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
}

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

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

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

/* Partner Strip */
.partner-strip {
  padding: 3.5rem 0;
  background: var(--white);
}

.partner-card {
  max-width: 80rem;
  margin: 0 auto;
}

.partner-content {
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  background: rgba(249, 250, 251, 0.7);
  padding: 2rem 1.5rem;
}

.partner-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.partner-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.partner-text p {
  color: var(--gray-600);
  line-height: 1.6;
}

.partner-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.partner-logo-box {
  height: 4rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 0 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.partner-logo-box img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .partner-logos {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .partner-logo-box {
    width: auto;
    height: 3.5rem;
  }
}

@media (min-width: 768px) {
  .partner-content {
    padding: 2.5rem;
  }
  
  .partner-text h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .partner-content {
    grid-template-columns: 7fr 5fr;
  }
  
  .partner-logos {
    justify-content: flex-end;
  }
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 5rem 0;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}

.stats-bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
  pointer-events: none;
}

.stats-bg-circles::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  border: 100px solid rgba(255, 255, 255, 0.3);
}

.stats-bg-circles::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.2);
}

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

.stats-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stats-divider {
  height: 0.25rem;
  width: 6rem;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
  border-radius: 9999px;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.stat-item {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.stat-value {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 200px;
}

@media (min-width: 768px) {
  .stats-header h2 {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    border-top: 0;
  }
  
  .stat-item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 1rem;
  }
  
  .stat-item:first-child {
    border-left: 0;
  }
}

/* Tagline Banner */
.tagline-banner {
  padding: 4rem 0;
  background: var(--gray-50);
  text-align: center;
}

.tagline-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tagline-banner .tagline-blue {
  color: var(--primary);
}

.tagline-banner .tagline-dark {
  color: var(--gray-900);
}

.tagline-banner .tagline-red {
  color: var(--accent);
  font-style: italic;
}

@media (min-width: 768px) {
  .tagline-banner h2 {
    font-size: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .tagline-banner h2 {
    font-size: 4rem;
  }
}

/* Fujitsu Section */
.fujitsu-section {
  position: relative;
  padding: 5rem 0 7rem;
  overflow: hidden;
}

.fujitsu-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/fujitsu-tech-bg.webp');
  background-size: cover;
  background-position: center;
}

.fujitsu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 153, 204, 0.85), rgba(0, 153, 204, 0.8), rgba(0, 153, 204, 0.9));
}

.fujitsu-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: 
    radial-gradient(circle at 20% 20%, white 0, transparent 45%),
    radial-gradient(circle at 80% 30%, white 0, transparent 40%),
    radial-gradient(circle at 30% 80%, white 0, transparent 38%);
}

.fujitsu-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  color: var(--white);
}

.fujitsu-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.fujitsu-logo-badge {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.fujitsu-logo-badge img {
  height: 2rem;
  width: auto;
  object-fit: contain;
}

.fujitsu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.fujitsu-title {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
}

.fujitsu-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

.fujitsu-claim-box {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fujitsu-claim-content {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 42rem;
}

.fujitsu-claim-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.fujitsu-claim-subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.fujitsu-features {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.fujitsu-feature {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  min-height: 190px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.3s ease;
}

.fujitsu-feature:hover {
  background: rgba(255, 255, 255, 0.14);
}

.fujitsu-feature-icon {
  height: 3rem;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fujitsu-feature-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

.fujitsu-feature-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.fujitsu-footnote {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.fujitsu-footnote > div, .fujitsu-footnote {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
  .fujitsu-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .fujitsu-logo-badge img {
    height: 2.25rem;
  }
}

@media (min-width: 768px) {
  .fujitsu-title {
    font-size: 3rem;
  }
  
  .fujitsu-subtitle {
    font-size: 1.25rem;
  }
  
  .fujitsu-logo-badge img {
    height: 2.5rem;
  }
}

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

/* Request Service Section */
.request-service-section {
  padding: 6rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

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

.request-service-image {
  position: relative;
}

.request-service-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4/3;
}

.request-service-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.request-service-content h2 span {
  color: var(--accent);
}

.request-service-content > p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.request-service-partner-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1rem;
  margin-bottom: 2rem;
  max-width: 28rem;
}

.request-service-partner-card img {
  height: 2.5rem;
  width: auto;
}

.request-service-partner-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-600);
}

.request-service-partner-card span {
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 768px) {
  .request-service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .request-service-content h2 {
    font-size: 3rem;
  }
}

/* Financing Section */
.financing-section {
  padding: 6rem 0;
  background: var(--white);
}

.financing-grid {
  display: grid;
  gap: 3rem;
}

.financing-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.financing-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.financing-kicker span {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.financing-divider {
  height: 1px;
  flex-grow: 1;
  background: var(--gray-200);
  max-width: 100px;
}

.financing-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.financing-header h2 span {
  color: var(--primary);
}

.financing-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.financing-benefits {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.financing-benefit {
  display: flex;
  gap: 1rem;
}

.financing-benefit-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background: rgba(0, 153, 204, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.financing-benefit h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.financing-benefit p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.financing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

.financing-cta img {
  height: 2.5rem;
  width: auto;
}

.finance-logo {
  background-color: #1f2937; /* Dark background */
  padding: 0.5rem;
  border-radius: 0.5rem;
  height: 3.5rem !important; /* Slightly larger to look good with padding */
}

.financing-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.financing-image-wrapper {
  position: relative;
}

.financing-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.financing-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 240px;
  animation: float 4s ease-in-out infinite;
}

.financing-badge-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pulse-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(204, 51, 51, 0.4);
  animation: pulse 2s infinite;
}

.financing-badge-header span {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
}

.financing-badge p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.4;
}

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

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

@media (min-width: 768px) {
  .financing-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .financing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
  
  .financing-content {
    display: block;
  }
  
  .financing-cta {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .financing-image img {
    height: 600px;
    width: auto;
  }
}

/* Process Section */
.process-section {
  padding: 6rem 0 7rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 40%, var(--gray-50) 100%);
  pointer-events: none;
}

.process-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.process-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(0, 153, 204, 0.08);
  border: 1px solid rgba(0, 153, 204, 0.15);
  border-radius: 9999px;
}

.process-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.process-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.process-timeline {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  z-index: 1;
}

.process-timeline-line {
  display: none;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.process-step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #007aa3);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 153, 204, 0.35);
  position: relative;
}

.process-step-number::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(0, 153, 204, 0.2);
}

.process-step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.process-step-card:hover {
  border-color: rgba(0, 153, 204, 0.3);
  box-shadow: 0 8px 30px rgba(0, 153, 204, 0.1);
  transform: translateY(-2px);
}

.process-step-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.1), rgba(0, 153, 204, 0.05));
  border: 1px solid rgba(0, 153, 204, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.process-step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.process-step-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.process-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0, 153, 204, 0.06);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 153, 204, 0.1);
}

@media (max-width: 639px) {
  .process-step-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-step-marker {
    display: none;
  }
  
  .process-step {
    gap: 0;
  }

  .process-step-card::before {
    content: attr(data-step);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}

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

  .process-timeline-line {
    display: block;
    position: absolute;
    left: 1.4375rem;
    top: 3rem;
    bottom: 3rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(0, 153, 204, 0.15));
    z-index: 1;
  }
  
  .process-step-number {
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #003d52 0%, #005a7a 30%, var(--primary) 70%, #00b3e6 100%);
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background:
    radial-gradient(circle at 15% 50%, white 0, transparent 50%),
    radial-gradient(circle at 85% 20%, white 0, transparent 40%),
    radial-gradient(circle at 50% 90%, white 0, transparent 35%);
  pointer-events: none;
}

.cta-bg-pattern::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--gray-50), transparent);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-title span {
  color: rgba(255, 255, 255, 0.85);
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn-cta-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(204, 51, 51, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2);
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  box-shadow: 0 0 45px rgba(204, 51, 51, 0.6), 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px) scale(1.02);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  font-size: 1rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
  
  .cta-trust {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .cta-section {
    padding: 7rem 0;
  }
  
  .cta-title {
    font-size: 3.25rem;
  }
  
  .cta-subtitle {
    font-size: 1.25rem;
  }
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand img {
  height: 2.5rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 20rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-nav h4, .footer-contact h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

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

/* Footer Location Styles - Added to fix missing styles */
.footer-serving {
  margin-bottom: 2rem;
}

.footer-serving-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-serving-header h3, 
.footer-serving-header h4 {
  margin: 0;
  font-size: 1.125rem;
}

.footer-serving p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  padding-left: 1.75rem; /* Indent to align with text above */
}

.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.footer-location-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: left;
}

.footer-location-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-location-toggle .chevron {
  transition: transform 0.3s ease;
}

.footer-location-toggle.active .chevron {
  transform: rotate(180deg);
}

.footer-location-list {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.25rem;
}

.footer-location {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-location:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-location span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-location a {
  color: var(--gray-400);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-location a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-400);
}

.footer-contact-list a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-contact-list a:hover {
  color: var(--white);
}