/**
 * Carpediem Solutions AI - Theme Styles
 * Uniform color theme, typography, animations, mobile-first
 */

:root {
  /* Unified color palette - consistent across all sections */
  --background: 207 44% 7%;
  --foreground: 0 0% 96%;
  --card: 207 35% 12%;
  --card-foreground: 0 0% 96%;
  --primary: 174 100% 42%;
  --primary-foreground: 207 44% 7%;
  --text-foreground: 0 0% 96%;
  --secondary: 210 20% 95%;
  --secondary-foreground: 207 44% 15%;
  --muted: 207 25% 18%;
  --muted-foreground: 200 15% 60%;
  --border: 207 20% 20%;
  --navy: 207 44% 7%;
  --navy-light: 207 35% 12%;
  --navy-card: 207 30% 16%;
  --cyan: 174 100% 42%;
  --cyan-glow: 185 100% 50%;
  --teal: 174 72% 35%;
  --amber: 36 100% 55%;
  --light-bg: 210 20% 95%;
  --light-card: 0 0% 100%;
  --radius: 0.75rem;
  /* Typography scale - common across headers and content */
  --font-size-base: 1rem;
  --font-size-sm: 0.9375rem;
  --font-size-lg: 1.0625rem;
  --font-size-h4: 1.125rem;
  --font-size-h3: 1.25rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
  --font-size-hero: 2.25rem;
  --line-height-base: 1.6;
  --line-height-tight: 1.25;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.font-heading { font-family: 'Space Grotesk', sans-serif; }

/* Title Case (Camel Case) - capitalize first letter of each word for headers/subheaders */
body,
h1, h2, h3, h4, h5, h6,
p, .section-badge,
.service-card h4,
.card-dark h3,
.card-light h4,
.nav-links a,
.nav-link, .nav-link-mobile {
  text-transform: capitalize;
}
/* Preserve original case for brand names and explicit uppercase */
.nav-brand,
.gradient-text,
.uppercase,
.btn-primary,
.btn-outline {
  text-transform: none;
}

/* Sections - all dark (reference: bright-style-studio.lovable.app) */
.section-dark {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  position: relative;
}
/* Subtle gradient overlay for depth between sections */
.section-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(var(--primary), 0.15), transparent);
  pointer-events: none;
}
.section-light { background: hsl(var(--navy-light)); color: hsl(var(--foreground)); }

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, hsl(var(--cyan)), hsl(var(--cyan-glow)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-bar {
  height: 4px;
  width: 64px;
  border-radius: 9999px;
  background: linear-gradient(90deg, hsl(var(--cyan)), hsl(var(--cyan-glow)));
  box-shadow: 0 0 12px rgba(0, 229, 204, 0.35);
}

/* Cards */
.card-dark {
  background: hsl(var(--navy-card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
}

.card-light {
  background: hsl(var(--light-card));
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

/* Card on dark - elevated dark card for dark sections */
.card-on-dark {
  background: hsl(var(--navy-card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-on-dark:hover {
  border-color: hsl(174 100% 42% / 0.5);
  box-shadow: 0 8px 32px -8px rgba(0, 229, 204, 0.15);
}

.glow-border-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0.75rem 0.75rem 0 0;
  background: linear-gradient(90deg, hsl(var(--cyan)), hsl(var(--cyan-glow)));
}

/* Mobile menu - solid background when open for readability */
.nav-mobile-menu.nav-dark {
  background: hsl(var(--background)) !important;
}

/* Navbar - transparent over hero, blends seamlessly */
.site-nav.nav-dark {
  position: relative;
  background: transparent !important;
  color: hsl(var(--foreground)) !important;
  border-bottom: none !important;
}
.site-nav.nav-dark .text-muted-foreground,
.site-nav.nav-dark a:not(.btn-primary) { color: hsl(var(--muted-foreground)) !important; }
.site-nav.nav-dark .text-muted-foreground:hover,
.site-nav.nav-dark a:not(.btn-primary):hover { color: hsl(var(--primary)) !important; }
.site-nav.nav-dark .text-foreground,
.site-nav.nav-dark .nav-brand { color: hsl(var(--foreground)) !important; }
.site-nav.nav-dark .nav-mobile-toggle { color: hsl(var(--foreground)) !important; }
.site-nav.nav-dark .nav-logo { filter: brightness(0) invert(1); }

/* Navbar scroll - solid background when over other sections */
.site-nav.nav-dark.scrolled {
  background: hsl(var(--background)) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

/* Legacy light nav (kept for compatibility) */
.site-nav.nav-light {
  background: #f8fafc !important;
  color: #1e293b !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.site-nav.nav-light .text-muted-foreground,
.site-nav.nav-light a:not(.btn-primary) { color: #475569 !important; }
.site-nav.nav-light a:not(.btn-primary):hover { color: hsl(var(--primary)) !important; }
.site-nav.nav-light .nav-brand,
.site-nav.nav-light .nav-mobile-toggle { color: #1e293b !important; }

.nav-glass {
  background: hsla(207, 44%, 7%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Footer - dark theme */
.site-footer-dark {
  background: hsl(var(--background)) !important;
  border-color: hsl(var(--border)) !important;
  color: hsl(var(--foreground)) !important;
}
.site-footer-dark .text-muted-foreground { color: hsl(var(--muted-foreground)) !important; }

/* Layout - fluid, mobile-first, 1400px max */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}
@media (min-width: 768px) {
  .container { padding-left: clamp(1.5rem, 5vw, 2rem); padding-right: clamp(1.5rem, 5vw, 2rem); }
}

/* Color utilities */
.bg-primary { background-color: hsl(var(--primary)); }
.bg-cyan-glow { background-color: hsl(var(--cyan-glow)); }
.bg-amber { background-color: hsl(var(--amber)); }
.bg-navy { background-color: hsl(var(--navy)); }
.bg-light-card { background-color: hsl(var(--light-card)); }
.bg-blue-500 { background-color: #3b82f6; }
.bg-purple-500 { background-color: #a855f7; }

.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-foreground { color: hsl(var(--text-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }

/* ========== ANIMATIONS & TRANSITIONS ========== */

/* Scroll-triggered fade-in-up (match React AnimatedSection) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
.animate-on-scroll[data-delay="0"] { transition-delay: 0s; }
.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.48s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.6s; }
.animate-on-scroll[data-delay="6"] { transition-delay: 0.72s; }

/* Hero initial animation (match React: opacity 0 y 30 → 1 0, 0.8s delay 0.3) */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content {
  animation: heroFadeIn 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

/* Hero background subtle parallax/zoom on load */
@keyframes heroBgZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.hero-bg-layer {
  animation: heroBgZoom 1.2s ease-out forwards;
}

/* Hero extends behind nav - seamless top section (reference: invictusadvisors.ai) */
.hero-top-wrapper {
  position: relative;
}
.hero-extends-behind-nav {
  margin-top: -72px;
  padding-top: 72px;
}
@media (max-width: 767px) {
  .hero-extends-behind-nav { margin-top: -64px; padding-top: 64px; }
}
body.admin-bar .hero-extends-behind-nav {
  margin-top: calc(-72px - 32px);
  padding-top: calc(72px + 32px);
}

/* Hero geometric pattern overlay - structured grid, more visible */
.hero-pattern-layer {
  opacity: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Button tap feedback (match React whileTap scale 0.97) */
.btn-primary:active,
.btn-outline:active {
  transform: scale(0.97);
}

/* Link hover transition */
a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* Smooth transitions for interactive elements */
.service-card,
.engagement-card,
.services-tab {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Services tabs - dark theme, pill-shaped (reference: bright-style-studio) */
#services .services-tab,
.services-section .services-tab {
  transition: all 0.25s ease;
  border-radius: 9999px;
  border: 1px solid transparent;
}
#services .services-tab.active,
.services-section .services-tab.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
  box-shadow: 0 4px 24px rgba(0, 229, 204, 0.3);
}
#services .services-tab:not(.active),
.services-section .services-tab:not(.active) {
  background: hsl(var(--navy-card));
  color: hsl(var(--muted-foreground));
  border-color: hsl(var(--border));
}
#services .services-tab:not(.active):hover,
.services-section .services-tab:not(.active):hover {
  background: hsl(var(--navy-light));
  color: hsl(var(--foreground));
  border-color: hsl(var(--primary));
}

/* Services tab panel - dark theme */
.services-panels-wrapper {
  min-height: 400px;
  background: transparent;
}
#services .services-panels-wrapper,
.services-section .services-panels-wrapper {
  padding-top: 0.5rem;
}

/* Services tab panel animation (match React AnimatePresence) */
.services-panel {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.services-panel.services-panel-out {
  opacity: 0;
  transform: translateY(-20px);
}
.services-panel:not(.services-panel-active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.services-panel.services-panel-active {
  position: relative;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(20px);
}
.services-panel.services-panel-active.services-panel-in {
  opacity: 1;
  transform: translateY(0);
}
.services-panel.services-panel-active.services-panel-in,
.services-panel.services-panel-active:not(.services-panel-in) {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Engagement card hover - match React whileHover y: -6 */
.engagement-card { transition: transform 0.2s ease; }
.engagement-card:hover { transform: translateY(-6px); }

/* Layout utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-50 { z-index: 50; }
.list-none { list-style: none; }
.m-0 { margin: 0; }
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: clamp(3rem, 8vw, 6rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.py-32 { padding-top: clamp(4rem, 10vw, 8rem); padding-bottom: clamp(4rem, 10vw, 8rem); }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-64 { width: 16rem; }
.h-px { height: 1px; }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Circular option icons - service letters (A,G,P) & engagement numbers (1,2,3,4) */
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }

/* Section badges - pill-shaped, dark theme with accent border */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  background: hsl(var(--navy-card));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.section-badge:hover {
  transform: translateY(-1px);
  border-color: hsl(var(--primary));
  box-shadow: 0 4px 16px rgba(0, 229, 204, 0.1);
}
.border-l-4 { border-left-width: 4px; }
.border-primary { border-color: hsl(var(--primary)); }
.border-border { border-color: hsl(var(--border)); }
.border-t { border-top-width: 1px; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }
.text-center { text-align: center; }
/* Typography - fluid scale for all devices */
.text-xs { font-size: clamp(0.75rem, 1.5vw, 0.8125rem); }
.text-sm { font-size: clamp(0.875rem, 1.8vw, var(--font-size-sm)); }
.text-base { font-size: clamp(0.9375rem, 2vw, var(--font-size-base)); }
.text-lg { font-size: clamp(1rem, 2.2vw, var(--font-size-lg)); }
.text-xl { font-size: clamp(1.125rem, 2.5vw, var(--font-size-h3)); }
.text-2xl { font-size: clamp(1.25rem, 3vw, var(--font-size-h2)); }
.text-4xl { font-size: clamp(1.5rem, 4vw, var(--font-size-hero)); }
.text-5xl { font-size: clamp(1.75rem, 4.5vw, 2rem); }
.text-6xl { font-size: clamp(2rem, 5vw, 2.5rem); }
.text-7xl { font-size: clamp(2.25rem, 6vw, 3rem); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.uppercase { text-transform: uppercase; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.shrink-0 { flex-shrink: 0; }
.transition-all { transition: all 0.2s; }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }
.transition-colors { transition: color 0.2s, background-color 0.2s; }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:brightness-110:hover { filter: brightness(1.1); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:scale-105:hover { transform: scale(1.05); }
.no-underline { text-decoration: none; }
.cursor-pointer { cursor: pointer; }
.bg-transparent { background-color: transparent; }
.border-0 { border-width: 0; }
.block { display: block; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.space-y-12 > * + * { margin-top: 3rem; }
.hidden { display: none !important; }

/* Grid layouts */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:hidden { display: none !important; }
  .md\:gap-10 { gap: clamp(1.5rem, 3vw, 2.5rem); }
  .md\:text-5xl { font-size: clamp(1.75rem, 4.5vw, 2.25rem); }
  .md\:text-7xl { font-size: clamp(2.25rem, 6vw, 3rem); }
}
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ========== RESPONSIVE - ALL DEVICES ========== */

/* Small phones (320px–479px) */
@media (max-width: 479px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .hero-section { min-height: 80vh; }
  .services-tab { padding: 0.625rem 0.875rem; font-size: 0.8125rem; }
  .grid.gap-6 { gap: 1rem; }
  .grid.gap-8 { gap: 1.25rem; }
}

/* Phones & small tablets (480px–767px) */
@media (max-width: 767px) {
  .section-dark,
  .section-light {
    padding-top: clamp(2.5rem, 6vw, 3rem);
    padding-bottom: clamp(2.5rem, 6vw, 3rem);
  }
  .hero-section { min-height: 85vh; }
  .services-tab {
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
  }
  .services-panels-wrapper { min-height: 320px; }
  .btn-primary,
  .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-sm);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-mobile-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }
  .differentiators-section .flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .differentiators-section .gradient-text {
    font-size: var(--font-size-h2);
  }
  .nav-links { gap: 1.5rem; }
}

/* Tablets (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-panels-wrapper { min-height: 360px; }
}

/* Large screens (1024px+) */
@media (min-width: 1024px) {
  .nav-links { gap: 2rem; }
}

/* Touch-friendly: ensure tap targets are at least 44px */
@media (hover: none) and (pointer: coarse) {
  .nav-link,
  .nav-link-mobile,
  .services-tab {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Logo - light nav/footer: dark logo, no invert. Constant light theme. */
.site-nav .nav-logo,
img.nav-logo {
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  vertical-align: middle !important;
}
footer .footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
footer .footer-logo,
img.footer-logo {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  vertical-align: middle !important;
}

/* Navbar - top right section */
.nav-brand { color: inherit; }
.nav-tagline { margin-top: 0.125rem; margin-bottom: 0; font-size: 0.75rem; font-weight: 400; color: hsl(var(--muted-foreground)); line-height: 1.2; }
.nav-links { flex-shrink: 0; }

/* Navbar scroll state - keep light, add subtle shadow */
.site-nav.nav-light.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.06); }

/* Service cards - dark theme only (reference: bright-style-studio) */
#services .service-card,
.services-section .service-card {
  background: hsl(var(--navy-card)) !important;
  border: 1px solid hsl(var(--border));
  border-left: 4px solid hsl(174 100% 42% / 0.5);
  border-radius: 1rem;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.25);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s ease;
}
#services .service-card:hover,
.services-section .service-card:hover {
  border-left-color: hsl(var(--primary));
  border-color: hsl(174 100% 42% / 0.35);
  box-shadow: 0 8px 32px -8px rgba(0, 229, 204, 0.2);
  transform: translateY(-3px);
}
#services .service-card .w-10[class*="bg-"],
.services-section .service-card .w-10[class*="bg-"] {
  box-shadow: 0 0 12px rgba(0, 229, 204, 0.3);
}
.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.text-secondary-foreground\/60 { color: hsla(207, 44%, 15%, 0.6); }
.text-secondary-foreground\/70 { color: hsla(207, 44%, 15%, 0.7); }

/* Primary buttons - pill-shaped with teal glow (match React Get Started) */
.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px 0 rgba(0, 229, 204, 0.25);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
  box-shadow: 0 6px 20px 0 rgba(0, 229, 204, 0.35);
}
.btn-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  background: transparent;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Focus styles for accessibility */
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.nav-link:focus-visible,
.services-tab:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}
