/* ============================================================
   FRESH WATER NORWAY — FLEXITANKS PAGE
   Design tokens matching freshwaternorway.com
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --teal:       #50C3C8;
  --teal-dark:  #3FAAB0;
  --navy:       #1E3666;
  --navy-light: #2a4a80;
  --white:      #FFFFFF;
  --gray-bg:    #ECECEC;
  --gray-light: #F5F5F5;
  --text-dark:  #1E3666;
  --text-body:  #333333;
  --text-muted: #666666;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill:50px;
  --shadow:     0 4px 24px rgba(30,54,102,0.10);
  --shadow-lg:  0 8px 40px rgba(30,54,102,0.16);
  --font-head:  'Barlow Condensed', 'Arial Black', sans-serif;
  --font-body:  'Barlow', Arial, sans-serif;
  --nav-h:      72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-teal {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-full { width: 100%; }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-1px);
}
.hero-badge {
  display: inline-block;
  background: rgba(30,54,102,0.3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(30,54,102,0.08);
  transition: box-shadow 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--teal); }
.nav-btn {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-bg);
  gap: 16px;
}
.nav-mobile a {
  font-weight: 500;
  color: var(--navy);
  font-size: 1rem;
}
.nav-mobile.open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  margin-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.hero-left {
  background: var(--teal);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-accent {
  color: var(--navy);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  max-width: 380px;
  line-height: 1.6;
}
.hero-right {
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-subtitle.white { color: rgba(255,255,255,0.85); }
.title-underline {
  width: 56px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---------- SECTIONS ---------- */
.section-light {
  background: var(--gray-light);
  padding: 96px 0;
}
.section-white {
  background: var(--white);
  padding: 96px 0;
}
.infographic-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.infographic-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--navy);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}
.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ---------- TWO-COL LAYOUT ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.col-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.col-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}
.col-image {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rounded-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.img-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- DARK SPLIT SECTION ---------- */
.section-dark-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.section-dark-split.reverse-split {
  direction: rtl;
}
.section-dark-split.reverse-split > * {
  direction: ltr;
}
.split-image {
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content {
  background: var(--navy);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.split-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.accent-teal { color: var(--teal); }
.split-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.process-step.reverse {
  grid-template-columns: 80px 1fr 1fr;
}
.process-step.reverse .step-content { order: 2; }
.process-step.reverse .step-image { order: 1; }
.step-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.35;
  line-height: 1;
  user-select: none;
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-icon-wrap {
  width: 56px;
  height: 56px;
}
.step-svg {
  width: 100%;
  height: 100%;
}
.step-content h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}
.step-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ---------- LOGISTICS DIAGRAM ---------- */
.logistics-diagram {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.diagram-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.diagram-img {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* ---------- DISCHARGE SECTION ---------- */
.section-teal {
  background: var(--teal);
  padding: 96px 0;
}
.discharge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.discharge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.discharge-icon {
  width: 64px;
  height: 64px;
}
.discharge-icon svg {
  width: 100%;
  height: 100%;
}
.discharge-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.discharge-card p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---------- SPECS TABLE ---------- */
.specs-table {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 8px;
}
.specs-table h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.specs-table table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid var(--gray-bg);
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table th {
  text-align: left;
  padding: 10px 12px 10px 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
  width: 42%;
  vertical-align: top;
}
.specs-table td {
  padding: 10px 0;
  color: var(--text-body);
  font-size: 0.88rem;
  vertical-align: top;
}

/* ---------- GROUND BAG PHOTOS ---------- */
.ground-bag-photos {
  margin-top: 64px;
}
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.photo-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.photo-item .img-caption {
  margin-top: 10px;
}

/* ---------- NAVY SECTION ---------- */
.section-navy {
  background: var(--navy);
  padding: 96px 0;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-bottom: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--teal);
  opacity: 0.4;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 32px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 3px var(--teal);
}
.timeline-content h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.timeline-content p {
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.7;
}
.logistics-note {
  display: flex;
  gap: 16px;
  background: rgba(80,195,200,0.12);
  border: 1px solid rgba(80,195,200,0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  align-items: flex-start;
}
.note-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.note-text {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}
.note-text strong {
  color: var(--teal);
}

.logistics-footnote {
  margin-top: 24px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.6;
  padding: 0 4px;
}

/* ---------- USE CASES ---------- */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.use-case-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.use-case-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.use-case-card h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.use-case-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ---------- PHOTO MOSAIC ---------- */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 320px;
}
.mosaic-item {
  overflow: hidden;
  position: relative;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mosaic-item:hover img {
  transform: scale(1.04);
}
.mosaic-dark {
  position: relative;
}
.mosaic-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mosaic-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.mosaic-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3);
  width: fit-content;
  letter-spacing: 0.06em;
}
.mosaic-teal {
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.mosaic-text h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
}

/* ---------- CONTACT SECTION ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info .section-title {
  text-align: left;
  margin-bottom: 0;
}
.contact-info .title-underline {
  margin: 0;
}
.contact-info p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.contact-item {
  font-size: 0.97rem;
  color: var(--text-body);
}
.contact-item a {
  color: var(--teal-dark);
  font-weight: 500;
}
.contact-item a:hover {
  text-decoration: underline;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-bg);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--teal);
}
.checkbox-label a {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: rgb(80, 195, 200);
  padding: 53px 40px 40px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* Top row: logo | nav | contact */
.site-footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer-logo {
  display: flex;
  align-items: flex-start;
}
.site-footer-logo img {
  width: 140px;
  height: auto;
  display: block;
}
.site-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer-nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer-nav a:hover {
  opacity: 0.75;
}
.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer-contact p {
  color: #fff;
  font-size: 0.95rem;
  margin: 0;
}
/* Bottom row: copyright + addresses */
.site-footer-bottom {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.site-footer-addresses {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}
.site-footer-address p {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer-address .addr-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer-addresses {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .process-step {
    grid-template-columns: 60px 1fr;
  }
  .process-step .step-image {
    display: none;
  }
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 48px 28px;
  }
  .hero-right {
    height: 280px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .col-image { order: -1; }

  .section-dark-split {
    grid-template-columns: 1fr;
  }
  .section-dark-split.reverse-split {
    direction: ltr;
  }
  .split-image {
    height: 280px;
  }
  .split-content {
    padding: 48px 28px;
  }

  .discharge-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid-2 {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic-item {
    height: 240px;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-light,
  .section-white,
  .section-teal,
  .section-navy {
    padding: 64px 0;
  }

  .logistics-diagram {
    padding: 28px 16px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
  .step-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-left {
    padding: 40px 20px;
  }
  .split-content {
    padding: 40px 20px;
  }
  .discharge-card {
    padding: 28px 20px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .specs-table {
    padding: 20px 16px;
  }
}
