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

:root {
  --primary: #1a3a5c;
  --primary-light: #2d5a87;
  --secondary: #c9a227;
  --secondary-light: #e0b939;
  --accent: #4a90a4;
  --text: #2c3e50;
  --text-light: #5a6c7d;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-dark: #e9ecef;
  --border: #dee2e6;
  --success: #28a745;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { margin-bottom: 1rem; }

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

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

img, svg { max-width: 100%; height: auto; }

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

.section {
  padding: 4rem 0;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--primary); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

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

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

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

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

.btn--light:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 1000;
}

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

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

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

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

.nav { display: none; }

.nav--active { display: flex; }

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 1rem 0;
}

.nav__link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--secondary);
  background: var(--bg-alt);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 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);
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  transform: rotate(15deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

/* Cards */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

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

.card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.card__title {
  margin-bottom: 0.75rem;
}

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

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

.cards-grid .card {
  flex: 1 1 100%;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.service-card__header {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem;
}

.service-card__header h3 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.service-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.service-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__desc {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card__features {
  list-style: none;
}

.service-card__features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.service-card__features li:last-child { border-bottom: none; }

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

/* Stats Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  text-align: center;
}

.stat {
  flex: 1 1 140px;
  max-width: 180px;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.section--dark .stat__number { color: var(--secondary); }

.stat__label {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.section--dark .stat__label { color: rgba(255,255,255,0.8); }

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

.testimonial {
  flex: 1 1 100%;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

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

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}

.testimonial__info strong {
  display: block;
  color: var(--primary);
}

.testimonial__info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

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

.faq-question::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-75%) rotate(45deg);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  transform: translateY(-25%) rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 0 1.25rem;
  color: var(--text-light);
}

.faq-answer[aria-hidden="false"] {
  max-height: 500px;
}

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

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

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

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

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

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

.value-item {
  flex: 1 1 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

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

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

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-member {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.team-member__avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}

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

.team-member__role {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-member p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

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

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

.contact-item__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

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

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

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.highlight-box h2 { color: #fff; }

.highlight-box p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

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

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

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

.feature-item__check svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.feature-item p {
  margin-bottom: 0;
  padding-top: 0.25rem;
}

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

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

/* CTA Section */
.cta {
  text-align: center;
  padding: 4rem 0;
}

.cta h2 { margin-bottom: 1rem; }

.cta p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__col {
  flex: 1 1 100%;
}

.footer__col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li { margin-bottom: 0.5rem; }

.footer__col a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

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

.footer__col p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer__bottom a {
  color: rgba(255,255,255,0.6);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 1.25rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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

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

.cookie-banner__actions .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: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal__content {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal__header h3 { margin-bottom: 0; }

.cookie-modal__close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.cookie-modal__close:hover { background: var(--bg-alt); }

.cookie-modal__body {
  padding: 1.5rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.cookie-option__info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--primary);
}

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 26px;
  transition: background var(--transition);
}

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

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--success);
}

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

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

.cookie-modal__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Page Header */
.page-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.375rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

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

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

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

.thank-you__icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thank-you__icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

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

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

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td { background: var(--bg-alt); }

/* Milestones */
.milestones {
  position: relative;
}

.milestone {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -2rem;
  width: 2px;
  background: var(--border);
}

.milestone:last-child::before { display: none; }

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

.milestone__content h3 { margin-bottom: 0.25rem; }

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

/* Responsive Styles */
@media (min-width: 640px) {
  .cards-grid .card { flex: 1 1 calc(50% - 0.75rem); }
  .testimonials-grid .testimonial { flex: 1 1 calc(50% - 0.75rem); }
  .value-item { flex: 1 1 calc(50% - 0.75rem); }
  .contact-info { flex: 1 1 calc(50% - 1rem); }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .header__inner { padding: 1rem 2rem; }

  .nav { display: flex; }

  .nav__list {
    position: static;
    flex-direction: row;
    gap: 0.25rem;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .nav__link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
  }

  .nav__link:hover,
  .nav__link--active {
    background: var(--bg-alt);
  }

  .menu-toggle { display: none; }

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

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

  .footer__col { flex: 1 1 200px; }

  .process { flex-direction: row; flex-wrap: wrap; }
  .process-step { flex: 1 1 calc(50% - 1rem); }
}

@media (min-width: 1024px) {
  .hero__content { max-width: 600px; }

  .section { padding: 5rem 0; }

  .testimonials-grid .testimonial { flex: 1 1 calc(33.333% - 1rem); }
}

/* 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-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
