/* Base Reset & Variables */
:root {
  --color-primary: #1a3a5c;
  --color-secondary: #c9a962;
  --color-accent: #2d5a7b;
  --color-text: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-bg: #fafafa;
  --color-bg-alt: #f0f4f7;
  --color-bg-dark: #1a3a5c;
  --color-white: #ffffff;
  --color-border: #e0e0e0;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', 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);
  --radius: 8px;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

p {
  margin-bottom: 1rem;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

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

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

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

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

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

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

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile li {
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile li:last-child {
  border-bottom: none;
}

.nav-mobile a {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 500;
}

.nav-mobile a:hover {
  background-color: var(--color-bg-alt);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  gap: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  flex: 1 1 100%;
  transition: all var(--transition);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

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

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

/* Service Cards */
.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: 0;
}

.service-card p {
  color: var(--color-text-light);
  flex: 1;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-secondary);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.feature-block-content {
  flex: 1;
}

.feature-block-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-block-visual svg {
  max-width: 300px;
  width: 100%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Statistics */
.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 45%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-secondary);
  display: block;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

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

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

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

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

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

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

.faq-question:hover {
  background-color: var(--color-bg-alt);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius);
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-author {
  font-weight: 600;
}

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

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

.value-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-content p {
  color: var(--color-text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* Comparison Section */
.comparison-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comparison-item {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

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

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

.comparison-item.highlight {
  border: 2px solid var(--color-secondary);
}

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

.contact-info-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  margin: 0;
}

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

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

.legal-content h2:first-child {
  margin-top: 0;
}

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

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

/* Thank You Page */
.thank-you-section {
  text-align: center;
  padding: 5rem 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

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

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

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

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

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

/* Milestones */
.milestones-wrapper {
  position: relative;
  padding-left: 2rem;
}

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

.milestone-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 2rem;
}

.milestone-item:last-child {
  padding-bottom: 0;
}

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

.milestone-year {
  font-weight: bold;
  color: var(--color-secondary);
  font-size: 1.1rem;
}

.milestone-item h4 {
  margin-bottom: 0.25rem;
}

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

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

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

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

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

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

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

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

.cookie-banner-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

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

.cookie-banner .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

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

.btn-cookie-accept:hover {
  background-color: #b8963d;
}

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

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

.btn-cookie-settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  padding: 0.625rem 0.5rem;
}

.btn-cookie-settings:hover {
  color: var(--color-white);
}

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

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

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

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

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

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--color-text-light);
}

.cookie-modal-close:hover {
  color: var(--color-text);
}

.cookie-modal-body {
  padding: 1.5rem;
}

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

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

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

.cookie-category h4 {
  margin: 0;
  font-size: 1rem;
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

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

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

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

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

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

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  flex: 1;
  min-width: 120px;
}

/* Alternating Content Blocks */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.content-block:nth-child(even) {
  flex-direction: column;
}

.content-block-text {
  flex: 1;
}

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

.content-block-visual svg {
  max-width: 280px;
  width: 100%;
}

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

.highlight-panel h2 {
  color: var(--color-primary);
}

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

/* Trust Indicators */
.trust-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.trust-item {
  text-align: center;
  flex: 1 1 45%;
}

.trust-item svg {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

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

.trust-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* About Page Team */
.team-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-member {
  text-align: center;
  flex: 1 1 100%;
}

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

.team-avatar svg {
  width: 60px;
  height: 60px;
}

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

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

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

/* Benefits List */
.benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

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

  .hero { padding: 5rem 0; }
  .hero h1 { font-size: 2.5rem; }

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

  .stat-item { flex: 1 1 20%; }

  .team-member { flex: 1 1 calc(50% - 1rem); }

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

  .trust-item { flex: 1 1 20%; }

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

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

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: block; }
  .nav-mobile { display: none !important; }

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

  .section { padding: 5rem 0; }

  .feature-block {
    flex-direction: row;
  }

  .feature-block.reverse {
    flex-direction: row-reverse;
  }

  .content-block {
    flex-direction: row;
  }

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

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

  .cookie-banner p {
    flex: 1;
    margin-right: 2rem;
  }

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

  .contact-info-card {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }

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

  .team-member { flex: 1 1 calc(33.333% - 1.33rem); }

  .footer-brand { flex: 1 1 30%; }
  .footer-nav { flex: 1 1 20%; }

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

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

  .comparison-wrapper {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }
}

/* 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;
  }
}

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

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

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