/* ============================================
   SENTINEL ROOFING — CLAYMORPHISM DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  /* Palette */
  --clay-sky: #c8e6ff;
  --clay-mint: #b8f0e0;
  --clay-peach: #ffd6b8;
  --clay-lavender: #e0d4ff;
  --clay-lemon: #fff3b0;
  --clay-rose: #ffc8d8;
  --clay-sage: #c8f0c8;

  --accent-primary: #ff6b35;
  --accent-secondary: #4a90d9;
  --accent-green: #2db87e;
  --accent-purple: #7c5cbf;

  --surface-white: rgba(255,255,255,0.72);
  --surface-card: rgba(255,255,255,0.60);
  --glass-border: rgba(255,255,255,0.85);

  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --text-muted: #7a7a9d;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(100,80,180,0.10), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(100,80,180,0.14), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(100,80,180,0.18), 0 4px 16px rgba(0,0,0,0.10);
  --shadow-xl: 0 32px 80px rgba(100,80,180,0.22), 0 8px 32px rgba(0,0,0,0.12);
  --shadow-inset: inset 0 2px 8px rgba(255,255,255,0.7), inset 0 -2px 6px rgba(100,80,180,0.08);

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.18s var(--ease-smooth);
  --transition-med: 0.32s var(--ease-smooth);
  --transition-bounce: 0.42s var(--ease-bounce);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background-image: linear-gradient(135deg, rgba(240,238,255,0.92) 0%, rgba(240,238,255,0.88) 100%), url('https://images.pexels.com/photos/31161406/pexels-photo-31161406.jpeg?_gl=1*10f3pm3*_ga*MTYzMjE5ODM3Mi4xNzc4NTkxOTcw*_ga_8JE65Q40S6*czE3Nzg1OTU0MDQkbzIkZzEkdDE3Nzg1OTU1MjMkajEzJGwwJGgw');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ---- ANIMATED BACKGROUND BLOBS ---- */
.blob-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: blobFloat 14s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, #c8e6ff, #e0d4ff); top: -120px; left: -80px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, #ffd6b8, #ffc8d8); top: 30%; right: -100px; animation-delay: -4s; }
.blob-3 { width: 460px; height: 460px; background: radial-gradient(circle, #b8f0e0, #c8f0c8); bottom: 5%; left: 20%; animation-delay: -8s; }
.blob-4 { width: 300px; height: 300px; background: radial-gradient(circle, #fff3b0, #ffd6b8); bottom: 20%; right: 10%; animation-delay: -2s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.03); }
}

/* ---- PAGE WRAPPER ---- */
.page-content { position: relative; z-index: 1; padding-top: 120px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.7; color: var(--text-mid); }

/* ---- CLAY CARD BASE ---- */
.clay-card {
  background: var(--surface-card);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transition: transform var(--transition-bounce), box-shadow var(--transition-med);
}
.clay-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--shadow-xl), var(--shadow-inset);
}

/* ---- CLAY BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-bounce), box-shadow var(--transition-med), background var(--transition-fast);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.btn:active { transform: scale(0.94) !important; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #e8432b 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(255,107,53,0.4), 0 2px 8px rgba(255,107,53,0.2), var(--shadow-inset);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255,107,53,0.5), 0 4px 12px rgba(255,107,53,0.3);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, #2a6abf 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(74,144,217,0.4), var(--shadow-inset);
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(74,144,217,0.5);
}
.btn-ghost {
  background: var(--surface-white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  border: 2px solid var(--glass-border);
}
.btn-ghost:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--shadow-md), var(--shadow-inset);
}
.btn-lg { padding: 18px 44px; font-size: 1.15rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1001;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-inset);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-med);
}
.navbar.scrolled {
  top: 8px;
  box-shadow: var(--shadow-xl), var(--shadow-inset);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-primary), #e8432b);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,107,53,0.4), var(--shadow-inset);
  font-size: 1.4rem;
}
.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--clay-peach);
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--clay-peach);
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 99px;
  transition: all var(--transition-fast);
}

/* ---- SECTION BASE ---- */
.section { padding: 100px 24px; position: relative; }
.section-sm { padding: 60px 24px; }
.hero + .section-sm { padding-top: 0; }
.container { max-width: 1160px; margin: 0 auto; }
.container-sm { max-width: 820px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-white);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 56px; }

/* ---- GRID HELPERS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ---- HERO SECTION ---- */
.hero {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 24px 40px;
  position: relative;
  overflow: visible;
  background: transparent;
}
.hero-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-visual {
  display: none;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-text {
  font-size: 1.05rem;
  max-width: 100%;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 6px;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 8px;
}
.hero-benefits span {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  padding: 10px 16px;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  animation: fadeSlideLeft 0.9s var(--ease-bounce) 0.2s both;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 340px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.85);
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  display: block;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-note {
  margin-top: 16px;
  text-align: center;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
}
.hero-image-caption {
  margin-top: 10px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.image-grid-section {
  padding-top: 0;
  padding-bottom: 40px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.image-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.image-card-copy {
  padding: 24px;
}
.image-card-copy h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.image-card-copy p {
  color: var(--text-muted);
  line-height: 1.7;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), var(--shadow-inset);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 10;
}
.hero-float-card-1 { 
  bottom: 40px; 
  left: 20px; 
  animation-delay: 0s; 
}
.hero-float-card-2 { 
  top: 40px; 
  right: 20px; 
  animation-delay: -2s; 
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translate(40px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}

/* ---- HERO STATS ---- */
.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeSlideUp 0.7s var(--ease-bounce) 0.4s both;
  margin-top: 20px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: var(--surface-white);
  backdrop-filter: blur(16px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--shadow-inset);
  min-width: 120px;
  transition: transform var(--transition-bounce);
}
.hero-stats > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-inset);
}
.hero-stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.hero-stat-num::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ---- FEATURES / SERVICE CARDS ---- */
.feature-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.25;
  transition: transform var(--transition-med);
}
.feature-card:hover::before { transform: scale(1.4); }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  transition: transform var(--transition-bounce);
}
.clay-card:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }

/* ---- PRICING CARDS ---- */
.pricing-card {
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(74,144,217,0.10));
  border-color: rgba(255,107,53,0.4);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
  position: absolute;
  top: 20px; right: -36px;
  background: linear-gradient(135deg, var(--accent-primary), #e8432b);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 48px;
  transform: rotate(45deg);
  letter-spacing: 0.08em;
}
.pricing-plan-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 1.4rem; vertical-align: super; }
.pricing-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100,80,180,0.15), transparent);
  margin: 24px 0;
}
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(100,80,180,0.06);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--clay-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--accent-green);
  margin-top: 1px;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  padding: 36px;
}
.testimonial-quote {
  font-size: 2.4rem;
  color: var(--accent-primary);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.testimonial-stars { color: #f5a623; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-location { font-size: 0.8rem; color: var(--text-muted); }

/* ---- PROCESS STEPS ---- */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  margin-bottom: 20px;
}
.process-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
  box-shadow: var(--shadow-md), var(--shadow-inset);
}

/* ---- FAQ ---- */
.faq-item {
  padding: 0;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: left;
  transition: background var(--transition-fast);
}
.faq-question:hover { background: rgba(255,255,255,0.4); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--clay-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition-bounce), background var(--transition-fast);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--clay-rose); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.3s;
  padding: 0 28px;
}
.faq-answer.open { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p { color: var(--text-mid); line-height: 1.7; }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.form-control {
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-bounce);
  outline: none;
  width: 100%;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}
.form-control:focus {
  border-color: rgba(255,107,53,0.5);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.12), var(--shadow-sm), var(--shadow-inset);
  transform: scale(1.01);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7a9d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-group input[type="checkbox"] {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(255,107,53,0.5);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent-primary);
}
.checkbox-group label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.checkbox-group a { color: var(--accent-primary); text-decoration: none; font-weight: 600; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,20,60,0.55);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(200%);
  border: 3px solid rgba(255,255,255,0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-inset);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px;
  transform: scale(0.88) translateY(30px);
  transition: transform var(--transition-bounce);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--clay-peach);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-bounce);
}
.modal-close:hover { transform: scale(1.15) rotate(90deg); background: var(--clay-rose); }
.modal-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--text-dark); margin-bottom: 8px; }
.modal-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; }

/* ---- FOOTER ---- */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2a4e 100%);
  color: white;
  padding: 80px 24px 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-green), var(--accent-purple));
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition-bounce);
}
.footer-social-btn:hover { background: var(--accent-primary); color: white; transform: translateY(-3px) scale(1.1); }
.footer-col-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 16px; }
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.5; margin-top: 20px; max-width: 700px; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 800px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-inset);
  padding: 24px 32px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.5s var(--ease-bounce), opacity 0.4s;
}
.cookie-banner.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-text { flex: 1; min-width: 200px; font-size: 0.9rem; color: var(--text-mid); }
.cookie-text a { color: var(--accent-primary); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #e8432b 100%);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 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.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; text-align: center; }
.stat-num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 3rem; color: white; line-height: 1; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ---- BLOG CARDS ---- */
.blog-card { overflow: hidden; }
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-med);
}
.clay-card:hover .blog-img { transform: scale(1.05); }
.blog-img-wrap { overflow: hidden; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.blog-content { padding: 28px; }
.blog-tag {
  display: inline-block;
  background: var(--clay-peach);
  color: var(--accent-primary);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.blog-title { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.blog-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-primary);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  font-size: 0.9rem;
  transition: gap var(--transition-bounce);
}
.blog-read-link:hover { gap: 10px; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 120px 24px 48px;
  text-align: center;
  position: relative;
}
.page-hero .container-sm {
  max-width: 760px;
}
.hero-quick-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}
.fact-card {
  min-width: 150px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}
.fact-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--accent-primary);
  line-height: 1;
}
.fact-label {
  margin-top: 8px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clay-sky) 0%, var(--clay-lavender) 50%, var(--clay-peach) 100%);
  opacity: 0.4;
  z-index: -1;
}

/* ---- TEAM / TRUST BADGES ---- */
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-bounce);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- UTILITY CLASSES ---- */
.text-center { text-align: center; }
.text-accent { color: var(--accent-primary); }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero > .container {
    padding-left: 40px;
    padding-right: 30px;
  }
  .hero-visual {
    min-height: auto;
    padding: 30px;
  }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 760px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 40px 20px;
  }
  .hero-content {
    grid-column: 1;
    padding-right: 0;
    margin-bottom: 24px;
    text-align: center;
  }
  .hero-visual {
    grid-column: 1;
    padding: 0;
  }
  .hero-img-wrap {
    height: 320px;
  }
  .hero-badge { width: fit-content; margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-stats {
    justify-content: center;
    gap: 20px;
  }
  .hero-stats > div {
    min-width: 100px;
    padding: 16px;
  }
  @keyframes fadeSlideLeft {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .navbar { width: calc(100% - 24px); padding: 12px 16px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border: 2px solid rgba(255,255,255,0.9); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card.featured { transform: scale(1); }
  .modal { padding: 32px 24px; border-radius: var(--radius-lg); }
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .hero-content {
    padding: 0 0 30px;
  }
  .hero-visual {
    padding: 0;
  }
  .hero-img-wrap {
    height: 300px;
  }
  .hero-title { font-size: 2rem; }
  .hero-text { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-float-card-1 { bottom: 20px; left: 10px; }
  .hero-float-card-2 { top: 20px; right: 10px; }
}
