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

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-secondary: #0f172a;
  --color-accent: #3b82f6;
  --color-light: #f8fafc;
  --color-gray: #64748b;
  --color-gray-light: #e2e8f0;
  --color-white: #ffffff;
  --color-success: #10b981;
  --color-warm: #f59e0b;
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-secondary);
  background: var(--color-white);
}

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

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

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

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

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

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

p { margin-bottom: 1rem; }

/* Header */
.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.nav-desktop {
  display: none;
}

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

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

.nav-desktop a:hover {
  color: var(--color-primary);
}

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

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

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  transition: transform 0.3s, opacity 0.3s;
}

.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 */
.nav-mobile {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  overflow-y: auto;
}

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

.nav-mobile ul {
  list-style: none;
  padding: 1rem;
}

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

.nav-mobile a {
  display: block;
  padding: 1rem;
  color: var(--color-secondary);
  font-size: 1.125rem;
}

.nav-mobile a:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

.hero p {
  font-size: 1.125rem;
  opacity: 0.95;
}

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

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

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

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

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

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

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

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

.section-title p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

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

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

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

.service-card h3 {
  color: var(--color-primary);
}

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

.service-description {
  color: var(--color-gray);
  flex-grow: 1;
}

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

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

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

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

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

.stat-item {
  padding: 1.5rem;
}

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

.section-dark .stat-number {
  color: var(--color-accent);
}

.stat-label {
  color: var(--color-gray);
  font-size: 1rem;
}

.section-dark .stat-label {
  color: var(--color-gray-light);
}

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

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

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  color: var(--color-secondary);
}

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

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

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

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

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

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

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

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

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

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

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

.step-content p {
  color: var(--color-gray);
  margin: 0;
}

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

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

.trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--color-success);
}

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

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

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

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

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

.value-content p {
  color: var(--color-gray);
  margin: 0;
}

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

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

.cta-section p {
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.contact-item p {
  color: var(--color-gray);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--color-secondary);
  color: var(--color-gray-light);
  padding: 3rem 0 1.5rem;
}

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

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

.footer-brand p {
  color: var(--color-gray);
  margin: 0;
}

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

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

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

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

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

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

/* Legal Pages */
.legal-content {
  padding: 3rem 0;
}

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

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

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

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  color: var(--color-gray);
}

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

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

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

.thank-you-content svg {
  width: 100px;
  height: 100px;
  color: var(--color-success);
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  color: var(--color-success);
  margin-bottom: 1rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  font-size: 0.9375rem;
}

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

.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.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

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

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

.modal-header h3 {
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  padding: 0.5rem;
}

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

.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(--color-gray-light);
}

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

.cookie-option-info h4 {
  margin-bottom: 0.25rem;
}

.cookie-option-info p {
  color: var(--color-gray);
  font-size: 0.875rem;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

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

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

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

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

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

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

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Alternating Blocks */
.alt-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

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

.alt-block-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

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

.industry-tag {
  padding: 0.75rem 1.5rem;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--color-secondary);
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem 0;
}

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

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

.comparison-row {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.comparison-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem;
  font-weight: 600;
}

.comparison-cells {
  display: flex;
}

.comparison-cell {
  flex: 1;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--color-gray-light);
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-cell.highlight {
  background: var(--color-light);
}

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

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

.milestone-item {
  position: relative;
}

.milestone-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.milestone-year {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.milestone-text {
  color: var(--color-gray);
}

/* Team Section */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

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

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

.team-name {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-gray);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--color-gray);
  margin: 0;
}

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

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

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

.benefit-item p {
  margin: 0;
}

/* Page Header */
.page-header {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

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

.page-header p {
  color: var(--color-gray-light);
  margin: 0;
}

/* Desktop Styles */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.75rem; }

  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .hero {
    padding: 6rem 0;
  }

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

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

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .section {
    padding: 5rem 0;
  }

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

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

  .stats-grid {
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-item {
    flex: 1;
  }

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

  .testimonial-card {
    flex: 1;
  }

  .feature-block,
  .alt-block {
    flex-direction: row;
    align-items: center;
  }

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

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

  .feature-visual,
  .alt-block-visual {
    flex: 1;
  }

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

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

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

  .footer-brand {
    flex: 2;
  }

  .footer-nav {
    flex: 1;
  }

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

  .cookie-text {
    flex: 1;
  }

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

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

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

  .team-card {
    flex: 1;
  }

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

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

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

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

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