:root {
  --brand-blue: #011a41;
  --brand-blue-light: #0d2d64;
  --brand-green: #00a651;
  --brand-green-light: rgba(0, 166, 81, 0.1);
  --text-body: #4b5563;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --font-size-xs: 0.85rem;
  --font-size-sm: 0.95rem;
  --font-size-base: 1rem;
  --font-size-md: 1.2rem;
  --font-size-xl: 1.8rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-lg-plus: 1.05rem;
  --font-size-sm-plus: 0.9rem;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --letter-spacing-wide: 0.05em;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-5: 1.25rem;
  --space-5px: 5px;
  --size-icon-md: 60px;
  --content-lg: 800px;
  --accent-star: #f59e0b;
  --radius-md: 1rem;
  --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);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

* {
  margin: var(--space-0);
  padding: var(--space-0);
  box-sizing: border-box;
}

html {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text-body);
  background-color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-blue);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--brand-blue);
  transition: all var(--transition-fast);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.bg-light {
  background-color: var(--bg-light);
}
.text-green {
  color: var(--brand-green);
}
.uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-size: var(--font-size-xs);
}
.fw-700 {
  font-weight: var(--font-weight-bold);
}

.container {
  max-width: 1280px;
  margin: var(--space-0) auto;
  padding: var(--space-0) var(--space-8);
}

/* Custom Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-logo-img {
  width: 190px;
  max-width: 100%;
  height: auto;
}
.brand-logo-footer {
  filter: brightness(0) invert(1);
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: padding var(--transition-normal);
  padding: var(--space-3) var(--space-0);
}
.site-header.scrolled {
  padding: var(--space-3) var(--space-0);
  box-shadow: var(--shadow-sm);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.nav-links a {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-green);
}

/* Dropdown logic */
.dropdown {
  position: relative;
}
.dropdown-trigger {
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: color var(--transition-fast);
}
.dropdown:hover .dropdown-trigger {
  color: var(--brand-green);
}
.dropdown-arrow {
  transition: transform var(--transition-fast);
}
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: var(--space-4) var(--space-0);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-normal);
  z-index: 100;
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}
.dropdown-content a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}
.dropdown-content a i {
  color: var(--brand-green);
  font-size: var(--font-size-md);
}
.dropdown-content a:hover {
  background: var(--bg-light);
  color: var(--brand-blue);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.phone-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-weight-bold);
  color: var(--brand-blue);
}
.phone-link:hover {
  color: var(--brand-green);
}
.phone-link i {
  font-weight: 400;
  color: var(--brand-green);
  font-size: var(--font-size-md);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--brand-blue);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: 50px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}
.btn-primary {
  background-image: linear-gradient(135deg, #00b85c 0%, #00984c 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 166, 81, 0.1);
}
.btn-primary:hover {
  background-image: linear-gradient(135deg, #00984c 0%, #00793d 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 139, 67, 0.2);
}
.btn-outline {
  background-color: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.btn-outline:hover {
  background-color: var(--brand-blue);
  color: var(--white);
}

/* Hero */
.hero {
  padding: var(--space-24) var(--space-0) var(--space-24);
  background:
    linear-gradient(135deg, rgba(1, 26, 65, 0.9), rgba(13, 45, 100, 0.85)),
    url("../images/hero-bg.jpg") center/cover;
  color: var(--white);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}
.hero-content h1 span {
  color: #7be0a3;
}
.hero-content p {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: var(--space-8);
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.btn-outline-hero {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-meta {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-6);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 4px solid rgba(255, 255, 255, 0.1);
}
.trust-badge {
  position: absolute;
  bottom: calc(20px * -1);
  left: calc(20px * -1);
  background: var(--white);
  color: var(--brand-blue);
  padding: var(--space-4) var(--space-6);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-weight: var(--font-weight-bold);
}
.trust-badge i {
  color: var(--brand-green);
  font-size: var(--font-size-3xl);
}

/* Stats */
.stats {
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-12) var(--space-0);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stat-item h3 {
  font-size: var(--font-size-3xl);
  color: var(--brand-blue);
  margin-bottom: 0.2rem;
  font-weight: 800;
}
.stat-item h3 span {
  color: var(--brand-green);
}
.stat-item p {
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-size: var(--font-size-xs);
  color: #9ca3af;
}

/* Global Section Pads */
.section-pad {
  padding: var(--space-24) var(--space-0);
}
.section-head {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-head span {
  color: var(--brand-green);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-2);
}
.section-head h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

/* Our Products - Featured Layout */
.service-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.featured-card {
  padding: var(--space-0) !important;
  display: flex;
  flex-direction: column;
}
.featured-card .card-img-wrap {
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) var(--space-0) var(--space-0);
}
.featured-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.featured-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.featured-info {
  padding: var(--space-10);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-info p {
  margin-bottom: auto;
}

/* Our Products - Small Cards */
.supplemental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(calc(var(--space-5px) * -1));
}
.product-icon {
  width: 50px;
  height: 50px;
  background: var(--brand-green-light);
  color: var(--brand-green);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--space-6);
  margin-bottom: var(--space-5);
}
.product-card h3,
.product-card h4 {
  margin-bottom: var(--space-3);
}
.product-card p {
  margin-bottom: var(--space-6);
  color: var(--text-body);
  font-size: var(--font-size-sm);
}
.product-link {
  font-weight: var(--font-weight-semibold);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
}
.product-link:hover {
  color: var(--brand-green);
}
.product-link i {
  transition: transform var(--transition-normal);
}
.product-link:hover i {
  transform: translateX(var(--space-1));
}

/* Why Us Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.why-list li {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.why-icon {
  font-size: var(--font-size-xl);
  color: var(--brand-green);
  background: var(--brand-green-light);
  width: var(--size-icon-md);
  height: var(--size-icon-md);
  border-radius: 50%;
  display: flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-list h4 {
  margin-bottom: 3px;
  font-size: var(--font-size-md);
}

/* Pre-footer CTA */
.cta-banner {
  background: var(--brand-green);
  padding: var(--space-16) var(--space-0);
  color: var(--white);
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-2xl);
}
.cta-actions {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}
.cta-actions .btn-outline {
  background-color: var(--white);
  color: var(--brand-blue);
  border: none;
}
.cta-actions .btn-outline:hover {
  background-color: #e6e6e6;
}

/* Page Header */
.page-header {
  padding: var(--space-16) var(--space-0);
  background: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}
.page-header p {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 700px;
  margin: var(--space-0) auto;
}

/* Legal Pages */
.section {
  padding: var(--space-16) var(--space-0);
}
.legal-container {
  max-width: var(--content-lg);
}
.legal-content {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-10);
}
.legal-content h2 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-3);
}
.legal-content h2:first-of-type {
  margin-top: var(--space-0);
}
.legal-content p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.legal-content ul {
  list-style: disc;
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}
.legal-content li {
  margin-bottom: var(--space-2);
}
.legal-content strong {
  color: var(--brand-blue);
  font-weight: var(--font-weight-semibold);
}
.legal-content a {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: var(--space-1);
}
.legal-content a:hover {
  color: #008b43;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-layout.reverse .split-visual {
  order: 2;
}
.split-layout.reverse .split-content {
  order: 1;
}
.split-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.split-content .subtitle {
  color: var(--brand-green);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-2);
}
.split-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-6);
}
.split-content p {
  color: var(--text-body);
  font-size: 1.1rem;
  margin-bottom: var(--space-8);
}
.split-content .feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.split-content .feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #1f2937;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}
.split-content .feature-list i {
  color: var(--brand-green);
  align-self: flex-start;
  font-size: 1.25rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

.team-member:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(calc(var(--space-5px) * -1));
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--transition-normal);
}

.team-member:hover .team-img-wrap img {
  transform: scale(1.05);
}

/* Hover overlay + Social Links */
.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(1, 26, 65, 0.9), transparent);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-12) var(--space-0) var(--space-6);
  opacity: 0;
  transition: all var(--transition-normal);
}

.team-member:hover .team-social {
  bottom: 0;
  opacity: 1;
}

.team-social a {
  color: var(--white);
  background: var(--brand-green);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: var(--font-size-md);
  transition: background var(--transition-fast);
  text-decoration: none;
}

.team-social a:hover {
  background: var(--brand-blue);
}

.team-info {
  padding: var(--space-6);
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-1);
  color: var(--brand-blue);
}

.team-info span {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--brand-green);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}
.contact-info-card h3 {
  font-size: 2.2rem;
  margin-bottom: var(--space-2);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}
.contact-detail i {
  color: var(--brand-green);
  font-size: var(--font-size-xl);
  background: var(--brand-green-light);
  width: var(--size-icon-md);
  height: var(--size-icon-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-1);
}
.contact-detail p {
  color: var(--text-body);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-detail a:hover {
  color: var(--brand-green);
}

.contact-form-card {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}
.contact-form-card h3 {
  font-size: 2.2rem;
  margin-bottom: var(--space-2);
}
.contact-form-card > p {
  color: var(--text-body);
  margin-bottom: var(--space-10);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--brand-blue);
}

.form-control {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: var(--font-size-base);
  transition: all var(--transition-normal);
  background-color: var(--bg-light);
  box-sizing: border-box;
  color: #1f2937;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px var(--brand-green-light);
  background-color: var(--white);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.form-submit-wrap {
  text-align: center;
  margin-top: var(--space-8);
}
.form-submit-btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  justify-content: center;
}
.form-privacy-note {
  font-size: var(--font-size-xs);
  color: #9ca3af;
  text-align: center;
  margin-top: var(--space-4);
  margin-bottom: var(--space-0);
}
.form-status {
  font-size: var(--font-size-sm);
  margin-top: var(--space-3);
  margin-bottom: var(--space-0);
  min-height: 1.4em;
}
.form-status.is-success {
  color: #0f9b77;
}
.form-status.is-error {
  color: #b42318;
}
.form-status.is-loading {
  color: var(--text-body);
}
.form-submit-btn.is-sending {
  opacity: 0.8;
  pointer-events: none;
}

/* Footer */
.site-footer {
  background-color: var(--brand-blue);
  color: var(--white);
  padding: var(--space-12) var(--space-0) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}
.footer-text {
  color: #b9c3d4;
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
}
.footer-links h4 {
  color: var(--white);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-md);
}
.footer-links ul li {
  margin-bottom: var(--space-3);
}
.footer-links a {
  color: #b9c3d4;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.footer-links a:hover {
  color: var(--brand-green);
  padding-left: var(--space-5px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: var(--font-size-sm);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #acb4c2;
}
.footer-copy {
  color: inherit;
}
.footer-copy a {
  color: var(--brand-green);
}
.footer-copy a:hover {
  color: #008b43;
  text-decoration: underline;
  text-underline-offset: var(--space-1);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.footer-legal-links a {
  color: #acb4c2;
}
.footer-legal-links a:hover {
  color: var(--brand-green);
}

@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
  .contact-form-card {
    padding: var(--space-8);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-0);
  }
  .form-row .form-group-wrap {
    margin-bottom: var(--space-6);
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .split-layout.reverse .split-visual,
  .split-layout .split-visual {
    order: -1;
  }
  .page-header h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .site-header .brand-logo-img {
    width: 160px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }
  .nav-links.active {
    display: flex;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
  }
  .dropdown:hover .dropdown-content {
    display: none;
    transform: none;
  }
  .dropdown:hover .dropdown-arrow {
    transform: none;
  }
  .dropdown:hover .dropdown-trigger {
    color: var(--brand-blue);
  }
  .dropdown.open .dropdown-content {
    display: block;
  }
  .dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .dropdown.open .dropdown-trigger {
    color: var(--brand-green);
  }

  .header-cta .quote-btn,
  .header-cta .phone-link {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    grid-template-columns: 1fr;
  }
  .section {
    padding: var(--space-12) var(--space-0);
  }
  .legal-content {
    padding: var(--space-6);
  }
  .legal-content h2 {
    font-size: var(--font-size-md);
    margin-top: var(--space-8);
  }
  .stats-grid,
  .service-featured,
  .supplemental-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    flex-wrap: wrap;
  }
  .section-head {
    margin-bottom: var(--space-8);
  }
  .section-head h2,
  .stat-item h3 {
    font-size: var(--font-size-2xl);
  }
  .hero {
    padding: var(--space-24) var(--space-0) var(--space-12);
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
  .hero-content p {
    font-size: var(--font-size-base);
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .trust-badge {
    position: static;
    margin-top: var(--space-4);
    width: fit-content;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}
