/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: 214, 84%, 56%;
  --primary-glow: 214, 84%, 65%;
  --accent: 142, 76%, 36%;
  --foreground: 215, 25%, 27%;
  --muted: 215, 16%, 47%;
  --bg: 0, 0%, 100%;
  --bg-muted: 220, 14%, 96%;
  --border: 220, 13%, 91%;
  --card: 0, 0%, 100%;
  --radius: 0.5rem;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: hsl(var(--foreground)); background: hsl(var(--bg)); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 2rem; font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer; transition: all 0.3s; font-family: var(--font); }
.btn-primary { background: hsl(var(--primary)); color: #fff; }
.btn-primary:hover { background: hsl(var(--primary-glow)); }
.btn-hero { background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow))); color: #fff; padding: 1rem 2rem; font-size: 1.125rem; box-shadow: 0 4px 15px hsl(var(--primary), 0.3); }
.btn-hero:hover { box-shadow: 0 6px 25px hsl(var(--primary), 0.4); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid hsl(var(--border)); color: hsl(var(--foreground)); }
.btn-outline:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.btn-cta { background: hsl(var(--primary)); color: #fff; border-radius: var(--radius); padding: 0.625rem 1.25rem; }
.btn-cta:hover { background: hsl(var(--primary-glow)); }
.btn-white { background: #fff; color: hsl(var(--primary)); padding: 1rem 2rem; font-size: 1.125rem; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { background: #f0f0f0; }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.2); color: #fff; padding: 1rem 2rem; font-size: 1.125rem; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.375rem 1.25rem; font-size: 0.75rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 100; width: 100%; max-width: 48rem; padding: 0 1rem; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.625rem 1rem; border-radius: 9999px; border: 1px solid hsl(var(--border), 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: hsl(var(--bg), 0.5); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: all 0.5s ease-out; }
.navbar.scrolled .navbar-inner { background: hsl(var(--bg), 0.8); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.125rem; flex-shrink: 0; }
.nav-logo-icon { width: 1.75rem; height: 1.75rem; border-radius: 50%; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { padding: 0.375rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: hsl(var(--muted)); border-radius: 9999px; transition: all 0.2s; }
.nav-links a:hover { color: hsl(var(--foreground)); background: hsl(var(--bg-muted), 0.6); }
.nav-cta { border-radius: 9999px !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.375rem; border-radius: 50%; width: 2rem; height: 2rem; position: relative; }
.nav-hamburger span { display: block; width: 1.25rem; height: 2px; background: hsl(var(--foreground)); position: absolute; left: 50%; transform: translateX(-50%); transition: all 0.3s; }
.nav-hamburger span:nth-child(1) { top: 8px; }
.nav-hamburger span:nth-child(2) { top: 14px; }
.nav-hamburger span:nth-child(3) { top: 20px; }
.nav-hamburger.active span:nth-child(1) { top: 14px; transform: translateX(-50%) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { top: 14px; transform: translateX(-50%) rotate(-45deg); }

.mobile-menu { position: fixed; top: 0; left: 0; right: 0; background: hsl(var(--bg)); z-index: 90; padding: 5rem 1.5rem 1.5rem; transform: translateY(-100%); transition: transform 0.3s ease; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.mobile-menu.open { transform: translateY(0); }
.mobile-link { display: block; padding: 0.75rem 1rem; font-size: 1rem; font-weight: 500; border-radius: 0.75rem; transition: background 0.2s; }
.mobile-link:hover { background: hsl(var(--bg-muted)); }
.mobile-cta { margin-top: 0.75rem; width: 100%; justify-content: center; border-radius: 0.75rem !important; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo-text { display: none; }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-header p { font-size: 1.25rem; color: hsl(var(--muted)); }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding: 8rem 0 5rem; background: linear-gradient(180deg, hsl(var(--bg)) 0%, hsl(var(--bg-muted)) 100%); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, hsl(var(--primary), 0.05), transparent, hsl(var(--accent), 0.05)); }
.hero-content { position: relative; text-align: center; margin: 0 auto; }
.trust-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: hsl(var(--primary), 0.1); border-radius: 9999px; color: hsl(var(--primary)); font-weight: 500; font-size: 0.875rem; margin-bottom: 2rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.text-gradient { background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1.125rem, 2vw, 1.5rem); color: hsl(var(--muted)); max-width: 48rem; margin: 0 auto 2rem; line-height: 1.6; }
.hero-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.hero-benefit { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-note { font-size: 0.875rem; color: hsl(var(--muted)); margin-top: 1.5rem; }

/* ===== FEATURES ===== */
.features { padding: 5rem 0; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 5rem; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-icon-box { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: var(--radius); background: hsl(var(--primary), 0.1); color: hsl(var(--primary)); margin-bottom: 1.5rem; }
.feature-content h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.feature-content > p { font-size: 1.125rem; color: hsl(var(--muted)); margin-bottom: 1.5rem; }
.feature-benefits { margin-bottom: 2rem; }
.feature-benefits li { display: flex; align-items: center; gap: 0.75rem; padding: 0.375rem 0; }
.feature-image { border-radius: var(--radius); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); }
.feature-img-placeholder { background: linear-gradient(135deg, hsl(var(--bg-muted)), hsl(var(--border))); padding: 6rem 2rem; text-align: center; color: hsl(var(--muted)); font-size: 0.875rem; }

.mini-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 5rem; }
.mini-card { background: hsl(var(--card)); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: all 0.3s; }
.mini-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12); transform: translateY(-2px); }
.mini-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: var(--radius); background: hsl(var(--primary), 0.1); color: hsl(var(--primary)); margin-bottom: 1rem; }
.mini-card h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.mini-card p { font-size: 0.875rem; color: hsl(var(--muted)); }

@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row-reverse { direction: ltr; }
  .mini-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .mini-features { grid-template-columns: 1fr; }
}

/* ===== BENEFITS ===== */
.benefits { padding: 5rem 0; background: linear-gradient(180deg, hsl(var(--bg)) 0%, hsl(var(--bg-muted)) 100%); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.benefit-card { background: hsl(var(--card)); border-radius: var(--radius); padding: 2rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: all 0.3s; }
.benefit-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12); transform: translateY(-4px); }
.benefit-icon { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: var(--radius); background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow))); color: #fff; margin-bottom: 1.5rem; }
.benefit-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.benefit-card p { color: hsl(var(--muted)); margin-bottom: 1rem; font-size: 0.9375rem; }
.benefit-metric { font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); }

.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; text-align: center; }
.stat-number { font-size: 1.875rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.stat-label { font-size: 0.875rem; color: hsl(var(--muted)); }

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 5rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: hsl(var(--card)); border-radius: var(--radius); padding: 2rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: all 0.3s; }
.testimonial-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12); }
.quote-icon { margin-bottom: 1rem; }
.stars { color: hsl(var(--primary)); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: hsl(var(--muted)); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { margin-bottom: 1rem; }
.testimonial-author strong { display: block; }
.testimonial-author span { font-size: 0.875rem; color: hsl(var(--muted)); }
.savings-badge { display: inline-block; padding: 0.25rem 0.75rem; background: hsl(var(--accent), 0.1); color: hsl(var(--accent)); font-size: 0.875rem; font-weight: 500; border-radius: 9999px; }

.company-logos { text-align: center; margin-top: 4rem; }
.company-logos > p { color: hsl(var(--muted)); margin-bottom: 2rem; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; opacity: 0.6; }
.logo-placeholder { height: 3rem; width: 8rem; background: hsl(var(--bg-muted)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: hsl(var(--muted)); }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing { padding: 5rem 0; background: linear-gradient(180deg, hsl(var(--bg)) 0%, hsl(var(--bg-muted)) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 72rem; margin: 0 auto; align-items: start; }
.pricing-card { background: hsl(var(--card)); border-radius: var(--radius); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: all 0.3s; overflow: hidden; position: relative; }
.pricing-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12); transform: translateY(-4px); }
.pricing-popular { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); border: 2px solid hsl(var(--primary)); transform: scale(1.05); z-index: 1; }
.pricing-popular:hover { transform: scale(1.05) translateY(-4px); }
.popular-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: hsl(var(--primary)); color: #fff; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; border-radius: 0 0 var(--radius) var(--radius); }
.pricing-header { text-align: center; padding: 2.5rem 2rem 2rem; }
.pricing-header h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.price { margin-bottom: 0.5rem; }
.price-amount { font-size: 2.5rem; font-weight: 800; }
.price-period { color: hsl(var(--muted)); }
.pricing-header p { font-size: 0.875rem; color: hsl(var(--muted)); }
.pricing-features { padding: 0 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.875rem; }
.pricing-card .btn { margin: 1.5rem 2rem 2rem; width: calc(100% - 4rem); }

.guarantee-badge { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3rem; padding: 0.75rem 1.5rem; background: hsl(var(--accent), 0.1); color: hsl(var(--accent)); border-radius: 9999px; font-weight: 500; width: fit-content; margin-left: auto; margin-right: auto; }

.faq { max-width: 48rem; margin: 4rem auto 0; }
.faq h3 { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid hsl(var(--border)); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.faq-item h4 { font-weight: 600; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.875rem; color: hsl(var(--muted)); }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 28rem; }
  .pricing-popular { transform: none; }
  .pricing-popular:hover { transform: translateY(-4px); }
}

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 5rem 0; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))); color: #fff; overflow: hidden; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.1); }
.cta-content { position: relative; text-align: center; max-width: 56rem; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; }
.cta-content > p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.cta-benefits span { display: flex; align-items: center; gap: 0.5rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-trust { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.cta-trust p { font-size: 0.875rem; opacity: 0.8; margin-bottom: 1rem; }
.cta-trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; opacity: 0.6; font-size: 1.5rem; }

/* ===== Carousel SECTION ===== */

.carousel-wrap { padding: 2rem 0;}
  .carousel-wrap { padding: 2rem 0; font-family: 'Montserrat', system-ui, sans-serif; }
  .carousel-label { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-secondary); margin-bottom: 0.5rem; }
  .carousel-title { font-size: 22px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 1.5rem; }
  .track-outer { overflow: hidden; border-radius: 12px; }
  .track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
  .slide { min-width: 100%; box-sizing: border-box; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .service-card { padding: 1.5rem; background: white; border: 0.5px solid var(--color-border-tertiary); border-radius: 12px; box-sizing: border-box;box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s; }
  .slide-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0; }
  .service-card h3 { font-size: 15px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 0.5rem; }
  .service-card p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.7; }
  .stat-pill { display: inline-block; font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 20px; margin-bottom: 0.75rem; }
  .controls { display: flex; align-items: center; gap: 12px; margin-top: 1.25rem;background:white; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s; flex-wrap: wrap; }
  .ctrl-btn { width: 36px; height: 36px; border-radius: 50%; border: 0.5px solid var(--color-border-secondary); background: var(--color-background-primary); color: var(--color-text-primary); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; flex-shrink: 0; }
  .ctrl-btn:hover { background: var(--color-background-secondary); }
  .dots { display: flex; gap: 6px; flex: 1; justify-content: center; }
  .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-border-secondary); border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
  .dot.active { background: var(--color-text-primary); transform: scale(1.25); }
  .progress { font-size: 13px; color: var(--color-text-secondary); flex-shrink: 0; min-width: 36px; text-align: right; }
  @media (max-width: 600px) { .slide { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { background: hsl(var(--card)); border-top: 1px solid hsl(var(--border)); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-about h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.footer-about > p { font-size: 0.875rem; color: hsl(var(--muted)); margin-bottom: 1rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted)); }
.footer-links h4 { font-weight: 600; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: hsl(var(--muted)); transition: color 0.2s; }
.footer-links a:hover { color: hsl(var(--primary)); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 2rem 0; margin-top: 3rem; border-top: 1px solid hsl(var(--border)); font-size: 0.875rem; color: hsl(var(--muted)); flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: hsl(var(--muted)); transition: color 0.2s; }
.footer-legal a:hover { color: hsl(var(--primary)); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE COMPONENTS ===== */

/* Active nav link */
.nav-active,
.nav-links a.active {
  color: hsl(var(--primary)) !important;
  background: hsl(var(--primary), 0.08) !important;
  border-radius: 9999px;
}

/* Page sections */
.page-section { padding: 5rem 0; }
.page-section-alt { padding: 5rem 0; background: linear-gradient(180deg, hsl(var(--bg)) 0%, hsl(var(--bg-muted)) 100%); }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Content cards */
.content-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border: 1px solid hsl(var(--border));
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12);
}

/* About page specific styles */
.about-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0 6rem;
  background: hsl(var(--bg));
}
.about-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.about-hero-content { position: relative; max-width: 52rem; margin: 0 auto; text-align: center; }
.about-hero-title {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}
.about-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: hsl(var(--muted));
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  max-width: 44rem;
  margin: 0 auto;
}
.ah-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 2rem;
}
.ah-stat-num {
  font-size: 1.875rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1;
}
.ah-stat-label {
  font-size: 0.8125rem;
  color: hsl(var(--muted));
  font-weight: 500;
}
.ah-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: hsl(var(--border));
  flex-shrink: 0;
}

/* About page sections */
.about-mission { padding: 6rem 0; background: linear-gradient(180deg, hsl(var(--bg)) 0%, hsl(var(--bg-muted)) 100%); }
.mission-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
.mission-title {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.mission-body {
  font-size: 1.0625rem;
  color: hsl(var(--muted));
  line-height: 1.75;
  margin-bottom: 2rem;
}
.mission-right { display: flex; flex-direction: column; gap: 1rem; }
.mission-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border-radius: 0.875rem;
  border: 1px solid hsl(var(--border));
  transition: box-shadow 0.3s, transform 0.3s;
}
.mission-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.mc-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: hsl(var(--primary), 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-1 .mc-icon { background: hsl(214, 84%, 56%, 0.1); color: hsl(var(--primary)); }
.mc-2 .mc-icon { background: hsl(142, 76%, 36%, 0.1); color: hsl(var(--accent)); }
.mc-3 .mc-icon { background: hsl(32, 90%, 50%, 0.1); color: hsl(32, 90%, 45%); }
.mission-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; }
.mission-card p { font-size: 0.875rem; color: hsl(var(--muted)); line-height: 1.6; }

/* Timeline */
.about-story { padding: 6rem 0; background: hsl(var(--bg)); }
.timeline {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.875rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, hsl(var(--primary)), hsl(var(--accent)));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: hsl(var(--primary));
  border: 2px solid hsl(var(--bg));
  box-shadow: 0 0 0 3px hsl(var(--primary), 0.2);
  transition: transform 0.3s;
}
.timeline-item:hover::before { transform: scale(1.4); }
.timeline-year {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 0.375rem;
}
.timeline-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.9375rem; color: hsl(var(--muted)); line-height: 1.7; }

/* Team */
.about-team { padding: 6rem 0; background: linear-gradient(180deg, hsl(var(--bg-muted)) 0%, hsl(var(--bg)) 100%); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.team-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid hsl(var(--border));
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.team-avatar {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  letter-spacing: 0.02em;
}
.team-info h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role {
  display: block;
  font-size: 0.8125rem;
  color: hsl(var(--primary));
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.team-info p {
  font-size: 0.875rem;
  color: hsl(var(--muted));
  line-height: 1.65;
  margin-bottom: 0.875rem;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.team-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.625rem;
  background: hsl(var(--bg-muted));
  color: hsl(var(--muted));
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
}

/* Values */
.about-values { padding: 6rem 0; background: hsl(var(--bg)); }
.values-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.values-left h2 {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}
.values-left p { font-size: 1rem; color: hsl(var(--muted)); line-height: 1.7; }
.value-row {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid hsl(var(--border));
}
.value-row:last-child { border-bottom: none; }
.value-num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: hsl(var(--primary));
  letter-spacing: 0.05em;
  padding-top: 0.25rem;
  min-width: 2rem;
}
.value-body h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.375rem; }
.value-body p { font-size: 0.9375rem; color: hsl(var(--muted)); line-height: 1.65; }

/* Services page */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
  background: linear-gradient(180deg, hsl(var(--bg)) 0%, hsl(var(--bg-muted)) 100%);
}
.services-hero-content { position: relative; text-align: center; }
.services-stats { margin-top: 3rem; }
.services-page-section,
.services-process,
.services-why-us { padding: 5rem 0; }

/* Service detail cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-detail-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-detail-card > p {
  font-size: 0.9375rem;
  color: hsl(var(--muted));
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-list li {
  font-size: 0.875rem;
  color: hsl(var(--muted));
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
  font-weight: 600;
}
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  transition: opacity 0.2s;
}
.service-link:hover { opacity: 0.75; }

/* Process cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12);
}
.process-step {
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(var(--primary), 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.process-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted));
  line-height: 1.6;
}

/* Legal pages */
.terms-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 4.5rem;
  background: linear-gradient(180deg, hsl(var(--bg)) 0%, hsl(var(--bg-muted)) 100%);
}
.terms-hero-content {
  position: relative;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}
.terms-meta {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: hsl(var(--muted));
}
.terms-content-section {
  padding: 4.5rem 0 5rem;
  background: hsl(var(--bg));
}
.terms-content {
  max-width: 52rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.terms-block + .terms-block { margin-top: 2rem; }
.terms-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}
.terms-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: hsl(var(--muted));
}
.terms-block a { color: hsl(var(--primary)); font-weight: 600; }
.terms-block a:hover { opacity: 0.85; }

/* Responsive */
@media (max-width: 900px) {
  .mission-layout { grid-template-columns: 1fr; gap: 3rem; }
  .values-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .about-hero { padding: 8rem 0 4rem; min-height: auto; }
  .about-hero-title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .about-hero-stats { gap: 0; padding: 1.25rem 1rem; }
  .ah-stat { padding: 0 1rem; }
  .ah-stat-num { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 2.5rem; }
  .services-hero { padding-top: 8rem; }
  .terms-hero { padding: 8rem 0 4rem; }
  .terms-content { padding: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .about-hero-stats { flex-wrap: wrap; gap: 1rem; }
  .ah-stat-divider { display: none; }
  .team-card { flex-direction: column; }
  .terms-content { padding: 1.5rem; border-radius: 0.75rem; }
  .terms-block h2 { font-size: 1.05rem; }
  .terms-block p { font-size: 0.95rem; }
  .process-grid { grid-template-columns: 1fr; }
}


