/* ==========================================================================
   CLEANCARE SEVENOAKS - Clean, Mobile-First CSS
   ========================================================================== */

/* CSS Variables */
:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-light: #22d3ee;
  --secondary: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Selection styling */
::selection {
  background: var(--primary);
  color: var(--white);
}

ul { list-style: none; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--white { background: var(--white); }
.section--gray { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(26px, 5vw, 36px);
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.header:hover {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Desktop Nav */
.nav {
  display: none;
}

.nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.nav a:hover::after {
  width: 100%;
}

.nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: 0.3s;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  z-index: 99;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  visibility: hidden;
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 18px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

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

.btn--white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

/* Hero with background image - mobile first */
.hero--image {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Natural gradient overlay - softer, more organic look */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.4) 0%,
      rgba(15, 23, 42, 0.25) 30%,
      rgba(15, 23, 42, 0.3) 60%,
      rgba(15, 23, 42, 0.6) 100%
    ),
    linear-gradient(
      135deg,
      rgba(8, 145, 178, 0.2) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero--image h1 {
  font-size: clamp(1.75rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero--image h1 span {
  display: inline;
  color: #7dd3fc;
  text-shadow: 0 2px 20px rgba(125, 211, 252, 0.3);
}

.hero--image p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  display: block;
  color: #a5f3fc;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-trust span {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* White outline button for hero */
.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  padding: 20px;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--border);
}

.stat:last-child::after,
.stat:nth-child(2)::after {
  display: none;
}

.stat-number {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

/* ==========================================================================
   CARDS / SERVICES
   ========================================================================== */
.cards-grid {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 1px solid var(--border);
}

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

.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img,
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-img img,
.card:hover img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 24px;
}

.card h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* ==========================================================================
   TWO COLUMN
   ========================================================================== */
.two-col {
  display: grid;
  gap: 40px;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius-lg);
}

.two-col h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.two-col p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Image Wrapper with subtle effects */
.img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.img-wrapper:hover img {
  transform: scale(1.02);
}

/* Subsection title helper */
.subsection-title {
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.text-muted {
  color: var(--text-light);
}

.mb-40 {
  margin-bottom: 40px;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features-grid {
  display: grid;
  gap: 24px;
}

.feature {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.feature h3 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  margin: 0 auto;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.pricing-amount {
  font-size: clamp(48px, 10vw, 64px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-unit {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.pricing-note {
  color: var(--text);
  margin-bottom: 28px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 15px;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--warning);
}

.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -5px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-sm);
}

.testimonial-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 15px;
}

.testimonial-location {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ==========================================================================
   AREAS
   ========================================================================== */
.areas-grid {
  display: grid;
  gap: 24px;
}

.area-box {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.area-box:hover {
  border-color: var(--primary-light);
}

.area-box h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-box h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tags span {
  background: var(--bg);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.area-tags span:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: 16px;
  font-weight: 800;
}

.cta p {
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--secondary) 0%, #0f172a 100%);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.footer p {
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  font-size: 15px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.8);
  margin: 0 8px;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.float-btn {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
  z-index: -1;
}

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

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.float-btn:hover::before {
  animation: none;
}

.float-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.phone-btn {
  right: 24px;
  background: var(--primary);
}

.whatsapp-btn {
  right: 92px;
  background: #25d366;
}

/* ==========================================================================
   RESPONSIVE - Tablet
   ========================================================================== */
@media (min-width: 640px) {
  .hero h1 { font-size: 40px; }

  .hero--image {
    min-height: 75vh;
  }

  .hero-bg img {
    object-position: center 40%;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-trust span {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

  .stat::after {
    display: block;
  }

  .stat:last-child::after {
    display: none;
  }

  .stat:nth-child(2)::after {
    display: block;
  }

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

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

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

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

  .pricing-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: row;
  }

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

/* ==========================================================================
   RESPONSIVE - Desktop
   ========================================================================== */
@media (min-width: 1024px) {
  .nav { display: block; }
  .menu-btn { display: none; }

  .section { padding: 100px 0; }

  .hero {
    padding: 100px 0;
  }

  .hero h1 { font-size: 52px; }

  .hero--image {
    min-height: 80vh;
    padding: 120px 0 80px;
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero--image h1 span {
    display: inline;
  }

  .hero-trust {
    gap: 20px;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .section-header h2 { font-size: 40px; }

  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ==========================================================================
   ANIMATIONS & REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .section {
    animation: fadeInUp 0.6s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 16px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner-content a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
}
