/* ===================================================
   Total Petrol d.o.o. — Main Stylesheet
   =================================================== */

/* --- 1. Custom Properties --- */
:root {
  --blue: #2B6CB0;
  --blue-dark: #1A4B80;
  --blue-light: #3B82C4;
  --blue-pale: #EBF4FF;
  --green: #38A169;
  --green-dark: #2D8659;
  --gold: #EDB230;
  --red: #C53030;
  --text: #2D3748;
  --text-light: #718096;
  --heading: #1A202C;
  --bg: #FFFFFF;
  --bg-alt: #F7FAFC;
  --bg-dark: #1A202C;
  --bg-dark-lighter: #2D3748;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: .25s ease;
  --container: 1200px;
  --nav-height: 72px;
}

/* --- 2. Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(43,108,176,.55);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 2000;
  background: var(--blue-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
}

/* --- 3. Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- 4. Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- 5. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
  color: var(--blue-dark);
}
.btn-outline-dark {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: var(--heading);
}
.btn-gold:hover {
  background: #d9a029;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --- 6. Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all .3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.navbar:not(.scrolled) .nav-logo .logo-dark {
  display: none !important;
}
.navbar.scrolled .nav-logo .logo-white {
  display: none !important;
}
.navbar.scrolled .nav-logo .logo-dark {
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: .925rem;
  color: #fff;
  position: relative;
  padding: 4px 0;
}
.navbar.scrolled .nav-links a {
  color: var(--text);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.navbar.scrolled .nav-links a:hover { color: var(--blue); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all var(--transition);
  cursor: pointer;
}
.navbar.scrolled .lang-switch {
  color: var(--text);
  border-color: var(--border);
}
.lang-switch:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}
.nav-cta {
  padding: 10px 22px;
  font-size: .875rem;
}
.navbar:not(.scrolled) .nav-cta {
  border-color: #fff;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  border: 0;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all .3s ease;
  border-radius: 2px;
}
.navbar.scrolled .hamburger span,
.hamburger.active span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  padding: 8px 0;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .lang-switch {
  color: var(--text);
  border-color: var(--border);
  padding: 10px 24px;
}
.mobile-menu .btn-primary {
  color: #fff;
  padding: 12px 32px;
}

/* --- 7. Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../img/hero/hero-bg.jpg') center/cover no-repeat;
  background-image: image-set(
    url('../img/hero/hero-bg.webp') type('image/webp'),
    url('../img/hero/hero-bg.jpg') type('image/jpeg')
  );
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,43,74,.55) 0%, rgba(26,75,128,.45) 40%, rgba(30,90,148,.4) 70%, rgba(15,43,74,.55) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .825rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero h1 span {
  color: var(--gold);
}
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- 8. Services --- */
.services {
  background: var(--bg-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-light);
  font-size: .925rem;
  line-height: 1.65;
}

/* --- 9. Products --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.product-body {
  padding: 24px;
}
.product-body h3 {
  margin-bottom: 8px;
}
.product-body p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.6;
}

/* --- 10. Partners --- */
.partners {
  background: var(--bg-dark);
  padding: 48px 0;
}
.partners .container {
  text-align: center;
}
.partners-label {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 28px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partner-name {
  color: rgba(255,255,255,.85);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.partner-desc {
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.partner-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}

/* --- 11. About --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin-top: 12px;
  border-radius: 2px;
}
.about-text p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-text p + p {
  margin-top: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- 12. Clients --- */
.clients {
  background: var(--bg-alt);
}
.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.client-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition);
}
.client-logo:hover img {
  transform: scale(1.05);
}
.client-logo span {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- 13. CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-note {
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  font-size: .9rem !important;
  color: rgba(255,255,255,.7) !important;
}

/* --- 14. Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: 6px;
  color: var(--heading);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,108,176,.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select:invalid {
  color: var(--text-light);
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  width: 100%;
  padding: 14px;
  justify-content: center;
}
.form-submit:disabled {
  opacity: .72;
  cursor: not-allowed;
}
.form-meta {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--text-light);
  font-size: .85rem;
  text-align: center;
}
.form-meta a {
  font-weight: 600;
}
.form-status {
  text-align: center;
  margin-top: 16px;
  font-size: .9rem;
  display: none;
}
.form-status.success {
  display: block;
  color: var(--green);
}
.form-status.error {
  display: block;
  color: var(--red);
}
.contact-form[aria-busy="true"] .form-group input,
.contact-form[aria-busy="true"] .form-group textarea,
.contact-form[aria-busy="true"] .form-group select {
  opacity: .9;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-mobile-actions {
  display: none;
  gap: 10px;
}
.contact-mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: #fff;
  color: var(--heading);
  font-weight: 600;
  text-align: center;
}
.contact-mobile-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
}
.contact-item p,
.contact-item a {
  font-size: .925rem;
  color: var(--text-light);
}
.contact-item a:hover {
  color: var(--blue);
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 1;
  min-height: 240px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.mobile-sticky-cta {
  display: none;
}

/* --- 15. Footer --- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}
.footer h4 {
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.footer-contact-item a {
  color: inherit;
}
.footer-contact-item a:hover {
  color: #fff;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,.4);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-legal {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

/* --- 16. Scroll Animations --- */
.fade-up {
  opacity: 1;
  transform: none;
}
.js-enabled .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-enabled .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.js-enabled .fade-up:nth-child(2) { transition-delay: .1s; }
.js-enabled .fade-up:nth-child(3) { transition-delay: .2s; }
.js-enabled .fade-up:nth-child(4) { transition-delay: .3s; }
.js-enabled .fade-up:nth-child(5) { transition-delay: .4s; }
.js-enabled .fade-up:nth-child(6) { transition-delay: .5s; }

/* --- 17. Responsive --- */
@media (max-width: 1024px) {
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  .section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-right .lang-switch {
    font-size: .8rem;
    padding: 4px 10px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Grids */
  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-details {
    display: none;
  }

  /* Partners */
  .partners-logos {
    gap: 32px;
  }
  .partner-divider {
    display: none;
  }
  .partner-name {
    font-size: 1.15rem;
  }

  /* CTA */
  .cta-banner {
    padding: 48px 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile sticky conversion CTA */
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 12px rgba(0,0,0,.1);
  }
  .mobile-sticky-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
  }
  .mobile-sticky-call {
    background: var(--blue);
    color: #fff;
  }
  .mobile-sticky-call:hover {
    background: var(--blue-dark);
    color: #fff;
  }
  .mobile-sticky-quote {
    background: var(--gold);
    color: var(--heading);
  }
  .mobile-sticky-quote:hover {
    background: #d9a029;
    color: var(--heading);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }
  .partners-logos {
    flex-direction: column;
    gap: 24px;
  }
  .mobile-sticky-cta {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-up,
  .js-enabled .fade-up {
    opacity: 1;
    transform: none;
  }
}
