/* ====================================
   Quicktec - Main Stylesheet
   HTML/CSS/JS Pure Static Site
   ==================================== */

/* ====================================
   1. CSS Variables (Brand Colors)
   ==================================== */
:root {
  /* Brand Colors */
  --color-blue: #4C67BA;
  --color-dark: #0F192A;
  --color-navy: #152341;
  --color-navy-light: #1e3a5f;
  --color-mint: #9FF2C1;
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f0f4f8;
  --color-gray-200: #e2e8f0;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #4a5568;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-mint) 0%, var(--color-blue) 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
  --gradient-cta: linear-gradient(135deg, var(--color-blue) 0%, #3d5a9f 50%, var(--color-navy) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ====================================
   2. Reset & Base Styles
   ==================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 4.5rem;
}

@media (min-width: 768px) {
  body {
    padding-top: 5rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ====================================
   3. Layout Utilities
   ==================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.section {
  padding: 6rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

/* ====================================
   4. Typography
   ==================================== */
.text-white { color: var(--color-white); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-blue { color: var(--color-blue); }
.text-mint { color: var(--color-mint); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}

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

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

.section-description {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  text-wrap: pretty;
}

/* ====================================
   5. Buttons
   ==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

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

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-gradient {
  background: var(--gradient-primary);
  color: var(--color-dark);
  box-shadow: var(--shadow-lg);
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-mint {
  background-color: var(--color-mint);
  color: var(--color-dark);
  box-shadow: var(--shadow-xl);
}

.btn-mint:hover {
  background-color: rgba(159, 242, 193, 0.9);
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

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

/* ====================================
   6. Badges
   ==================================== */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid;
}

.badge-mint {
  background-color: rgba(159, 242, 193, 0.2);
  color: var(--color-mint);
  border-color: rgba(159, 242, 193, 0.3);
}

.badge-blue {
  background-color: rgba(76, 103, 186, 0.1);
  color: var(--color-blue);
  border-color: rgba(76, 103, 186, 0.2);
}

/* ====================================
   7. Header
   ==================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-content {
    height: 5rem;
  }
}

.logo {
  flex-shrink: 0;
}

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

@media (min-width: 768px) {
  .logo-img {
    height: 2.5rem;
  }
}

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

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

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

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
}

.nav-mobile.active {
  display: flex;
}

/* Hide desktop CTA button on mobile */
.header .header-cta {
  display: none !important;
}

@media (min-width: 768px) {
  .header .header-cta {
    display: inline-flex !important;
  }
}

/* ====================================
   8. Hero Section
   ==================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
}

.hero-floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.floating-circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(159, 242, 193, 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-circle-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(76, 103, 186, 0.2);
  animation: float 3s ease-in-out infinite 1s;
}

.floating-circle-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37.5rem;
  height: 37.5rem;
  background: linear-gradient(to right, rgba(159, 242, 193, 0.1), rgba(76, 103, 186, 0.1));
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.3) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  padding: 5rem 0;
}

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

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

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

.hero-text .badge {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

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

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

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-wrap: pretty;
}

@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 2rem;
  }
}

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

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

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

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

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

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

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.icon-mint {
  color: var(--color-mint);
}

/* Hero Image */
.hero-image-container {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-image-container {
    display: block;
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 42, 0.6), transparent);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  z-index: 20;
}

.floating-card-1 {
  bottom: -1.5rem;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.floating-card-content {
  text-align: left;
}

.floating-card-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

.floating-card-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.floating-card-2 {
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar-group {
  display: flex;
  margin-right: 0.5rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -0.5rem;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.avatar-mint {
  background-color: var(--color-mint);
  color: var(--color-dark);
}

.avatar-dark {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.floating-card-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* ====================================
   9. Problems Section
   ==================================== */
.section-problems {
  background: linear-gradient(to bottom, var(--color-white), var(--color-gray-100));
}

.problems-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

/* ====================================
   10. Cards
   ==================================== */
.card {
  background-color: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
}

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

.card-problem {
  display: flex;
  padding: 1.5rem;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.card-problem:hover {
  border-color: rgba(76, 103, 186, 0.5);
}

.card-icon-wrapper {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(159, 242, 193, 0.2), rgba(76, 103, 186, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  transition: background var(--transition-slow);
}

.card-problem:hover .card-icon-wrapper {
  background: linear-gradient(135deg, rgba(159, 242, 193, 0.3), rgba(76, 103, 186, 0.3));
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.card-description {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

/* Service Cards */
.card-service {
  overflow: hidden;
}

.card-service:hover {
  box-shadow: var(--shadow-2xl);
}

.card-image-wrapper {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 42, 0.8), transparent);
}

.card-image-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.card-body {
  padding: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-blue);
  transition: color var(--transition-fast);
}

.card-link:hover {
  color: rgba(76, 103, 186, 0.8);
}

/* Testimonial Cards */
.card-testimonial {
  padding: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ====================================
   11. Benefits Section
   ==================================== */
.section-benefits {
  position: relative;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
}

.benefits-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 25, 42, 0.95), rgba(21, 35, 65, 0.9));
}

.section-benefits .container {
  position: relative;
  z-index: 10;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

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

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

.benefit-icon {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-2xl);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

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

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ====================================
   12. Services Section
   ==================================== */
.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

/* ====================================
   13. How It Works Section
   ==================================== */
.section-how-it-works {
  background: linear-gradient(to bottom, var(--color-gray-100), var(--color-white));
  overflow: hidden;
}

.how-it-works-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.decoration-circle-1 {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(159, 242, 193, 0.1);
  transform: translate(-50%, -50%);
}

.decoration-circle-2 {
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(76, 103, 186, 0.1);
  transform: translate(50%, 50%);
}

.steps-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.step-item {
  position: relative;
  text-align: center;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 1.75rem;
    left: 60%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
  }
  
  .step-item:last-child .step-connector {
    display: none;
  }
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
  transition: transform var(--transition-slow);
}

.step-item:hover .step-number {
  transform: scale(1.1);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

/* ====================================
   14. Testimonials Section
   ==================================== */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

/* ====================================
   15. Guarantee Section
   ==================================== */
.section-guarantee {
  position: relative;
  overflow: hidden;
}

.guarantee-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
}

.guarantee-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.3) 1px, transparent 0);
  background-size: 40px 40px;
}

.guarantee-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.guarantee-icon {
  width: 6rem;
  height: 6rem;
  border-radius: var(--radius-2xl);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--color-white);
  box-shadow: var(--shadow-2xl);
}

.guarantee-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

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

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

.guarantee-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .guarantee-description {
    font-size: 1.25rem;
  }
}

.guarantee-items {
  display: grid;
  gap: 2rem;
}

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

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.guarantee-item p {
  font-weight: 600;
  color: var(--color-white);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ====================================
   16. FAQ Section
   ==================================== */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-blue);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* ====================================
   17. CTA Section
   ==================================== */
.section-cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
}

.cta-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-floating-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-floating-circle-1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(159, 242, 193, 0.2);
}

.cta-floating-circle-2 {
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(15, 25, 42, 0.3);
}

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

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

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

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.cta-hours {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

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

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

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-title {
  font-weight: 600;
  color: var(--color-mint);
  margin-bottom: 1rem;
}

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

.footer-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ====================================
   19. Animations
   ==================================== */

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(159, 242, 193, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(159, 242, 193, 0.6);
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up.visible {
  animation: fadeInUp 0.6s ease forwards;
}

/* Fade In Right Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.6s ease forwards;
  animation-delay: 0.3s;
}

/* ====================================
   20. Scroll Animations (triggered by JS)
   ==================================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   21. Accessibility
   ==================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

/* ====================================
   22. Print Styles
   ==================================== */
@media print {
  .header,
  .hero-floating-elements,
  .hero-grid-pattern,
  .floating-card,
  .how-it-works-decorations,
  .cta-floating {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
