/* ============================================
   EK Recycling Ltd - Redesigned Stylesheet
   Inspired by ecope.co.uk design language
   Clean, illustrated, open, natural
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand colors from logo */
  --brand-green: #2d9d5e;
  --brand-teal: #4daab5;
  --brand-navy: #1a2744;

  /* Accent - olive/yellow-green like ecope */
  --accent: #93b023;
  --accent-hover: #7d9a1a;
  --accent-light: #e8f0c8;

  /* Landscape/illustration palette */
  --sky: #87ceeb;
  --sky-light: #c4e4f5;
  --hill-green: #8db94e;
  --hill-dark: #6a9e2e;
  --tree-green: #5a9e30;
  --tree-light: #c5d940;

  /* Neutrals — white matched to logo JPEG background (#fbfbfb) */
  --white: #fbfbfb;
  --off-white: #f8f8f8;
  --gray-bg: #f2f2f2;
  --gray-100: #eeeeee;
  --gray-200: #dddddd;
  --gray-300: #cccccc;
  --gray-400: #999999;
  --gray-500: #777777;
  --gray-600: #555555;
  --gray-700: #333333;
  --gray-800: #222222;

  /* Green panel */
  --panel-green: #8db94e;
  --panel-green-dark: #6a9e2e;

  /* Text */
  --text-dark: #333333;
  --text-body: #666666;
  --text-light: #999999;

  /* Typography */
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 140px;
  --header-height-mobile: 80px;

  /* Transitions */
  --ease: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p {
  margin-bottom: 1rem;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Header & Navigation (ecope-style) --- */
.site-header {
  position: relative;
  background: var(--white);
  z-index: 1000;
  padding: 8px 0;
}

.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-header.fixed .logo img {
  height: 80px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
}

/* Pipe-separated nav like ecope */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-desktop a {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  border-right: 1px solid var(--gray-300);
  transition: color var(--ease);
  white-space: nowrap;
}

.nav-desktop a:last-child {
  border-right: none;
  padding-right: 0;
}

.nav-desktop a:first-child {
  padding-left: 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent);
}

/* No CTA button in nav - clean like ecope */
.nav-cta {
  color: var(--text-dark) !important;
  font-weight: 400 !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 8px 0 8px 20px !important;
}

.nav-cta:hover {
  color: var(--accent) !important;
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.nav-cta svg {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-dark);
  padding: 12px 24px;
  transition: color var(--ease);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
}

/* --- Buttons (ecope olive/green style) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* --- Illustrated Landscape Hero (ecope signature) --- */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding-top: 20px;
}

.hero-landscape {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
  max-width: var(--max-width);
}

.hero-landscape svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Below-hero split content (like ecope) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: -2px;
}

.hero-text {
  padding: 60px 60px 60px 0;
}

.hero-text h1 {
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.25;
}

.hero-text h1 .accent {
  color: var(--accent);
  font-weight: 300;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* Big stat panel (green background like ecope) */
.hero-stat-panel {
  background: var(--panel-green);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-stat-panel::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hero-stat-panel .big-number {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-panel .big-label {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* --- About Intro (two-column asymmetric like ecope) --- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro-left h2 {
  color: var(--accent);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
}

.intro-right p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Section Styles --- */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-lg {
  padding: 120px 0;
}

.section-gray {
  background: var(--gray-bg);
}

.section-green {
  background: var(--panel-green);
  color: var(--white);
}

.section-green h2,
.section-green h3,
.section-green h4 {
  color: var(--white);
}

.section-green p {
  color: rgba(255,255,255,0.85);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header h2 .accent {
  color: var(--accent);
}

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

/* --- Cards (ecope light gray bg, rounded) --- */
.card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 40px;
  border: none;
  box-shadow: none;
  transition: all var(--ease);
}

.card:hover {
  background: var(--gray-100);
  transform: none;
  box-shadow: none;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 64px;
  height: 64px;
  color: var(--accent);
}

.card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- 4Rs Interactive Section --- */
.four-rs-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.four-rs-tab {
  padding: 12px 28px;
  background: var(--gray-bg);
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font-main);
}

.four-rs-tab:hover {
  color: var(--accent);
}

.four-rs-tab.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.four-rs-content {
  display: none;
  animation: fadeSlideUp 0.4s ease;
}

.four-rs-content.active {
  display: block;
}

.four-rs-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.four-rs-visual {
  position: relative;
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.four-rs-visual svg {
  width: 140px;
  height: 140px;
  color: var(--accent);
}

.four-rs-info h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.four-rs-info h3 .accent {
  color: var(--accent);
}

.four-rs-info p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.four-rs-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.four-rs-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.four-rs-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- SVG Landscape Divider --- */
.landscape-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.landscape-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Two-Column Content (ecope asymmetric) --- */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-content.reverse {
  direction: rtl;
}

.split-content.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: 12px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Big Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

/* --- Contact Form --- */
.contact-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group label .required {
  color: #c33;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0;
  transition: all var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

/* --- Contact Info Cards --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-info-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  border: none;
  transition: all var(--ease);
}

.contact-info-card:hover {
  background: var(--gray-100);
}

.contact-info-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 auto 16px;
}

.contact-info-card h4 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 140px;
  object-fit: contain;
}

.footer-brand p {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--text-body);
  font-size: 0.88rem;
  transition: color var(--ease);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 0.8rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--accent);
  font-size: 0.8rem;
}

.footer-legal a:hover {
  color: var(--accent-hover);
}

.footer-reg {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid var(--gray-100);
  background: var(--off-white);
}

/* --- Page Header (inner pages - simpler than hero) --- */
.page-header {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}

.page-header h1 {
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.page-header h1 .accent {
  color: var(--accent);
}

.page-header p {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* --- Policy Page Styles --- */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-light);
  color: var(--text-dark);
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.policy-content p,
.policy-content li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
}

.policy-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.policy-content ul li {
  margin-bottom: 8px;
}

.policy-meta {
  background: var(--gray-bg);
  border-radius: 4px;
  padding: 16px 24px;
  margin-bottom: 36px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- CTA Banner (green like ecope) --- */
.cta-banner {
  background: var(--panel-green);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.cta-banner h2 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--panel-green);
}

.cta-banner .btn-primary:hover {
  background: var(--gray-bg);
  color: var(--panel-green);
}

/* --- Process Steps --- */
.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--white);
}

.process-step-content {
  flex: 1;
  max-width: calc(50% - 60px);
}

/* --- Illustrated Section Divider SVG helper --- */
.section-illustration {
  text-align: center;
  padding: 20px 0;
}

.section-illustration svg {
  max-width: 100%;
  height: auto;
}

/* --- Accreditation/license links (like ecope about page) --- */
.accreditation-links a {
  display: block;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.accreditation-links a:hover {
  color: var(--accent-hover);
}

/* --- Back to top button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-hover);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.accent { color: var(--accent); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-label svg {
  width: 16px;
  height: 16px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-stat-panel {
    padding: 40px;
  }

  .intro-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .four-rs-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .process-timeline::before {
    left: 24px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
    gap: 16px;
  }

  .process-step-number {
    left: 24px;
    transform: translateX(-50%);
  }

  .process-step-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .section {
    padding: 50px 0;
  }

  .card-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  .hero-text {
    padding: 40px 0;
  }

  .hero-stat-panel .big-number {
    font-size: 4rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-item .stat-number {
    font-size: 2.5rem;
  }

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

  .cta-banner {
    padding: 40px 20px;
  }

  .four-rs-tabs {
    gap: 6px;
  }

  .four-rs-tab {
    padding: 10px 18px;
    font-size: 0.78rem;
  }

  .logo img {
    height: 100px;
  }

  .footer-brand .logo img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero-landscape {
    min-height: 200px;
    border-radius: 8px;
  }

  .card {
    padding: 28px 20px;
  }

  .logo img {
    height: 90px;
  }

  .footer-brand .logo img {
    height: 110px;
  }
}
