/* ============================================
   IDYLLIC SERVICES — Premium Design System v3
   Teal + Orange (from logo) | Trillion Dollar UI
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors — from logo: Teal + Warm Orange */
  --primary: #0B7A8A;
  --primary-dark: #086570;
  --primary-light: #0E9AAD;
  --primary-glow: rgba(11, 122, 138, 0.15);
  --secondary: #1A2E44;
  --secondary-dark: #111E2E;
  --secondary-light: #253D58;

  /* Accent — warm orange from logo, refined and elegant */
  --accent: #D4722A;
  --accent-hover: #BF6422;
  --accent-light: #E8944D;
  --accent-dark: #B55D1E;
  --accent-gold: #D4942A;
  --accent-gradient: linear-gradient(135deg, #D4722A 0%, #E8944D 50%, #D4942A 100%);
  --accent-soft: rgba(212, 114, 42, 0.06);
  --accent-glow: rgba(212, 114, 42, 0.12);

  /* Brand gradient — teal to orange */
  --brand-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 40%, var(--accent) 100%);
  --brand-gradient-subtle: linear-gradient(135deg, rgba(11, 122, 138, 0.08) 0%, rgba(212, 114, 42, 0.05) 100%);

  /* Neutrals — warm premium palette */
  --white: #FFFFFF;
  --ivory: #FFFDF8;
  --off-white: #F8F9FB;
  --light-gray: #EDF0F5;
  --mid-gray: #9BA4B5;
  --dark-gray: #4A5568;
  --charcoal: #1C1C1E;
  --text: #2D3748;
  --text-light: #718096;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius — premium squircle system */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-squircle: 22%;
  --radius-pill: 100px;

  /* Layered Shadow System — premium depth */
  --shadow-xs: 0 1px 2px rgba(26, 46, 68, 0.04);
  --shadow-sm: 0 1px 3px rgba(26, 46, 68, 0.04), 0 4px 12px rgba(26, 46, 68, 0.04);
  --shadow-md: 0 2px 4px rgba(26, 46, 68, 0.03), 0 8px 24px rgba(26, 46, 68, 0.06), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 4px 6px rgba(26, 46, 68, 0.03), 0 12px 40px rgba(26, 46, 68, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 8px 12px rgba(26, 46, 68, 0.04), 0 24px 64px rgba(26, 46, 68, 0.12), 0 4px 8px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 20px rgba(11, 122, 138, 0.15), 0 0 60px rgba(11, 122, 138, 0.08);
  --shadow-accent-glow: 0 0 20px rgba(212, 114, 42, 0.15), 0 0 60px rgba(212, 114, 42, 0.08);
  --shadow-premium: 0 20px 60px rgba(26, 46, 68, 0.1), 0 4px 8px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.04);

  /* Transitions — snappy spring-like */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- CSS Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--dark-gray);
  line-height: 1.8;
}

/* ---- Section Layout ---- */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section--alt {
  background-color: var(--off-white);
}

.section--dark {
  background-color: var(--secondary);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: var(--space-md);
  padding: 6px 16px;
  background: var(--brand-gradient-subtle);
  border: 1px solid rgba(11, 122, 138, 0.1);
  border-radius: var(--radius-pill);
  position: relative;
}

.section-title {
  margin-bottom: var(--space-md);
  position: relative;
}

/* Teal-to-orange underline — brand identity */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
  margin: var(--space-lg) auto 0;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--dark-gray);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ---- Buttons — premium with subtle hover ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Accent CTA button — warm orange */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(212, 114, 42, 0.2);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(11, 122, 138, 0.3);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ---- Cards — premium with refined hover ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Teal-to-orange left border on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: height var(--transition-slow);
  border-radius: 0 0 2px 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 122, 138, 0.06);
}

.card:hover::before {
  height: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: var(--primary);
  transition: all var(--transition-base);
}

.card:hover .card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: var(--shadow-glow);
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ---- Grid System ---- */
.grid {
  display: grid;
  gap: var(--space-2xl);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---- Navbar — sleek premium glassmorphism ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(17, 30, 46, 0.92);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo img {
  height: 42px;
  width: auto;
  transition: var(--transition-base);
}

.navbar.scrolled .navbar-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
  letter-spacing: 0.2px;
}

/* Orange underline on nav hover — brand identity */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 9px 24px;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--white);
}

.nav-cta .btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section — cinematic premium ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(17, 30, 46, 0.92) 0%,
      rgba(11, 80, 95, 0.65) 40%,
      rgba(26, 46, 68, 0.85) 70%,
      rgba(212, 114, 42, 0.15) 100%);
  z-index: 1;
}

/* Subtle grain texture via pseudo-element */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: var(--space-5xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(12px);
  letter-spacing: 0.5px;
}

.hero-badge i {
  color: var(--accent);
  font-size: 0.7rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

/* Premium gradient text with teal and orange */
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, #56C5D0 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero organic blobs — with orange accent */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  opacity: 0.04;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-shape:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--primary-light);
  top: -120px;
  right: -120px;
  animation: morphBlob 20s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: -80px;
  left: 8%;
  animation: morphBlob 25s ease-in-out infinite reverse;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.035;
}

.hero-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  background: var(--accent-gold);
  top: 35%;
  right: 12%;
  animation: morphBlob 18s ease-in-out infinite 2s;
  border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
}

@keyframes morphBlob {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translateY(0) rotate(0deg);
  }

  25% {
    border-radius: 58% 42% 35% 65% / 55% 35% 65% 45%;
  }

  50% {
    border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
    transform: translateY(-20px) rotate(3deg);
  }

  75% {
    border-radius: 35% 65% 55% 45% / 65% 45% 55% 35%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--secondary);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(17, 30, 46, 0.97) 0%,
      rgba(11, 80, 95, 0.85) 60%,
      rgba(212, 114, 42, 0.12) 100%);
}

/* Grain on page hero too */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.3;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.page-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-hero-shapes .shape {
  position: absolute;
  opacity: 0.035;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.page-hero-shapes .shape:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  top: -100px;
  right: -80px;
  animation: morphBlob 22s ease-in-out infinite;
}

.page-hero-shapes .shape:nth-child(2) {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: -80px;
  left: 5%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphBlob 28s ease-in-out infinite reverse;
}

/* ---- Stats / Counter ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 60%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section--dark .stat-label {
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Squircle avatar with brand gradient */
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ---- Brands Marquee ---- */
.marquee-container {
  overflow: hidden;
  padding: var(--space-xl) 0;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.section--alt .marquee-container::before {
  background: linear-gradient(90deg, var(--off-white), transparent);
}

.section--alt .marquee-container::after {
  background: linear-gradient(270deg, var(--off-white), transparent);
}

.marquee-track {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-width: 150px;
  height: 64px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  opacity: 0.5;
  transition: all var(--transition-base);
}

.marquee-item:hover {
  opacity: 1;
  border-color: rgba(212, 114, 42, 0.15);
  box-shadow: var(--shadow-sm);
  color: var(--accent-dark);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---- CTA Banner — organic shapes with orange accent ---- */
.cta-banner {
  position: relative;
  padding: var(--space-5xl) 0;
  background: linear-gradient(160deg, var(--secondary) 0%, var(--primary-dark) 60%, rgba(212, 114, 42, 0.25) 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(212, 114, 42, 0.06);
  animation: morphBlob 20s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(11, 122, 138, 0.05);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
}

/* CTA button uses the accent orange */
.cta-banner .btn-primary {
  background: var(--accent);
  box-shadow: 0 4px 20px rgba(212, 114, 42, 0.3);
}

.cta-banner .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent-glow);
}

/* ---- Footer — premium minimal ---- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-5xl) 0 0;
  position: relative;
}

/* Subtle orange accent line at footer top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  opacity: 0.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 48px;
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

/* Squircle social icons */
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(11, 122, 138, 0.3);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact .icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: var(--space-xl) 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ---- Form — clean premium ---- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 122, 138, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-gray);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-size: 0.78rem;
  color: #DC3545;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: #DC3545;
}

.form-group.error .form-error {
  display: block;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(120px);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 9999;
  border-left: 3px solid var(--accent);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---- Product Filter Tabs ---- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.filter-tab {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-gray);
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--light-gray);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-tab:hover {
  color: var(--primary);
  border-color: rgba(11, 122, 138, 0.3);
  background: rgba(11, 122, 138, 0.03);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(11, 122, 138, 0.25);
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  height: 220px;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(212, 114, 42, 0.25);
}

.product-card-body {
  padding: var(--space-lg) var(--space-xl);
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
}

/* ---- Process Steps — numbered squares ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.2;
}

.process-step {
  text-align: center;
  position: relative;
}

/* Squircle step number */
.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.process-step:hover .process-step-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: var(--white);
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 8px 25px rgba(11, 122, 138, 0.3);
}

.process-step h4 {
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--dark-gray);
}

/* ---- Contact Info Cards ---- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--primary);
  transition: all var(--transition-base);
}

.contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: scale(1.05);
}

.contact-info-text h4 {
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.88rem;
  color: var(--dark-gray);
}

/* ---- Chatbot Toggle Button ---- */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(11, 122, 138, 0.35);
  z-index: 9998;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.chatbot-toggle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(11, 122, 138, 0.45);
}

.chatbot-toggle.active {
  background: var(--secondary);
  box-shadow: 0 4px 20px rgba(26, 46, 68, 0.35);
}

.chatbot-toggle.pulse {
  animation: chatbotPulse 2s infinite;
}

.chatbot-toggle-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  animation: badgeBounce 2s ease infinite;
}

@keyframes chatbotPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(11, 122, 138, 0.35);
  }

  50% {
    box-shadow: 0 4px 30px rgba(11, 122, 138, 0.5), 0 0 0 8px rgba(11, 122, 138, 0.08);
  }
}

@keyframes badgeBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* ---- Chatbot Window ---- */
.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  flex-shrink: 0;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.chatbot-avatar img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.chatbot-header-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.chatbot-header-status {
  font-size: 0.72rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.chatbot-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  max-height: 260px;
  scrollbar-width: thin;
  scrollbar-color: var(--light-gray) transparent;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--light-gray);
  border-radius: 4px;
}

.chatbot-msg {
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.chatbot-msg-bot {
  align-self: flex-start;
  max-width: 88%;
}

.chatbot-msg-user {
  align-self: flex-end;
  flex-direction: row-reverse;
  max-width: 78%;
}

.chatbot-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brand-gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.chatbot-msg-avatar img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.chatbot-msg-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text);
}

.chatbot-msg-bot .chatbot-msg-bubble {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom-left-radius: 4px;
}

.chatbot-msg-user .chatbot-msg-bubble {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot-msg-bubble a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chatbot-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  align-self: flex-start;
}

.chatbot-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mid-gray);
  animation: typingDot 1.2s infinite;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chatbot-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingDot {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.chatbot-questions {
  padding: 10px 16px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--light-gray);
  max-height: 140px;
  overflow-y: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
}

.chatbot-question-btn {
  padding: 7px 14px;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(11, 122, 138, 0.05);
  border: 1px solid rgba(11, 122, 138, 0.15);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  animation: chatFadeIn 0.3s ease forwards;
  opacity: 0;
  font-family: var(--font-body);
}

.chatbot-question-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(11, 122, 138, 0.2);
}

@keyframes chatFadeIn {
  to {
    opacity: 1;
  }
}

/* ---- Floating WhatsApp Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all var(--transition-base);
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
  }
}

/* ---- Page Loading Bar ---- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: transparent;
  pointer-events: none;
}

.page-loader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: pageLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageLoad {
  0% {
    width: 0;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
    opacity: 0;
  }
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 100px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(120px);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 9999;
  border-left: 3px solid var(--accent);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .stat-item+.stat-item::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-3xl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-tabs {
    gap: var(--space-xs);
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .chatbot-window {
    right: 10px;
    left: 10px;
    bottom: 90px;
    width: auto;
    max-height: 450px;
  }

  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}