﻿:root {
  --primary: #0b1d3a;
  --primary-light: #162f56;
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-light: #fef3c7;
  --tech-blue: #0284c7;
  --tech-blue-light: #e0f2fe;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Montserrat', var(--font-sans);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 10px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--slate-700);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 46px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-800);
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--tech-blue);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  background-color: var(--accent);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background-color 0.2s, transform 0.1s;
}

.nav-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--slate-900);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b1d3a 0%, #0f172a 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.85rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: #fbbf24;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.trust-badge-item svg {
  width: 20px;
  height: 20px;
  stroke: #38bdf8;
  flex-shrink: 0;
}

.hero-image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: var(--slate-800);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 1.25rem;
  border-radius: 10px;
}

.hero-floating-badge p {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 0.2rem;
}

.hero-floating-badge strong {
  color: #fbbf24;
  font-size: 0.95rem;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--tech-blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-600);
}

/* Value Props / Benefits */
.benefits-section {
  padding: 5.5rem 0;
  background-color: var(--slate-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--tech-blue);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Products & Services */
.services-section {
  padding: 5.5rem 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.service-thumb {
  height: 210px;
  overflow: hidden;
  position: relative;
  background-color: var(--slate-100);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.04);
}

.service-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-meta {
  padding-top: 0.85rem;
  border-top: 1px solid var(--slate-100);
  font-size: 0.82rem;
  color: var(--slate-500);
  font-weight: 600;
}

/* How it works */
.process-section {
  padding: 5.5rem 0;
  background-color: var(--primary);
  color: var(--white);
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-desc {
  color: #94a3b8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  position: relative;
}

.process-step {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* About / Operator Section */
.about-section {
  padding: 5.5rem 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
}

.about-img-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}

.about-content p {
  margin-bottom: 1.2rem;
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-entity-box {
  background-color: var(--slate-50);
  border-left: 4px solid var(--tech-blue);
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--slate-700);
}

.about-entity-box strong {
  color: var(--slate-900);
}

/* Testimonials / Social Proof */
.proof-section {
  padding: 5.5rem 0;
  background-color: var(--slate-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.test-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.test-quote {
  font-style: italic;
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.test-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-900);
}

.test-info p {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* FAQ Section */
.faq-section {
  padding: 5.5rem 0;
  background-color: var(--white);
}

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

.faq-item {
  border-bottom: 1px solid var(--slate-200);
  padding: 1.25rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

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

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

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

.faq-answer {
  display: none;
  padding: 0.75rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

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

/* Lead Gen Form Section */
.form-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #0b1d3a 0%, #1e293b 100%);
  color: var(--white);
}

.form-wrapper {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  color: var(--slate-800);
  padding: 3rem;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--slate-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tech-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.phone-input-wrap {
  display: flex;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  background-color: var(--slate-100);
  border: 1.5px solid var(--slate-200);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-600);
}

.phone-input-wrap input {
  border-radius: 0 8px 8px 0;
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-group label {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.5;
  cursor: pointer;
}

.consent-group a {
  text-decoration: underline;
  color: var(--tech-blue);
}

.form-submit-btn {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}

.form-submit-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.form-microcopy {
  font-size: 0.78rem;
  color: var(--slate-500);
  text-align: center;
  margin-top: 0.75rem;
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  text-align: center;
  display: none;
}

.form-status.success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Footer */
.site-footer {
  background-color: var(--slate-900);
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--slate-800);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin: 1.25rem 0;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-brand img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: #94a3b8;
}

.footer-col a:hover {
  color: #38bdf8;
}

.footer-operator-box {
  border-top: 1px solid var(--slate-800);
  padding: 2rem 0;
  margin-bottom: 2rem;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #64748b;
}

.footer-operator-box strong {
  color: #cbd5e1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  z-index: 900;
  transition: transform 0.2s, background-color 0.2s;
}

.back-to-top:hover {
  transform: translateY(-2px);
  background-color: var(--accent-hover);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--slate-900);
  color: var(--white);
  padding: 1.25rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  z-index: 2000;
  display: none;
  border-top: 1px solid var(--slate-700);
}

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

.cookie-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  max-width: 820px;
  line-height: 1.5;
}

.cookie-text a {
  color: #38bdf8;
  text-decoration: underline;
}

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

.btn-cookie-accept {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}

.btn-cookie-accept:hover {
  background-color: var(--accent-hover);
}

.btn-cookie-decline {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

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

/* Legal Pages Styling */
.legal-page-header {
  background: var(--primary);
  color: var(--white);
  padding: 3.5rem 0;
}

.legal-page-header h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-breadcrumb {
  font-size: 0.88rem;
  color: #94a3b8;
}

.legal-breadcrumb a {
  color: #38bdf8;
}

.legal-content {
  padding: 4.5rem 0;
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--slate-700);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 2.2rem 0 1rem;
  border-bottom: 2px solid var(--slate-100);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-800);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p, .legal-content ul {
  margin-bottom: 1.2rem;
}

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

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

.legal-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .benefits-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-image-card img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--slate-100);
  }
  .main-nav.active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .benefits-grid, .services-grid, .testimonials-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 1.75rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
