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

:root {
  --primary: #6B5B95;
  --primary-dark: #524578;
  --secondary: #F7CAC9;
  --accent: #88B04B;
  --text-dark: #2D2D2D;
  --text-light: #5A5A5A;
  --text-muted: #7A7A7A;
  --bg-light: #FAFAFA;
  --bg-cream: #FDF8F5;
  --bg-lavender: #F5F3FA;
  --white: #FFFFFF;
  --border: #E8E8E8;
  --shadow: rgba(107, 91, 149, 0.12);
  --shadow-lg: rgba(107, 91, 149, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.25rem; margin-bottom: 1.25rem; }
h2 { font-size: 1.875rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.875rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav-list {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-list a {
  display: block;
  padding: 1rem;
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.25s ease;
}

.mobile-nav-list a:hover {
  background: var(--bg-lavender);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

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

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

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

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

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

.btn-light:hover {
  background: var(--bg-lavender);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Hero Section */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--bg-lavender) 0%, var(--bg-cream) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-lavender);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Service Cards */
.service-card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px var(--shadow);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.feature-content h4 {
  margin-bottom: 0.375rem;
}

.feature-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background: var(--primary);
  color: var(--white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  flex: 1 1 calc(50% - 1rem);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-cream);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testimonial-card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2.5rem;
  color: var(--secondary);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-info h4 {
  margin-bottom: 0.125rem;
  font-size: 1rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Quote Block */
.quote-block {
  background: var(--bg-lavender);
  padding: 4rem 0;
  text-align: center;
}

.quote-block blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-dark);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.quote-block cite {
  font-style: normal;
  color: var(--text-muted);
}

/* Alternating Content */
.alt-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.alt-content-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.alt-content-text {
  max-width: 560px;
}

.alt-content-visual {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.alt-content-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Process Steps */
.process-section {
  background: var(--bg-light);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 11px;
  left: 6px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 6px;
  left: 11px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Industries Section */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.industry-tag {
  background: var(--bg-lavender);
  color: var(--primary);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9375rem;
}

/* Values Section */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.value-item {
  flex: 1 1 100%;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.value-item svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
}

.value-item h3 {
  margin-bottom: 0.75rem;
}

.value-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Contact Page */
.contact-section {
  background: var(--bg-light);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1 1 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-map {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
}

/* Thank You Page */
.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-lavender);
}

.thank-you-content svg {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Legal Pages */
.legal-section {
  padding: 4rem 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  flex: 1 1 100%;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-nav {
  flex: 1 1 calc(50% - 1.25rem);
}

.footer-nav h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-content p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-buttons .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.cookie-modal-close svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-option-header h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.cookie-option p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 26px;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-modal-buttons .btn {
  flex: 1 1 auto;
}

/* Highlight Panel */
.highlight-panel {
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 3rem;
  margin: 2rem 0;
}

.highlight-panel h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.highlight-panel p {
  opacity: 0.9;
  margin-bottom: 0;
}

/* Comparison Section */
.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.comparison-item {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--border);
}

.comparison-item.featured {
  border-color: var(--primary);
  position: relative;
}

.comparison-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-item h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.comparison-price {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.comparison-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.comparison-features {
  list-style: none;
}

.comparison-features li {
  padding: 0.625rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.comparison-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Milestones */
.milestones-section {
  background: var(--bg-lavender);
}

.milestones-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.milestones-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: 0.3;
}

.milestone-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.milestone-year {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 1;
}

.milestone-content h4 {
  margin-bottom: 0.375rem;
}

.milestone-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Insights Section */
.insights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.insight-card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 20px var(--shadow);
}

.insight-card h4 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.insight-card p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Stacked Content */
.stacked-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stacked-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.stacked-item svg {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.stacked-item h4 {
  margin-bottom: 0.5rem;
}

.stacked-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* About Page Specific */
.about-hero {
  background: var(--bg-lavender);
  padding: 4rem 0 5rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.team-member {
  flex: 1 1 100%;
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--bg-lavender);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 50px;
  height: 50px;
  color: var(--primary);
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-member .role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Background Variations */
.bg-light { background: var(--bg-light); }
.bg-cream { background: var(--bg-cream); }
.bg-lavender { background: var(--bg-lavender); }
.bg-white { background: var(--white); }

/* Media Queries */
@media (min-width: 640px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.125rem; }

  .hero h1 { font-size: 3rem; }

  .card { flex: 1 1 calc(50% - 0.75rem); }
  .service-card { flex: 1 1 calc(50% - 0.75rem); }
  .testimonial-card { flex: 1 1 calc(50% - 0.75rem); }
  .value-item { flex: 1 1 calc(50% - 1rem); }
  .comparison-item { flex: 1 1 calc(50% - 0.75rem); }
  .insight-card { flex: 1 1 calc(50% - 0.75rem); }
  .team-member { flex: 1 1 calc(50% - 1rem); }

  .stat-item { flex: 1 1 calc(25% - 1.5rem); }

  .footer-brand { flex: 1 1 100%; }
  .footer-nav { flex: 1 1 calc(33.333% - 1.67rem); }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  section { padding: 5rem 0; }

  .container { padding: 0 2rem; }

  .hero { padding: 5rem 0 6rem; }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text { flex: 1; }
  .hero-visual { flex: 1; }

  .alt-content-item {
    flex-direction: row;
  }

  .alt-content-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .alt-content-text { flex: 1; }
  .alt-content-visual { flex: 1; }

  .contact-info { flex: 1 1 calc(50% - 1.5rem); }
  .contact-map { flex: 1 1 calc(50% - 1.5rem); }
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.375rem; }

  .hero h1 { font-size: 3.5rem; }

  .card { flex: 1 1 calc(33.333% - 1rem); }
  .service-card { flex: 1 1 calc(33.333% - 1rem); }
  .testimonial-card { flex: 1 1 calc(33.333% - 1rem); }
  .comparison-item { flex: 1 1 calc(33.333% - 1rem); }
  .team-member { flex: 1 1 calc(25% - 1.5rem); }

  .footer-brand { flex: 1 1 auto; max-width: 300px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  z-index: 10001;
}

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