:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fee2e2;
  --green: #00ad36;
  --green-dark: #008a2b;
  --green-light: #dcfce7;
  --dark-bg: #0a0a0a;
  --card-bg: #141414;
  --card-border: #262626;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --text-primary: #fafafa;
  --text-secondary: #a3a3a3;
  --gradient-red: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  --gradient-green: linear-gradient(135deg, #00ad36 0%, #15803d 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, 
    rgba(220, 38, 38, 0.03) 0%, 
    var(--dark-bg) 20%, 
    var(--dark-bg) 80%, 
    rgba(0, 173, 54, 0.03) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

header {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(0, 173, 54, 0.3));
}

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

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.25rem;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 173, 54, 0.3);
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 173, 54, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link,
.mobile-nav-cta {
  padding: 1rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: var(--card-border);
}

.mobile-nav-cta {
  background: var(--green);
  color: var(--white);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
  padding: 8rem 1.5rem 6rem;
  background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(0, 173, 54, 0.15) 0%, transparent 50%),
              linear-gradient(180deg, rgba(220, 38, 38, 0.05) 0%, transparent 30%, rgba(0, 173, 54, 0.05) 70%, transparent 100%),
              var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.03) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(0, 173, 54, 0.03) 50%, transparent 100%);
  background-size: 100px 100px, 100px 100px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 173, 54, 0.1);
  border: 1px solid rgba(0, 173, 54, 0.3);
  color: var(--green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.desktop-only {
  display: inline;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
  background: var(--card-bg);
  color: var(--white);
  border: 1px solid var(--card-border);
}

.btn-secondary:hover {
  background: var(--gray-800);
  border-color: var(--gray-700);
}

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

.btn-outline:hover {
  background: var(--card-bg);
  border-color: var(--gray-600);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.05rem;
}

/* ========================================
   TRUST INDICATORS
======================================== */

.trust-indicators {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 2.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ========================================
   SECTION STYLES
======================================== */

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   AUDIT SECTION
======================================== */

.section-audit {
  padding: 6rem 1.5rem;
  background: var(--dark-bg);
}

.audit-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.audit-content.expanded {
  max-height: 10000px;
  opacity: 1;
  padding: 4rem 0;
}

.audit-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.audit-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.benefit-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: all 0.3s;
}

.benefit-item:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 173, 54, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-icon svg {
  color: var(--green);
}

.benefit-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.audit-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section:last-of-type {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--card-border);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--gray-900);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 173, 54, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.privacy-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 173, 54, 0.05);
  border: 1px solid rgba(0, 173, 54, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.privacy-notice svg {
  color: var(--green);
  flex-shrink: 0;
}

.form-status {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(0, 173, 54, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 173, 54, 0.3);
}

.form-status.error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ========================================
   SERVICES SECTION
======================================== */

.section-services {
  padding: 6rem 1.5rem;
  background: var(--card-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--dark-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--gray-600);
  box-shadow: var(--shadow-lg);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  color: var(--red);
}

.service-header-content {
  flex: 1;
}

.service-header-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-summary {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-toggle {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.service-toggle svg {
  color: var(--text-secondary);
}

.service-card.active .service-toggle {
  transform: rotate(180deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
}

.service-card.active .service-content {
  max-height: 2000px;
  padding: 0 2rem 2rem;
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--card-border);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-cta {
  padding-top: 1rem;
}

/* ========================================
   RESULTS SECTION
======================================== */

.section-results {
  padding: 6rem 1.5rem;
  background: var(--dark-bg);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.result-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  text-align: center;
  transition: all 0.3s;
}

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

.result-metric {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.result-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.result-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.methodology-section {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2rem;
}

.methodology-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--white);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.methodology-step {
  position: relative;
  padding-left: 4rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.methodology-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.methodology-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
======================================== */

.section-contact {
  padding: 6rem 1.5rem;
  background: var(--card-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--dark-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-method:hover {
  border-color: var(--green);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 173, 54, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  color: var(--green);
}

.contact-method-content {
  flex: 1;
}

.contact-method-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-method-link {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-method-link:hover {
  color: var(--green);
}

.response-time {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 173, 54, 0.05);
  border: 1px solid rgba(0, 173, 54, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.response-time svg {
  color: var(--green);
  flex-shrink: 0;
}

.contact-form-wrapper {
  background: var(--dark-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--card-border);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  filter: drop-shadow(0 0 15px rgba(0, 173, 54, 0.3));
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
}

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

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .desktop-only {
    display: none;
  }

  .section-audit,
  .section-services,
  .section-results,
  .section-contact {
    padding: 4rem 1.5rem;
  }

  .audit-form-container {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .results-grid,
  .audit-benefits,
  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .result-metric {
    font-size: 3rem;
  }
}
