/* ===== Aerisconn Global — Design System ===== */
:root {
  --brand-navy: #122044;
  --brand-navy-dark: #0a1530;
  --brand-blue: #2563eb;
  --brand-blue-light: #5b9bff;
  --carbon: #15171c;
  --bg: #ffffff;
  --fg: #1a2238;
  --muted: #f3f5fa;
  --muted-fg: #5b6479;
  --border: #e3e7f0;
  --gradient-hero: linear-gradient(120deg, var(--brand-navy) 0%, #1c2f63 55%, var(--brand-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
  --shadow-elevated: 0 20px 60px -20px rgba(18, 32, 68, 0.35);
  --shadow-glow: 0 10px 40px -10px rgba(37, 99, 235, 0.5);
  --carbon-pattern:
    repeating-linear-gradient(45deg, #1d2027 0 2px, #15171c 2px 4px),
    repeating-linear-gradient(-45deg, rgba(29, 32, 39, .6) 0 2px, transparent 2px 4px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-fg);
  transition: all .2s;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-navy);
  background: var(--muted);
}

.nav .btn-cta {
  margin-left: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s, background .2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-dark {
  background: var(--brand-navy);
  color: #fff;
}

.btn-dark:hover {
  background: #1a2d57;
}

.btn-outline {
  background: rgba(255, 255, 255, .05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
}

.btn-white {
  background: #fff;
  color: var(--brand-navy);
}

.btn-white:hover {
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-navy);
  padding: 8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-nav a {
  padding: 12px 16px;
  font-weight: 500;
  color: var(--muted-fg);
  border-radius: 8px;
}

.mobile-nav a.active {
  color: var(--brand-navy);
  background: var(--muted);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--carbon);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brand-navy) 0%, rgba(18, 32, 68, .85) 50%, transparent 100%);
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px;
}

.eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero .eyebrow {
  font-size: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  max-width: 900px;
}

.hero p.lead {
  font-size: 19px;
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .8);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-stats {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Sections ===== */
section.block {
  padding: 64px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 12px;
}

.section-head p {
  color: var(--fg);
  font-size: 18px;
  margin-top: 16px;
}

.bg-muted {
  background: var(--muted);
}

.bg-carbon {
  background: var(--carbon);
  background-image: var(--carbon-pattern);
  color: #fff;
}

/* ===== Pillars ===== */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.icon-badge {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  margin-bottom: 20px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 16px;
  color: var(--brand-navy);
}

.card p {
  font-size: 14px;
  color: var(--muted-fg);
  margin-top: 8px;
}

.card-dark {
  background: var(--carbon);
  background-image: var(--carbon-pattern);
  color: #fff;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.1);
}

.card-dark .icon-badge {
  margin-left: auto;
  margin-right: auto;
}

.card-dark h3 {
  color: var(--brand-blue-light);
}

.card-dark p,
.card-dark .card-list li {
  color: #ffffff !important;
}

.card-dark .card-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark .card-list li:last-child {
  border-bottom: none;
}

.card-list {
  margin-top: 24px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted-fg);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.card-list li:last-child {
  border-bottom: none;
}

.card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Products grid ===== */
.products-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  transition: gap .2s;
}

.link-arrow:hover {
  gap: 12px;
}

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

.product-card-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.product-card-link:hover {
  transform: translateY(-8px);
}


.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-elevated);
  min-height: 280px;
}


.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .7s;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-navy) 0%, rgba(18, 32, 68, .3) 50%, transparent 100%);
}

.product-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.product-card h3 {
  color: #fff;
  font-size: 20px;
}

.product-card:first-child h3 {
  font-size: 20px;
}

.product-card .accent-bar {
  width: 48px;
  height: 4px;
  background: var(--gradient-accent);
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Global Strip ===== */
.global-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .global-strip {
    grid-template-columns: 1fr;
  }
}

.global-strip h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-top: 12px !important;
}

.global-content {
  margin-top: -36px;
}

@media (max-width: 768px) {
  .global-content {
    margin-top: 0;
  }
}

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

@media (max-width: 640px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.country-tile {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 20px;
  transition: all .2s;
}

.country-tile:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--brand-blue);
}

.country-tile .check {
  width: 20px;
  height: 20px;
  color: var(--brand-blue-light);
  margin-bottom: 12px;
}

.country-tile .name {
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.country-tile .desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== CTA ===== */
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-elevated);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .4);
  filter: blur(60px);
}

.cta-box h2 {
  font-size: clamp(1.5rem, 2.75vw, 2rem);
  position: relative;
}

.cta-box p {
  max-width: 500px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, .8);
  position: relative;
}

.cta-box .btn {
  margin-top: 32px;
  position: relative;
}

/* ===== Page Hero (subpages) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding: 96px 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--carbon-pattern);
  opacity: 0.2;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -128px;
  right: -128px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .4);
  filter: blur(80px);
}

.page-hero .container {
  position: relative;
}

.page-hero .eyebrow {
  color: #fff;
  opacity: 0.8;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  max-width: 900px;
}

.page-hero p {
  max-width: 640px;
  margin-top: 24px;
  font-size: 19px;
  color: rgba(255, 255, 255, .8);
}

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-box {
    margin-top: 0;
  }
}

.prose p {
  color: var(--fg);
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.75;
  text-align: justify;
}

.prose h2 {
  color: var(--brand-navy);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 12px;
}

.affiliate-box {
  background: var(--carbon);
  background-image: var(--carbon-pattern);
  color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-elevated);
  margin-top: 140px;
}

.affiliate-box .eyebrow-light {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}

.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sidebar-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 20px;
  height: 20px;
}

.sidebar-content h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.sidebar-content p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

/* ===== Products page ===== */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
  scroll-margin-top: 120px;
}

.product-row:last-child {
  margin-bottom: 0;
}

.product-row.reverse>div:first-child {
  order: 2;
}

@media (max-width: 768px) {

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
  }

  .product-row.reverse>div:first-child {
    order: 0;
  }
}

.product-row img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-elevated);
  transition: transform .7s;
}

.product-row img:hover {
  transform: scale(1.03);
}

.product-row h2 {
  color: var(--brand-navy);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 12px;
}

.product-row .tagline {
  color: var(--brand-blue);
  font-weight: 500;
  margin-top: 8px;
}

.product-row .body {
  color: var(--fg);
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.75;
}

.product-row .btn {
  margin-top: 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.cta-group .btn {
  height: 48px;
  min-width: 170px;
  justify-content: center;
  padding: 0 24px;
}

.btn-details {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand-navy);
}

.btn-details:hover {
  background: var(--muted);
  border-color: var(--brand-blue-light);
  transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 32, 68, 0.75);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  border-radius: 28px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(40px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-hero);
  color: #fff;
  position: relative;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.modal-header h2 {
  font-size: 26px;
  color: #fff !important;
  margin: 0;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
  border-color: #fff;
}

.modal-body {
  padding: 40px;
  overflow-y: auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted-fg);
  background: linear-gradient(to bottom, #fff, #f8faff);
}

.modal-body h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--brand-navy);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-body h4::before {
  content: '';
  width: 16px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 4px;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.modal-body li {
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--fg);
  font-weight: 500;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.modal-body li:hover {
  transform: translateX(8px) scale(1.02);
  border-color: var(--brand-blue);
  background: #f0f7ff;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

.modal-body li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--brand-blue-light);
}

.modal-body p {
  margin-bottom: 20px;
}

/* ===== Global presence page ===== */
.office-card {
  position: relative;
  overflow: hidden;
}

.office-card .flag {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 48px;
  opacity: .9;
}

.office-card svg.pin {
  width: 32px;
  height: 32px;
  color: var(--brand-blue);
  margin-bottom: 20px;
}

.office-card h3 {
  font-size: 24px;
}

.office-card .accent-bar {
  width: 48px;
  height: 4px;
  background: var(--gradient-accent);
  margin-top: 24px;
  transition: width .3s;
}

.office-card:hover .accent-bar {
  width: 96px;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .2s;
  margin-bottom: 16px;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.contact-card .icon-badge {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-card .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-fg);
}

.contact-card .value {
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 4px;
}

.form-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: var(--shadow-elevated);
}

.form-card h2 {
  color: var(--brand-navy);
  font-size: 24px;
}

.form-card .hint {
  font-size: 14px;
  color: var(--muted-fg);
  margin-top: 4px;
}

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

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-fg);
}

.field input,
.field select,
.field textarea {
  margin-top: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1), 0 0 0 3px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-message {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: none;
  font-size: 14px;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.field-full {
  margin-top: 20px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--carbon);
  background-image: var(--carbon-pattern);
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 0;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-grid .brand-name {
  color: #fff;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.footer-about {
  font-size: 14px;
  max-width: 400px;
  margin-top: 24px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
}

.type-cursor {
  color: #fff;
  font-weight: 200;
  animation: blink 1s infinite;
  margin-left: 4px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ===== Food Product Showcase ===== */
.food-product-showcase {
  background: linear-gradient(175deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.food-product-showcase::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .15) 0%, transparent 70%);
  pointer-events: none;
}

.food-product-showcase::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .12) 0%, transparent 70%);
  pointer-events: none;
}

.food-product-showcase .section-head h2 {
  color: #fff;
}

.food-product-showcase .section-head p {
  color: rgba(255, 255, 255, .65);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.food-item {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  cursor: default;
  backdrop-filter: blur(8px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.food-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 0%, var(--item-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}

.food-item:hover {
  transform: translateY(-6px);
  border-color: var(--item-accent);
  box-shadow: 0 12px 40px -8px var(--item-glow), 0 0 0 1px var(--item-accent);
}

.food-item:hover::before {
  opacity: 1;
}

.food-item-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  filter: drop-shadow(0 4px 12px var(--item-glow));
  transition: transform .35s;
}

.food-item:hover .food-item-icon {
  transform: scale(1.15);
}

.food-item-name {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  position: relative;
  letter-spacing: -0.01em;
  line-height: 1.3;
  z-index: 1;
}


@media (max-width: 1024px) {
  .food-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .food-item {
    padding: 22px 16px;
  }
}

@media (max-width: 480px) {
  .food-grid {
    grid-template-columns: 1fr;
  }
}