/* ===================================
   Blue Phoenix Processing - Enhanced Styles
   Modern, professional design inspired by
   leading payment processing websites
   =================================== */

/* CSS Variables */
:root {
  /* Colors - Professional Blue Phoenix palette */
  --primary: #0B2A5F;
  --primary-light: #1B5CB2;
  --primary-dark: #061935;
  --accent: #FF7A18;
  --accent-light: #FFA04D;
  
  /* Neutrals */
  --text: #0F1A2A;
  --text-light: #5B6B7C;
  --text-muted: #8B9AAD;
  --bg: #FFFFFF;
  --bg-alt: #F6F8FB;
  --bg-soft: #EDF1F7;
  --border: #E5EAF1;
  --border-light: #F0F3F8;
  
  /* Semantic colors */
  --success: #16A34A;
  --success-bg: #F0FDF4;
  --error: #DC2626;
  --error-bg: #FEF2F2;
  --warning: #F59E0B;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Spacing & sizing */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --max-width-lg: 1400px;
  
  /* Typography */
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: Manrope, var(--font-sans);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

/* Skip Link */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 9999;
  font-weight: 700;
  color: var(--primary);
}

/* ===================================
   UTILITY BAR
   =================================== */
.utility {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-size: 0.875rem;
  padding: 0.75rem 0;
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.utility__left,
.utility__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.utility__item {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.utility__item strong {
  font-weight: 800;
  color: #fff;
}

.utility__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  display: none;
}

.utility__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.utility__btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  max-width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand__logo {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  animation: logoLoad 1.6s ease-out;
}

@keyframes logoLoad {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: none;
}

.nav {
  display: none;
  gap: 2rem;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.header__cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.nav a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

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

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

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

.brand:hover .brand__logo {
  transform: scale(1.05);
}

/* Mobile Toggle */
.navToggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.625rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: all 0.2s ease;
}

.navToggle:hover {
  background: var(--bg-alt);
  border-color: var(--primary-light);
}

.navToggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navToggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navToggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navToggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobileNav {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem 0;
}

.mobileNav__inner {
  padding: 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.mobileNav__link {
  display: block;
  padding: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 800;
  color: var(--text);
  transition: all 0.2s ease;
}

.mobileNav__link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateX(4px);
}

.mobileNav__actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 42, 95, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 42, 95, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: #fff;
  color: var(--primary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn--large {
  padding: 1.125rem 2rem;
  font-size: 1.0625rem;
}

.btn--full {
  width: 100%;
}

/* ===================================
   FULL-BLEED HERO BANNER
   =================================== */
.hero-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 600px;
  overflow: hidden;
}

.hero-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
}

.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 42, 95, 0.85) 0%,
    rgba(27, 92, 178, 0.75) 100%
  );
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-banner__content {
  color: #fff;
  max-width: 800px;
  text-align: left;
  padding: 2rem 0;
}

.hero-banner__content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-banner__content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(27, 92, 178, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(27, 92, 178, 0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(27, 92, 178, 0.4);
  }
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero__benefits {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}

.hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero__benefits svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__benefits strong {
  display: block;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.hero__benefits span {
  display: block;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.hero__trust span {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}

/* Hero Media */
.hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__main-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay-stats {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.stat {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 120px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat__value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Strip */
.trust-strip {
  margin-top: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip__inner {
  display: grid;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-item svg {
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.trust-item span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===================================
   PRODUCT SHOWCASE
   =================================== */
.section--showcase {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: 3rem 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.showcase-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.showcase-item:hover img {
  transform: scale(1.05);
}

.showcase-label {
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  text-align: center;
  font-family: var(--font-display);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--intro {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.kicker svg {
  width: 16px;
  height: 16px;
}

/* Intro Section */
.intro-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.intro-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-top: 1rem;
}

.value-props {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-prop {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.value-prop:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.value-prop__icon {
  margin-bottom: 1.5rem;
}

.value-prop h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.value-prop p {
  color: var(--text-light);
  line-height: 1.7;
}

.cta-centered {
  text-align: center;
  margin-top: 3rem;
}

/* ===================================
   COMPARISON SECTION
   =================================== */
.section--comparison {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  padding: 5rem 0;
}

.comparison-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.comparison-card--featured {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}

.comparison-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}

.comparison-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.comparison-header--traditional h3 {
  color: var(--error);
}

.comparison-header--blue h3 {
  color: var(--primary);
}

.comparison-flow {
  display: grid;
  gap: 1rem;
}

.flow-step {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.flow-step__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.flow-step__title {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.flow-step__detail {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.flow-step--positive {
  background: var(--success-bg);
  border-color: var(--success);
}

.flow-step--negative {
  background: var(--error-bg);
  border-color: var(--error);
}

.highlight-positive {
  color: var(--success);
  font-weight: 900;
  font-size: 1.125rem;
}

.highlight-negative {
  color: var(--error);
  font-weight: 900;
  font-size: 1.125rem;
}

.flow-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 800;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.section--how {
  background: #fff;
}

.how-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.how-card {
  background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.how-card__icon {
  margin: 0 auto 1.5rem;
  width: fit-content;
}

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

.how-card p {
  line-height: 1.7;
}

/* ===================================
   EQUIPMENT SECTION
   =================================== */
.equipment-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.equipment-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.equipment-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--success), #10B981);
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.equipment-image {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.equipment-image img {
  max-height: 240px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.05);
}

.equipment-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.equipment-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.equipment-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--success);
}

.equipment-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.equipment-features {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.equipment-features li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
  font-weight: 600;
}

.equipment-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 900;
}

.equipment-best-for {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.equipment-best-for strong {
  display: block;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.equipment-best-for span {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ===================================
   PRICING TABLE
   =================================== */
.section--pricing {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
}

.pricing-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 900;
  border-bottom: 2px solid var(--border);
}

.pricing-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr {
  transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: var(--bg-alt);
}

.table-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.table-header-content--featured {
  color: var(--primary);
}

.pricing-table .negative {
  color: var(--error);
  font-weight: 700;
}

.pricing-table .positive {
  color: var(--success);
  font-weight: 900;
  font-size: 1.125rem;
}

/* Savings Calculator */
.savings-calculator {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  box-shadow: var(--shadow-xl);
}

.savings-calculator h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
}

.savings-calculator > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.calculator {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.calculator-input {
  margin-bottom: 2rem;
}

.calculator-input label {
  display: block;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

#monthly-sales {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(27, 92, 178, 0.2);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

#monthly-sales::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#monthly-sales::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-container {
  position: relative;
}

.slider-container input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-container input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-value {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  font-family: var(--font-display);
}

.calculator-result {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.result-label {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.result-value {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-annual {
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.95;
}

/* ===================================
   BUSINESS TYPES
   =================================== */
.business-types-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.business-type-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.business-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.business-type-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.business-type-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.business-type-card p {
  line-height: 1.7;
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-icon {
  margin: 0 auto 1.5rem;
  width: fit-content;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  line-height: 1.7;
}

/* ===================================
   OWNER INTRO SECTION
   =================================== */
.section--owner-intro {
  background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
  padding: 5rem 0;
}

.owner-intro {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.owner-intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  margin: 0 auto;
}

.owner-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

.owner-intro__content {
  max-width: 600px;
}

.owner-intro__content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.owner-intro__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===================================
   PROCESS STEPS
   =================================== */
.section--process {
  background: var(--bg-alt);
}

.process-steps {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.process-step {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  font-family: var(--font-display);
  box-shadow: 0 4px 12px rgba(27, 92, 178, 0.25);
}

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

.process-content p {
  line-height: 1.7;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.section--testimonials {
  background: #fff;
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.testimonial-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.testimonial-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.testimonial-content {
  padding: 2rem;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: Georgia, serif;
}

.testimonial-author strong {
  display: block;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===================================
   FAQ SECTION
   =================================== */
.section--faq {
  background: #fff;
}

.faq-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  transition: color 0.2s ease;
}

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

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary-light);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  line-height: 1.8;
  color: var(--text-light);
}

/* ===================================
   APPLICATION FORM
   =================================== */
.section--form {
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  padding: 5rem 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.form-header__badge {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.form-header__badge span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-header h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.form-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin: 0;
}

.application-form {
  padding: 3rem 2rem;
}

.form-row {
  margin-bottom: 1.5rem;
}

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

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

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

.required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(27, 92, 178, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230B2A5F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

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

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-error.active {
  display: block;
}

.form-consent {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  cursor: pointer;
}

.form-consent a {
  color: var(--primary-light);
  text-decoration: underline;
}

.form-submit {
  margin-bottom: 1.5rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn-loader {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-loader svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
  border: 2px solid #86efac;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fca5a5;
}

.form-message ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

.form-message li {
  padding: 0.25rem 0;
}

.form-footer {
  padding: 2rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.ssl-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #22c55e;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 639px) {
  .form-header {
    padding: 2rem 1.5rem;
  }
  
  .form-header h2 {
    font-size: 1.875rem;
  }
  
  .form-header p {
    font-size: 1rem;
  }
  
  .application-form {
    padding: 2rem 1.5rem;
  }
  
  .form-row--half {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===================================
   LEGAL PAGES (Terms & Privacy)
   =================================== */
.legal-page {
  padding: 8rem 0 6rem;
  background: var(--bg-soft);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.legal-content h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 1rem;
}

.legal-intro {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-section h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.legal-section ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

.legal-section strong {
  color: var(--text);
  font-weight: 600;
}

.legal-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
  text-align: center;
}

.legal-footer p {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .legal-page {
    padding: 6rem 0 4rem;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.125rem;
  }
  
  .legal-section ul {
    margin-left: 1.5rem;
  }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.section--contact {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

.contact-card {
  background: #fff;
  padding: 2.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.contact-card--featured {
  border-color: var(--primary-light);
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}

.contact-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.contact-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ===================================
   FINAL CTA
   =================================== */
.section--final-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 5rem 0;
}

.final-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--primary-light);
}

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer__tagline {
  margin-top: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.footer__links h4,
.footer__contact h4 {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer__links a,
.footer__contact a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
  font-weight: 600;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--accent-light);
}

.footer__contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.footer__hours {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer__disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 900px;
  margin: 0 auto;
}

/* ===================================
   FLOATING ACTIONS
   =================================== */
   RESPONSIVE DESIGN
   =================================== */

@media (min-width: 640px) {
  .utility__dot {
    display: block;
  }
  
  .brand__logo {
    width: 160px;
  }
  
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .business-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-banner {
    height: 500px;
  }
}

@media (min-width: 768px) {
  .brand__logo {
    width: 180px;
  }
  
  .brand__name {
    display: block;
  }
  
  .owner-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }
  
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-banner {
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .nav {
    display: flex;
    gap: 1rem;
  }
  
  .nav a {
    font-size: 0.8125rem;
  }
  
  .header__cta {
    gap: 0.5rem;
  }
  
  .header__cta .btn {
    padding: 0.5625rem 0.875rem;
    font-size: 0.8125rem;
  }
  
  .brand__name {
    display: none;
  }
  
  .navToggle {
    display: none;
  }
  
  .brand__logo {
    width: 200px;
  }
  
  .hero {
    padding: 5rem 0 4rem;
  }
  
  .trust-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .value-props {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .equipment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .business-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-banner {
    height: 700px;
  }
}

@media (min-width: 1200px) {
  .brand__logo {
    width: 220px;
  }
  
  .brand__name {
    display: block;
  }
  
  .nav {
    gap: 2.25rem;
  }
  
  .nav a {
    font-size: 1rem;
  }
  
  .header__cta {
    gap: 1rem;
  }
  
  .header__cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 639px) {
  .header__cta .btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
  
  .brand__logo {
    width: 120px;
  }
  
  .brand__name {
    display: none;
  }
  
  .header__inner {
    gap: 0.75rem;
  }
  
  .hero-banner {
    height: 500px;
  }
  
  .hero-banner__content h1 {
    font-size: 1.75rem;
  }
  
  .hero-banner__content p {
    font-size: 1rem;
  }
  
  .hero-banner__cta {
    flex-direction: column;
  }
  
  .hero-banner__cta .btn {
    width: 100%;
  }
  
  .hero__overlay-stats {
    position: static;
    transform: none;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stat {
    min-width: 140px;
  }
  
  .final-cta__actions {
    flex-direction: column;
  }
  
  .final-cta__actions .btn {
    width: 100%;
  }
  
  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }
  
  .floating-btn span {
    display: none;
  }
  
  .floating-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .utility,
  .header,
  .floating-actions,
  .btn {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

/* Mobile overflow fix */
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .savings-calculator,
  .calculator,
  .contact-card,
  .section {
    max-width: 100%;
    overflow: hidden;
  }
  
  .savings-calculator {
    padding: 1.5rem 1rem;
  }
  
  .calculator {
    padding: 1.5rem 1rem;
  }
  
  .btn--large {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    width: 100%;
    max-width: 100%;
  }
}

/* Logo Divider */
.logo-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: var(--bg-alt);
}

.logo-divider img {
  width: 500px;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .logo-divider {
    padding: 3rem 1.5rem;
  }
  
  .logo-divider img {
    width: 360px;
  }
}
