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

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

body {
 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
 line-height: 1.6;
 color: #374151;
 background-color: #ffffff;
 overflow-x: hidden;
}

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


/* logo */
.logo-img {
  height: 60px; /* Adjust height as needed */
  width: auto;
  display: block;
}



/* Hero logo styling */
.hero-logo-img {
  width: 100%;
  max-width: 500px; /* Adjust based on your design */
  height: auto;
  display: block;
}

/* Responsive hero logo sizing */
 @media only screen and (max-width: 768px) {
  .hero-logo-img {
    max-width: 350px;
  }
    
}

@media (max-width: 480px) {
  .hero-logo-img {
    max-width: 280px;
  }
}


/* Footer logo styling */
.footer-logo-img {
  height: 60px; /* Adjust height as needed */
  width: auto;
  display: block;
}

/* Responsive footer logo sizing */
@media (max-width: 768px) {
  .footer-logo-img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .footer-logo-img {
    height: 40px;
  }
}




/* Typography */
h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.2;
 color: #111827;
}

.gradient-text {
 background: linear-gradient(to right, #2563eb, #7c3aed, #059669);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 0.75rem 1.5rem;
 font-size: 1rem;
 font-weight: 600;
 border-radius: 0.5rem;
 border: none;
 cursor: pointer;
 transition: all 0.3s ease;
 text-decoration: none;
 white-space: nowrap;
}

.btn-primary {
 background: linear-gradient(to right, #2563eb, #059669);
 color: white;
 box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
 background: linear-gradient(to right, #1d4ed8, #047857);
 box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
 transform: translateY(-1px);
}

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

.btn-full {
 width: 100%;
}

.btn-desktop {
 display: none;
}

/* Header */
.header {
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(8px);
 border-bottom: 1px solid rgba(229, 231, 235, 0.5);
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
}

.header-content {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0.75rem 0;
}

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

.logo {
 margin-right: 1rem;
}

.logo-svg {
 height: 2.5rem;
 width: auto;
}

.tagline-main {
 font-size: 0.75rem;
 color: #6b7280;
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 0.05em;
}

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

.nav-link {
 color: #6b7280;
 font-weight: 500;
 text-decoration: none;
 position: relative;
 padding: 0.5rem 0.25rem;
 transition: color 0.3s ease;
}

.nav-link.active {
 color: #111827;
}

.nav-link:hover {
 color: #111827;
}

.nav-link::after {
 content: '';
 position: absolute;
 bottom: -0.25rem;
 left: 0;
 width: 0;
 height: 2px;
 background: linear-gradient(to right, #3b82f6, #059669);
 transition: width 0.3s ease;
}

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

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

.mobile-menu-btn {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 2.75rem;
 height: 2.75rem;
 background: none;
 border: none;
 border-radius: 0.5rem;
 cursor: pointer;
 transition: background-color 0.3s ease;
 color: #111827;
}

.mobile-menu-btn:hover {
 background-color: #f3f4f6;
}

/* Mobile Menu */
.mobile-menu-overlay {
 position: fixed;
 inset: 0;
 z-index: 2000;
 display: none;
}

.mobile-menu-overlay.active {
 display: block;
}

.mobile-menu-backdrop {
 position: absolute;
 inset: 0;
 background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-panel {
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 max-width: 24rem;
 height: 100%;
 background: white;
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 transform: translateX(100%);
 transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-panel {
 transform: translateX(0);
}

.mobile-menu-content {
 padding: 1.5rem;
}

.mobile-menu-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-bottom: 2rem;
}

.mobile-logo svg {
 height: 2rem;
 width: auto;
}

.mobile-menu-close {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 2.75rem;
 height: 2.75rem;
 background: none;
 border: none;
 border-radius: 0.5rem;
 cursor: pointer;
 transition: background-color 0.3s ease;
 color: #111827;
}

.mobile-menu-close:hover {
 background-color: #f3f4f6;
}

.mobile-nav {
 display: flex;
 flex-direction: column;
 gap: 0.5rem;
}

.mobile-nav-link {
 display: block;
 font-size: 1.125rem;
 font-weight: 500;
 color: #6b7280;
 text-decoration: none;
 padding: 0.75rem 0.5rem;
 border-radius: 0.5rem;
 transition: all 0.3s ease;
}

.mobile-nav-link:hover {
 color: #2563eb;
 background-color: #f3f4f6;
}

.mobile-menu-actions {
 margin-top: 2rem;
 padding-top: 1.5rem;
 border-top: 1px solid #e5e7eb;
}

/* Hero Section */
.hero {
 position: relative;
 background: linear-gradient(135deg, #f9fafb, rgba(219, 234, 254, 0.3), rgba(204, 251, 241, 0.3));
 padding: 6rem 0;
 overflow: hidden;
 margin-top: 4rem;
}

.hero-bg-element {
 position: absolute;
 border-radius: 50%;
 filter: blur(48px);
 animation: pulse 4s ease-in-out infinite;
}

.hero-bg-1 {
 top: 0;
 right: 0;
 width: 24rem;
 height: 24rem;
 background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
}

.hero-bg-2 {
 bottom: 0;
 left: 0;
 width: 20rem;
 height: 20rem;
 background: linear-gradient(45deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
 animation-delay: 1s;
}

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

.hero-content {
 text-align: center;
 margin: 0 auto;
 position: relative;
}

.hero-logo-container {
 display: inline-block;
 margin-bottom: 2rem;
}

.hero-logo-box {
 position: relative;
 background: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(8px);
 padding: 1.5rem;
 border-radius: 1rem;
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-logo-box::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(20, 184, 166, 0.1));
 filter: blur(20px);
 z-index: -1;
}

.hero-logo svg {
 height: 6rem;
 width: auto;
 margin: 0 auto;
}

.hero-title {
 font-size: 3rem;
 font-weight: 700;
 margin-bottom: 2rem;
 color: #111827;
 line-height: 1.1;
 letter-spacing: -0.025em;
}

.hero-description {
 font-size: 1.25rem;
 color: #6b7280;
 margin-bottom: 3rem;
 line-height: 1.6;
 max-width: 48rem;
 margin-left: auto;
 margin-right: auto;
}

.hero-cta {
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-cta:hover {
 box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.4);
}

/* Section Styles */
.section-header {
 text-align: center;
 margin-bottom: 4rem;
}

.section-title {
 font-size: 2.5rem;
 font-weight: 700;
 color: #111827;
 margin-bottom: 1rem;
}

.section-divider {
 width: 6rem;
 height: 0.25rem;
 background: linear-gradient(to right, #3b82f6, #059669);
 margin: 0 auto;
 border-radius: 0.125rem;
}

.section-description {
 font-size: 1.125rem;
 color: #6b7280;
 line-height: 1.6;
 max-width: 48rem;
 margin: 1.5rem auto 0;
}

/* Services Section */
.services {
 padding: 6rem 0;
 background: white;
}

.services-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
 max-width: 6xl;
 margin: 0 auto;
}

.service-card {
 position: relative;
 padding: 2rem;
 border-radius: 1rem;
 background: linear-gradient(135deg, white, rgba(219, 234, 254, 0.3));
 border: none;
 box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
 cursor: pointer;
 overflow: hidden;
 transition: all 0.5s ease;
}

.service-card:hover {
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 transform: scale(1.05) translateY(-0.5rem);
}

.service-card-blue {
 background: linear-gradient(135deg, white, rgba(219, 234, 254, 0.3));
}

.service-card-blue:hover {
 background: linear-gradient(135deg, rgba(219, 234, 254, 0.5), rgba(219, 234, 254, 0.5));
}

.service-card-purple {
 background: linear-gradient(135deg, white, rgba(237, 233, 254, 0.3));
}

.service-card-purple:hover {
 background: linear-gradient(135deg, rgba(237, 233, 254, 0.5), rgba(237, 233, 254, 0.5));
}

.service-card-teal {
 background: linear-gradient(135deg, white, rgba(204, 251, 241, 0.3));
}

.service-card-teal:hover {
 background: linear-gradient(135deg, rgba(204, 251, 241, 0.5), rgba(204, 251, 241, 0.5));
}

.service-card-green {
 background: linear-gradient(135deg, white, rgba(220, 252, 231, 0.3));
}

.service-card-green:hover {
 background: linear-gradient(135deg, rgba(220, 252, 231, 0.5), rgba(220, 252, 231, 0.5));
}

.service-card-bg {
 position: absolute;
 top: 0;
 right: 0;
 width: 8rem;
 height: 8rem;
 border-radius: 50%;
 margin-right: -4rem;
 margin-top: -4rem;
}

.service-card-blue .service-card-bg {
 background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
}

.service-card-purple .service-card-bg {
 background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), transparent);
}

.service-card-teal .service-card-bg {
 background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), transparent);
}

.service-card-green .service-card-bg {
 background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
}

.service-content {
 position: relative;
}

.service-icon {
 width: 2rem;
 height: 2rem;
 margin-bottom: 1rem;
}

.service-icon-blue {
 color: #2563eb;
}

.service-icon-purple {
 color: #7c3aed;
}

.service-icon-teal {
 color: #059669;
}

.service-icon-green {
 color: #059669;
}

.service-title {
 font-size: 1.5rem;
 font-weight: 700;
 color: #111827;
 margin-bottom: 1rem;
}

.service-subtitle {
 font-size: 1.125rem;
 font-weight: 600;
 margin-bottom: 1rem;
}

.service-subtitle-blue {
 background: linear-gradient(to right, #2563eb, #059669);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.service-subtitle-purple {
 background: linear-gradient(to right, #7c3aed, #2563eb);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.service-subtitle-teal {
 background: linear-gradient(to right, #059669, #2563eb);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.service-subtitle-green {
 background: linear-gradient(to right, #059669, #059669);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.service-description {
 color: #6b7280;
 margin-bottom: 1.5rem;
 line-height: 1.6;
}

.service-list {
 color: #6b7280;
 margin-bottom: 1.5rem;
 list-style: none;
}

.service-list-item {
 display: flex;
 align-items: center;
 margin-bottom: 0.5rem;
}

.service-list-dot {
 width: 0.5rem;
 height: 0.5rem;
 background: linear-gradient(to right, #059669, #2563eb);
 border-radius: 50%;
 margin-right: 0.75rem;
}

.service-link {
 color: #2563eb;
 text-decoration: underline;
 text-decoration-color: #2563eb;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.3s ease;
  padding-bottom:30px;
}

.service-link:hover {
 color: #1d4ed8;
 text-decoration-color: #1d4ed8;
}

.service-result {
 padding: 1rem;
 border-radius: 0.5rem;
 border-left: 4px solid;
}

.service-result-blue {
 background: linear-gradient(to right, rgba(219, 234, 254, 0.5), rgba(204, 251, 241, 0.5));
 border-left-color: #3b82f6;
}

.service-result-purple {
 background: linear-gradient(to right, rgba(237, 233, 254, 0.5), rgba(219, 234, 254, 0.5));
 border-left-color: #7c3aed;
}

.service-result-teal {
 background: linear-gradient(to right, rgba(204, 251, 241, 0.5), rgba(219, 234, 254, 0.5));
 border-left-color: #059669;
}

.service-result-green {
 background: linear-gradient(to right, rgba(220, 252, 231, 0.5), rgba(204, 251, 241, 0.5));
 border-left-color: #059669;
}

.service-result-text {
 font-size: 1.125rem;
 font-weight: 600;
}

.service-result-text-blue {
 background: linear-gradient(to right, #2563eb, #059669);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.service-result-text-purple {
 background: linear-gradient(to right, #7c3aed, #2563eb);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.service-result-text-teal {
 background: linear-gradient(to right, #059669, #2563eb);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.service-result-text-green {
 background: linear-gradient(to right, #059669, #059669);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* Trusted Experience Section */
.trusted {
 padding: 6rem 0;
 background: linear-gradient(135deg, #f9fafb, rgba(219, 234, 254, 0.5));
}

.trusted-description {
 font-size: 1.125rem;
 color: #6b7280;
 margin-bottom: 3rem;
 line-height: 1.6;
 text-align: center;
 margin-left: auto;
 margin-right: auto;
}

.stats-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
 margin-bottom: 3rem;
}

.stat-card {
 text-align: center;
 padding: 1.5rem;
 background: rgba(255, 255, 255, 0.7);
 border-radius: 0.75rem;
 backdrop-filter: blur(8px);
}

.stat-number {
 font-size: 1.875rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
}

.stat-number-blue {
 background: linear-gradient(to right, #2563eb, #059669);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.stat-number-purple {
 background: linear-gradient(to right, #7c3aed, #2563eb);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.stat-number-teal {
 background: linear-gradient(to right, #059669, #22c55e);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.stat-description {
 color: #6b7280;
}

.stat-link {
 color: #2563eb;
 text-decoration: underline;
 text-decoration-color: #2563eb;
 font-weight: 500;
 transition: all 0.3s ease;
}

.stat-link:hover {
 color: #1d4ed8;
 text-decoration-color: #1d4ed8;
}
.about {
 padding: 6rem 0;
 background: white;
}

.about-content {
 margin: 0 auto;
 text-align: center;
}

.about-description {
 font-size: 1.125rem;
 color: #6b7280;
 margin-bottom: 2rem;
 line-height: 1.6;
}

.about-mission {
 font-size: 1.25rem;
 font-weight: 600;
 background: linear-gradient(to right, #2563eb, #059669);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin-bottom: 3rem;
}

/* About table - Default: Horizontal layout for desktop */
.about-table {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin: 20px auto;
}

/* Photo container */
#si-photo {
  width: auto;
  margin: auto;
  flex-shrink: 0;
}

#si-photo img {
  max-width: 280px;
  height: auto;
  border-radius: 0.5rem;
}

/* Text container */
#si-text {
  width: auto;
  text-align: left;
  flex: 1;
}

/* Mobile: Stack vertically */
@media only screen and (max-width: 768px) {
  .about-table {
    flex-direction: column;
    padding: 20px;
    gap: 1.5rem;
  }
  
  #si-photo {
    width: 100%;
    text-align: center;
  }
  
  #si-photo img {
    max-width: 280px;
    height: auto;
  }
  
  #si-text {
    width: 100%;
    margin: 0;
    text-align: left;
  }
}

/* Smaller mobile devices */
@media only screen and (max-width: 480px) {
  #si-photo img {
    max-width: 240px;
  }
  
  .about-table {
    padding: 10px;
  }
}

/* Pricing Section */
.pricing {
 padding: 6rem 0;
 background: linear-gradient(135deg, #f9fafb, rgba(219, 234, 254, 0.3));
}

.pricing-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
 max-width: 6xl;
 margin: 0 auto;
}

.pricing-card {
 background: white;
 border-radius: 1rem;
 box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 border: 1px solid #e5e7eb;
 padding: 2rem;
 position: relative;
 transition: all 0.3s ease;
}

.pricing-card:hover {
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 transform: scale(1.05);
}

.pricing-card-featured {
 border: 2px solid #a855f7;
}

.pricing-badge {
 position: absolute;
 top: -1rem;
 left: 50%;
 transform: translateX(-50%);
 background: linear-gradient(to right, #7c3aed, #a855f7);
 color: white;
 padding: 0.5rem 1.5rem;
 border-radius: 9999px;
 font-size: 0.875rem;
 font-weight: 600;
}

.pricing-header {
 text-align: center;
 margin-bottom: 2rem;
}

.pricing-icon {
 width: 4rem;
 height: 4rem;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1rem;
 color: white;
}

.pricing-icon-blue {
 background: linear-gradient(to right, #3b82f6, #2563eb);
}

.pricing-icon-purple {
 background: linear-gradient(to right, #7c3aed, #a855f7);
}

.pricing-icon-teal {
 background: linear-gradient(to right, #059669, #0d9488);
}

.pricing-title {
 font-size: 1.5rem;
 font-weight: 700;
 color: #111827;
 margin-bottom: 0.5rem;
}

.pricing-subtitle {
 color: #6b7280;
 margin-bottom: 1.5rem;
}

.pricing-price {
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
}

.pricing-note {
 font-size: 0.875rem;
 color: #6b7280;
}

.pricing-features {
 list-style: none;
 margin-bottom: 2rem;
}

.pricing-feature {
 display: flex;
 align-items: center;
 margin-bottom: 1rem;
 color: #374151;
}

.feature-check {
 width: 1.25rem;
 height: 1.25rem;
 background: #3b82f6;
 color: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-right: 0.75rem;
 font-size: 0.75rem;
 font-weight: 700;
}

.pricing-footer {
 text-align: center;
 margin-top: 3rem;
}

.pricing-footer-text {
 color: #6b7280;
 margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
 padding: 6rem 0;
 background: linear-gradient(135deg, #f9fafb, rgba(219, 234, 254, 0.5));
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 3rem;
 align-items: start;
}

.contact-form-container {
 /*max-width: 4rem;*/
 width: 100%;
 margin: 0 auto;
}

.contact-form {
 background: white;
 padding: 2rem;
 border-radius: 0.75rem;
 box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 border: 1px solid rgba(229, 231, 235, 0.5);
}

.form-title {
 font-size: 1.5rem;
 font-weight: 700;
 color: #111827;
 margin-bottom: 1.5rem;
}

.form-success,
.form-error {
 margin-bottom: 1.5rem;
 padding: 1rem;
 border-radius: 0.5rem;
 display: none;
}

.form-success {
 background: #dcfce7;
 border: 1px solid #bbf7d0;
 color: #166534;
}

.form-error {
 background: #fef2f2;
 border: 1px solid #fecaca;
 color: #dc2626;
}

.form-group {
 margin-bottom: 1.5rem;
}

.form-label {
 display: block;
 font-size: 0.875rem;
 font-weight: 500;
 color: #374151;
 margin-bottom: 0.5rem;
}

.form-input {
 width: 100%;
 padding: 0.75rem 1rem;
 border: 1px solid #d1d5db;
 border-radius: 0.5rem;
 font-size: 1rem;
 transition: all 0.3s ease;
}

.form-input:focus {
 outline: none;
 border-color: #3b82f6;
 box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
 resize: none;
 min-height: 4rem;
}

.form-submit {
 box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-submit:disabled {
 opacity: 0.5;
 cursor: not-allowed;
}

.contact-info {
 padding-left: 2rem;
}

.contact-info-title {
 font-size: 1.5rem;
 font-weight: 700;
 color: #111827;
 margin-bottom: 1.5rem;
}

.contact-benefits {
 margin-bottom: 2rem;
}

.contact-benefit {
 display: flex;
 align-items: flex-start;
 margin-bottom: 1.5rem;
}

.benefit-icon {
 width: 3rem;
 height: 3rem;
 border-radius: 0.5rem;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-right: 1rem;
 color: white;
 flex-shrink: 0;
}

.benefit-icon-blue {
 background: linear-gradient(to right, #3b82f6, #2563eb);
}

.benefit-icon-purple {
 background: linear-gradient(to right, #7c3aed, #a855f7);
}

.benefit-icon-teal {
 background: linear-gradient(to right, #059669, #0d9488);
}

.benefit-content {
 flex: 1;
}

.benefit-title {
 font-size: 1.125rem;
 font-weight: 600;
 color: #111827;
 margin-bottom: 0.5rem;
}

.benefit-description {
 color: #6b7280;
}

.contact-guarantee {
 display: flex;
 align-items: flex-start;
 padding: 1.5rem;
 background: rgba(219, 234, 254, 0.3);
 border-radius: 0.75rem;
 border: 1px solid rgba(59, 130, 246, 0.2);
}

.guarantee-icon {
 width: 2rem;
 height: 2rem;
 border-radius: 50%;
 background: #3b82f6;
 color: white;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-right: 0.75rem;
 flex-shrink: 0;
}

.guarantee-content {
 flex: 1;
}

.guarantee-title {
 font-size: 1.125rem;
 font-weight: 600;
 color: #111827;
 margin-bottom: 0.25rem;
}

.guarantee-description {
 font-size: 0.875rem;
 color: #374151;
}

/* Final CTA Section */
.final-cta {
 position: relative;
 padding: 6rem 0;
 background: linear-gradient(135deg, #1e293b, #3b82f6, #1e293b);
 overflow: hidden;
}

.final-cta-bg {
 position: absolute;
 inset: 0;
 background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(20, 184, 166, 0.2));
}

.final-cta-content {
 text-align: center;
 position: relative;
}

.final-cta-title {
 font-size: 2.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 2rem;
 line-height: 1.2;
}

/* Footer */
.footer {
 background: white;
 border-top: 1px solid #e5e7eb;
 padding: 3rem 0;
}

.footer-content {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
}

.footer-brand {
 max-width: 20rem;
}

.footer-logo {
 margin-bottom: 1.5rem;
}

.footer-logo svg {
 height: 3rem;
 width: auto;
}

.footer-tagline-main {
 font-size: 0.875rem;
 color: #6b7280;
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 0.05em;
}

.footer-tagline-sub {
 font-size: 0.875rem;
 color: #2563eb;
 font-weight: 500;
}

.footer-description {
 font-size: 0.875rem;
 color: #6b7280;
 margin-top: 1rem;
}

.footer-heading {
 font-weight: 600;
 margin-bottom: 1rem;
 color: #111827;
}

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

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

.footer-link {
 color: #6b7280;
 text-decoration: none;
 transition: color 0.3s ease;
}

.footer-link:hover {
 color: #2563eb;
}

.footer-contact-info p {
 margin-bottom: 0.5rem;
}

.footer-location {
 font-size: 0.875rem;
 color: #6b7280;
}

.footer-bottom {
 border-top: 1px solid #e5e7eb;
 margin-top: 2rem;
 padding-top: 2rem;
 text-align: center;
}

.footer-bottom p {
 color: #6b7280;
 font-size: 0.875rem;
}

/* Scroll to Top Button */
.scroll-to-top {
 position: fixed;
 bottom: 2rem;
 right: 2rem;
 width: 3rem;
 height: 3rem;
 background: linear-gradient(to right, #2563eb, #059669);
 color: white;
 border: none;
 border-radius: 50%;
 box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 cursor: pointer;
 opacity: 0;
 pointer-events: none;
 transition: all 0.3s ease;
 z-index: 1000;
 font-size: 1.25rem;
 font-weight: 700;
}

.scroll-to-top.visible {
 opacity: 1;
 pointer-events: auto;
}

.scroll-to-top:hover {
 box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 transform: translateY(-2px);
}

/* Animations */
.fade-in {
 opacity: 0;
 transform: translateY(1.25rem);
 transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
 opacity: 1;
 transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
 .hero-title {
 font-size: 4rem;
 }

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .stats-grid {
 grid-template-columns: repeat(3, 1fr);
 }

 .pricing-grid {
 grid-template-columns: repeat(3, 1fr);
 }

 .contact-grid {
 grid-template-columns: auto  /*1fr 1fr*/;
 }

 .footer-content {
 grid-template-columns: repeat(3, 1fr);
 }

 .final-cta-title {
 font-size: 3rem;
 }
}

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

 .mobile-menu-btn {
 display: none;
 }

 .nav {
 display: flex;
 }

 .hero-title {
 font-size: 5rem;
 }

 .final-cta-title {
 font-size: 4rem;
 }

 .contact-info {
 padding-left: 2rem;
 }
}

@media (min-width: 1280px) {
 .container {
 max-width: 1280px;
 }
}

/* Print Styles */
@media print {
 .header,
 .mobile-menu-overlay,
 .scroll-to-top {
 display: none;
 }

 .hero {
 margin-top: 0;
 }

 body {
 font-size: 12pt;
 line-height: 1.4;
 }

 .btn {
 border: 1px solid #000;
 background: transparent !important;
 color: #000 !important;
 }
}