/* ============================================
   OREXIS LLC — Corporate Website
   White + Green + Modern Sans-Serif
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green-50:  #F0FDF4;
  --green-100: #DCFCE7;
  --green-200: #BBF7D0;
  --green-300: #86EFAC;
  --green-400: #4ADE80;
  --green-500: #22C55E;
  --green-600: #16A34A;
  --green-700: #15803D;
  --green-800: #166534;
  --green-900: #14532D;
  --green-950: #052E16;

  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-300:  #D1D5DB;
  --gray-400:  #9CA3AF;
  --gray-500:  #6B7280;
  --gray-600:  #4B5563;
  --gray-700:  #374151;
  --gray-800:  #1F2937;
  --gray-900:  #111827;
  --gray-950:  #030712;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-h: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green-500);
  display: inline-block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--green-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}
.btn-outline-green:hover {
  background: var(--green-600);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--green-800);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-800);
}
.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gray-900);
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 800;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: var(--gray-600);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gray-900); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.85rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 46, 22, 0.88) 0%, rgb(20 45 30 / 75%) 40%, rgb(21 110 54 / 60%) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 640px;
  padding: 80px 0 140px;
}
.hero-content .eyebrow {
  color: var(--green-300);
}
.hero-content .eyebrow::before { background: var(--green-400); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-content h1 span {
  color: var(--green-300);
}
.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--white);
  border-top: 3px solid var(--green-500);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--green-600);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(5, 46, 22, 0.92) 0%,
    rgba(21, 128, 61, 0.78) 100%
  );
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--green-300); }
.page-hero .eyebrow::before { background: var(--green-400); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--green-300); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }
.section-gray { background: var(--gray-50); }
.section-green-light { background: var(--green-50); }
.section-green-dark {
  background: var(--green-900);
  color: var(--white);
}
.section-header { max-width: 580px; margin-bottom: 56px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }
.section-green-dark .section-header p { color: rgba(255,255,255,0.65); }
.section-green-dark .section-header h2 { color: var(--white); }

.green-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ============================================
   ABOUT (Home)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green-600);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  font-family: var(--font-heading);
}
.about-image-badge .badge-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-image-badge .badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
}
.about-text .eyebrow { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--gray-600); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.5rem 0 2rem;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}
.about-feat .check {
  width: 22px;
  height: 22px;
  background: var(--green-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat .check svg { width: 14px; height: 14px; color: var(--green-600); }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--green-300);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.08);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--green-600);
  border-color: var(--green-600);
}
.service-icon svg { width: 24px; height: 24px; color: var(--green-600); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-600);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.service-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

/* Service Detail (services page) */
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail-item:last-child { border-bottom: none; }
.sd-left {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.sd-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 8px;
}
.sd-left h3 { font-size: 1.35rem; }
.service-detail-item p { color: var(--gray-600); }

/* ============================================
   INDUSTRIES / SECTORS
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  cursor: default;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.industry-card:hover img {
  transform: scale(1.05);
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,46,22,0.85) 0%, rgba(5,46,22,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.industry-card-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.industry-card-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   WHY US / VALUE PROPS
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}
.value-item:hover {
  border-color: var(--green-200);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.06);
}
.v-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--green-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-icon svg { width: 22px; height: 22px; color: var(--green-600); }
.value-item h4 { margin-bottom: 4px; font-family: var(--font-heading); font-weight: 600; }
.value-item p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 0; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(5, 46, 22, 0.92) 0%,
    rgba(20, 83, 45, 0.88) 100%
  );
  z-index: 1;
}
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-info-block {
  background: var(--green-900);
  border-radius: 20px;
  padding: 44px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-block::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.contact-info-block h3 { margin-bottom: 2rem; color: var(--white); }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--green-300); }
.contact-item-text span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-item-text p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.5; }
.contact-item-text a { color: var(--green-300); }
.contact-item-text a:hover { color: var(--green-200); }

.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { color: var(--gray-500); margin-bottom: 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  transition: all 0.25s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* Status messages */
.form-status {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-800);
}
.form-status.error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 1rem; color: var(--white); }
.footer-brand .logo-mark { background: var(--green-600); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--green-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
}
.footer-links a { color: rgba(255,255,255,0.4); margin-left: 24px; }
.footer-links a:hover { color: var(--green-400); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { padding: 80px 0; }
.legal-content .container { max-width: 780px; }
.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; color: var(--gray-900); }
.legal-content h3 { font-size: 1.1rem; margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { color: var(--gray-600); font-size: 0.95rem; line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.5rem; }
.legal-content a { color: var(--green-600); border-bottom: 1px solid var(--green-200); }
.legal-content a:hover { color: var(--green-800); }
.legal-date {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-intro-text h2 { margin-bottom: 1.25rem; }
.about-intro-text p { color: var(--gray-600); }
.about-values-block {
  background: var(--green-900);
  border-radius: 20px;
  padding: 40px;
}
.about-value-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-value-row:last-child { border-bottom: none; }
.av-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-400);
  width: 30px;
  flex-shrink: 0;
}
.about-value-row p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 16px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  font-size: 0.88rem;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.cookie-inner p { margin: 0; }
.cookie-inner a { color: var(--green-400); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-buttons .btn { padding: 8px 18px; font-size: 0.8rem; border-radius: 8px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid, .about-intro-grid { gap: 40px; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 24px;
    gap: 0;
    border-top: 1px solid var(--gray-200);
  }
  .main-nav.open a {
    padding: 16px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
  }
  .hero-content { padding: 40px 0 140px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .industries-grid { grid-template-columns: 1fr; }
  .about-grid, .about-intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links a { margin: 0 12px; }
  .section { padding: 64px 0; }
  .service-detail-item { grid-template-columns: 1fr; gap: 12px; }
  .sd-left { position: static; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .about-image img { height: 320px; }
  .industry-card { height: 260px; }
}
