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

:root {
  --color-primary: #1a3a5c;
  --color-secondary: #8b5a2b;
  --color-accent: #c9a962;
  --color-dark: #1c1c1c;
  --color-light: #f8f6f3;
  --color-white: #ffffff;
  --color-gray: #6b6b6b;
  --color-gray-light: #e8e6e3;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-primary);
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--color-gray); }

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

a:hover { color: var(--color-accent); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background-color: var(--color-light);
}

.section--dark {
  background-color: var(--color-primary);
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--color-secondary);
}

.nav {
  display: none;
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav__link:hover {
  color: var(--color-secondary);
}

.nav__link--active {
  color: var(--color-secondary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.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 Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav__list {
  list-style: none;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 500;
}

.mobile-nav__link:hover {
  color: var(--color-secondary);
}

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-dark);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 700px;
}

.hero__subtitle {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 550px;
}

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

/* Feature Cards */
.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

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

/* Services Cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-card__content {
  padding: 2rem;
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-secondary);
  white-space: nowrap;
}

.service-card__features {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-light);
}

.service-card__features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-gray);
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* Statistics */
.stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card__text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--color-gray);
}

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

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

.faq-item__question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  gap: 1rem;
}

.faq-item__question:hover {
  color: var(--color-secondary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding-bottom: 1.5rem;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.process-step__number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.process-step__content h3 {
  margin-bottom: 0.5rem;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.value-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.value-item__icon svg {
  width: 100%;
  height: 100%;
}

/* About Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-text {
  max-width: 700px;
}

.about-text p {
  font-size: 1.1rem;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.contact-item__icon svg {
  width: 100%;
  height: 100%;
}

.contact-item__content h4 {
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

.contact-item__content p {
  margin-bottom: 0;
}

/* Milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}

.milestones::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-accent);
}

.milestone {
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  transform: translateX(-5px);
}

.milestone__year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a4a6c 100%);
  padding: 3rem 2rem;
  border-radius: 4px;
  text-align: center;
}

.highlight-panel h2,
.highlight-panel p {
  color: var(--color-white);
}

.highlight-panel .btn {
  margin-top: 1rem;
}

/* Industry List */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.industry-tag {
  background-color: var(--color-light);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--color-dark);
  transition: var(--transition);
}

.industry-tag:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

/* Trust Indicators */
.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.trust-item__icon svg {
  width: 100%;
  height: 100%;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--color-dark);
  font-weight: 500;
}

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 5rem 0;
}

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

.quote-section cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  color: var(--color-gray);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

.comparison-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--color-light);
}

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

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

.footer__col h4 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer__col p {
  color: rgba(255, 255, 255, 0.7);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: var(--color-accent);
}

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

.cookie-banner__btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-banner__btn--accept {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.cookie-banner__btn--accept:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.cookie-banner__btn--reject {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.cookie-banner__btn--reject:hover {
  border-color: var(--color-white);
}

.cookie-banner__btn--settings {
  background-color: transparent;
  color: var(--color-accent);
  text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__content {
  background-color: var(--color-white);
  border-radius: 4px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  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 {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal__close svg {
  width: 20px;
  height: 20px;
}

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

.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 {
  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-color: var(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

.toggle__slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle input:checked + .toggle__slider {
  background-color: var(--color-secondary);
}

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

.toggle input:disabled + .toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* Thank You Page */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}

.thank-you__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.thank-you__icon svg {
  width: 100%;
  height: 100%;
}

/* Legal Pages */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

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

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

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

.legal-content p:last-child {
  margin-bottom: 0;
}

/* Responsive: Tablet and up */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

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

  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .features {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 300px;
  }

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

  .stat-item {
    flex: 1 1 auto;
    padding: 2rem 3rem;
  }

  .testimonials-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-info {
    flex: 1;
  }

  .trust-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
  }

  .footer__grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer__col {
    flex: 1 1 200px;
  }

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

  .cookie-banner p {
    flex: 1;
  }
}

/* Responsive: Desktop */
@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }

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

  .feature-card {
    flex: 1 1 calc(25% - 1.5rem);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .testimonial-card {
    flex: 1 1 calc(33.333% - 1.33rem);
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
