:root {
  --background: #f8fafc;
  --foreground: #0f172a;
  --card: #ffffff;
  --muted: #f1f5f9;
  --muted-text: #64748b;
  --primary: #ff9500;
  --primary-dark: #e38300;
  --secondary: #0f172a;
  --secondary-soft: #172033;
  --border: #e2e8f0;
  --success: #166534;
  --success-bg: #f0fdf4;
  --error: #b91c1c;
  --error-bg: #fef2f2;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  display: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.center {
  margin-top: 48px;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary);
  color: #111827;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button-large {
  min-height: 60px;
  padding: 18px 32px;
  font-size: 1.05rem;
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.event-copy h2,
.about-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.feature-copy p,
.event-copy p,
.about-copy p {
  margin: 0;
  color: var(--muted-text);
  font-size: 1.08rem;
}

.section-dark .section-heading p,
.event-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.section-reveal {
  opacity: 1;
  transform: none;
}

.js .section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 8px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-header {
  height: 68px;
}

.brand-logo-footer {
  height: 112px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-lockup-header {
  padding: 5px 0;
}

.brand-lockup-footer {
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
}

.brand-mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-logo-brand {
  display: block;
  width: auto;
  max-width: min(44vw, 318px);
  height: 68px;
  object-fit: contain;
}

.brand-lockup-footer .brand-logo-brand {
  max-width: min(70vw, 360px);
  height: 84px;
}

.brand-wordmark {
  --brand-word-width: 168px;
  display: grid;
  gap: 2px;
}

.brand-wordmark-main {
  color: #073a7c;
  display: flex;
  justify-content: space-between;
  width: var(--brand-word-width);
  font-size: 2.06rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-wordmark-sub {
  display: grid;
  grid-template-columns: 1fr var(--brand-word-width) 1fr;
  align-items: center;
  gap: 6px;
}

.brand-line {
  height: 2px;
  background: #dc241f;
}

.brand-fire,
.brand-solutions {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-wordmark-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--brand-word-width);
  line-height: 1;
}

.brand-wordmark-main > span:last-child {
  margin-right: -0.04em;
}

.brand-fire {
  color: #dc241f;
}

.brand-solutions {
  color: #737373;
}

.brand-space {
  flex: 0 0 0.26em;
}

.brand-icon {
  display: inline-flex;
  color: var(--primary);
  font-size: 2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--foreground);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-tagline {
  color: var(--muted-text);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a:not(.button) {
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

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

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-menu {
  position: fixed;
  z-index: 30;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  width: min(320px, 86vw);
  height: 100%;
  margin-left: auto;
  padding: 32px 24px;
  background: var(--card);
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.24);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.mobile-menu nav a:not(.button) {
  font-size: 1.15rem;
  font-weight: 700;
}

.mobile-contact {
  margin-top: auto;
  color: var(--muted-text);
}

.mobile-contact p,
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 90vh;
  align-items: center;
  overflow: hidden;
  padding: 144px 0 72px;
  color: #ffffff;
}

.hero > img,
.approach-section > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero > img {
  object-position: 65% center;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72) 56%, rgba(15, 23, 42, 0.32));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 149, 0, 0.24);
  border-radius: 999px;
  background: rgba(255, 149, 0, 0.1);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 840px;
  margin: 0 0 24px;
  font-size: clamp(3.1rem, 7vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.hero-copy {
  max-width: 680px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.services,
.feature-section,
.about-section,
.why-section,
.contact-section {
  padding: 128px 0;
}

.service-grid,
.approach-grid,
.why-grid {
  display: grid;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(255, 149, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.service-card-highlight {
  border-color: rgba(255, 149, 0, 0.55);
  background: linear-gradient(180deg, rgba(255, 149, 0, 0.16), rgba(255, 255, 255, 0.06));
}

.new-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--primary);
  color: #111827;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255, 149, 0, 0.42);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(255, 149, 0, 0.18);
  color: var(--primary);
  font-size: 1.5rem;
}

.service-card h3,
.approach-card h3,
.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p,
.approach-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-copy p {
  margin-bottom: 24px;
  font-size: 1.12rem;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.08rem;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--primary);
  font-size: 1.4rem;
}

.offset-image {
  position: relative;
}

.offset-image::before {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border-radius: 16px;
  background: rgba(255, 149, 0, 0.2);
  content: "";
}

.offset-image img,
.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.event-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.event-image {
  min-height: 360px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(32px, 6vw, 72px);
}

.event-copy p {
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-bottom: 40px;
}

.bullet-grid span {
  position: relative;
  padding-left: 18px;
}

.bullet-grid span::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.about-copy .lead {
  margin-bottom: 28px;
  color: var(--muted-text);
  font-size: 1.25rem;
}

.about-copy h2 span,
.contact-section h2 span {
  color: var(--primary);
}

.about-copy p:not(.lead) {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.about-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

.approach-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
}

.approach-section > img {
  object-position: 20% center;
}

.approach-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(15, 23, 42, 0.86);
}

.approach-content {
  position: relative;
  z-index: 2;
}

.approach-grid {
  grid-template-columns: repeat(4, 1fr);
}

.approach-card {
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.62);
  text-align: center;
  backdrop-filter: blur(10px);
}

.approach-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border: 2px solid rgba(255, 149, 0, 0.42);
  border-radius: 999px;
  color: var(--primary);
  font-size: 1.9rem;
}

.approach-card h3::after {
  display: block;
  width: 32px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--primary);
  content: "";
}

.why-section {
  background: rgba(255, 149, 0, 0.05);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  padding: 32px 28px;
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  background: var(--card);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.why-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.why-card p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.94rem;
}

.contact-section {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.contact-container {
  max-width: 1120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.contact-sidebar {
  display: grid;
  align-content: start;
  gap: 32px;
}

.urgent-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--secondary);
  color: #ffffff;
}

.urgent-card > svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--primary);
  font-size: 1.5rem;
}

.urgent-card h3,
.contact-details h3,
.form-card h3 {
  margin: 0 0 12px;
}

.urgent-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.contact-details p {
  color: var(--muted-text);
  font-size: 1.05rem;
}

.contact-details span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 149, 0, 0.1);
  color: var(--primary);
}

.form-card {
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.75);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.form-card h3 {
  margin-bottom: 28px;
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--foreground);
  font: inherit;
  font-weight: 400;
  padding: 10px 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(255, 149, 0, 0.24);
  outline-offset: 1px;
}

.form-status {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-status.success {
  border: 1px solid #bbf7d0;
  background: var(--success-bg);
  color: var(--success);
}

.form-status.error {
  border: 1px solid #fecaca;
  background: var(--error-bg);
  color: var(--error);
}

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

.site-footer {
  padding: 64px 0 32px;
  background: var(--secondary);
  color: #f8fafc;
}

.site-footer .brand-name {
  color: #ffffff;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer .brand-tagline {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: #ffffff;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.cookie-actions a {
  color: var(--muted-text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.legal-back-link {
  color: var(--muted-text);
  font-weight: 800;
}

.legal-back-link:hover {
  color: var(--primary);
}

.legal-page {
  padding: 72px 0 96px;
}

.legal-content {
  max-width: 860px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.legal-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 149, 0, 0.12);
  color: #9a5800;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
}

.legal-updated {
  margin: 12px 0 42px;
  color: var(--muted-text);
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.legal-content section + section {
  margin-top: 28px;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: #334155;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 1.3rem;
}

.legal-content a {
  color: #9a5800;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--muted);
  color: var(--foreground);
}

.legal-table code {
  font-family: Menlo, Consolas, monospace;
  font-size: 0.88rem;
}

.legal-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.legal-footer-links a {
  color: var(--muted-text);
  font-weight: 800;
}

.legal-footer-links a:hover {
  color: var(--primary);
}

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

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

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .menu-close {
    align-self: flex-end;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.78));
  }

  .service-grid,
  .approach-grid,
  .why-grid,
  .split,
  .event-section,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .approach-grid,
  .why-grid {
    gap: 18px;
  }

  .event-section {
    min-height: 0;
  }

  .event-copy {
    padding: 56px 24px;
  }

  .about-image {
    max-height: 520px;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 76px;
    padding: 8px 0 11px;
  }

  .brand-logo-header {
    height: 58px;
  }

  .brand-logo-footer {
    height: 96px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-logo-brand {
    max-width: calc(100vw - 124px);
    height: 50px;
  }

  .brand-lockup-footer .brand-logo-brand {
    max-width: min(76vw, 320px);
    height: 64px;
  }

  .brand-wordmark {
    --brand-word-width: 142px;
  }

  .brand-wordmark-main {
    font-size: 1.6rem;
  }

  .brand-fire,
  .brand-solutions {
    font-size: 0.56rem;
  }

  .hero {
    min-height: 65vh;
    padding: 112px 0 56px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.4rem);
  }

  .services,
  .feature-section,
  .about-section,
  .why-section,
  .contact-section,
  .approach-section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .field-grid,
  .bullet-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .legal-page {
    padding: 36px 0 64px;
  }

  .legal-content {
    padding: 30px 20px;
  }

  .legal-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 18px;
  }
}
