@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('assets/fonts/montserrat-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-regular.woff2') format('woff2');
}

:root {
  color-scheme: light;
  --green: #1f5d32;
  --green-dark: #123b22;
  --orange: #ee7f22;
  --ink: #172017;
  --muted: #59645b;
  --line: #d9e0d6;
  --paper: #f7f8f4;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(18, 59, 34, .09);
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: 'Montserrat', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand, .button, .eyebrow, summary, label {
  font-family: var(--font-heading);
}

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

a {
  color: var(--green-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  background: var(--green-dark);
  color: var(--white);
  padding: .7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

/* SITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 15px rgba(18, 59, 34, 0.05);
  backdrop-filter: blur(12px);
}

.topbar {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.35rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.topbar-item svg {
  stroke: var(--orange);
  flex-shrink: 0;
}

.topbar-item:hover {
  color: var(--white);
}

.nav {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.35rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--orange);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(238, 127, 34, 0.25);
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo-badge {
  transform: scale(1.04);
}

.brand-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--green-dark);
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-dark);
  padding: 0.4rem 0.35rem;
  position: relative;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.menu a:not(.nav-cta):hover {
  color: var(--orange);
}

.menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 6px;
  font-size: 0.88rem !important;
  box-shadow: 0 3px 10px rgba(238, 127, 34, 0.2);
  transition: background-color 0.15s ease, transform 0.15s ease !important;
}

.nav-cta:hover {
  background: #d96f18;
  transform: translateY(-1px);
}

/* DROPDOWN MENU */
.has-dropdown {
  position: relative;
}

.has-dropdown > a svg {
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.has-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -0.5rem;
  background: var(--white);
  min-width: 210px;
  box-shadow: 0 10px 30px rgba(18, 59, 34, 0.12);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block !important;
  padding: 0.55rem 1.15rem !important;
  font-size: 0.88rem !important;
  color: var(--ink) !important;
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: var(--paper);
  color: var(--orange) !important;
}

/* SUBPAGE HERO & TEAM SECTIONS */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0c2616 100%);
  color: var(--white);
  padding: 3.25rem 1.5rem;
  text-align: center;
}

.page-hero-container {
  width: min(800px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  font-weight: 800;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin: 0;
}

.team-member-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(220px, 260px) 1fr;
  gap: 2.5rem;
  align-items: start;
}

.reverse-split {
  grid-template-columns: 1fr minmax(220px, 260px);
}

.team-image-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.team-img {
  width: 100%;
  max-width: 260px;
  height: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(18, 59, 34, 0.12);
  border: 4px solid var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(18, 59, 34, 0.18);
}

.sub-headline {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin: 0.25rem 0 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.team-copy-col h4 {
  font-size: 1.02rem;
  color: var(--green-dark);
  margin: 1.25rem 0 0.35rem;
}

.team-copy-col p {
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.team-cta-notice {
  text-align: center;
  margin-top: 3rem;
  background: var(--white);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-dark);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  min-height: 40px;
  cursor: pointer;
}

/* HERO BANNER SECTION */
.hero-banner-section {
  position: relative;
  width: 100%;
  padding: 3.5rem 1.5rem 5.5rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  background: #121f15;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-field.jpg') center/cover no-repeat;
  filter: scale(1.02);
  z-index: 1;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 28, 18, 0.72) 0%, rgba(14, 28, 18, 0.88) 100%);
  z-index: 2;
}

.hero-banner-container {
  position: relative;
  z-index: 3;
  width: min(800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0 0 1.5rem;
  line-height: 1.12;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.hero-orange-box {
  background: var(--orange);
  color: var(--white);
  padding: 1.35rem 1.75rem;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(238, 127, 34, 0.3);
  margin-bottom: 1.5rem;
  width: min(680px, 100%);
  text-align: center;
  position: relative;
}

.hero-box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero-box-brand {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-box-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
}

.hero-box-subtitle {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 2px;
}

.hero-box-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hero-btn-dark {
  background: #121d14;
  color: var(--white) !important;
  border: 2px solid #121d14;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.hero-btn-dark:hover {
  background: #000000;
  border-color: #000000;
}

.hero-btn-orange {
  background: var(--orange);
  color: var(--white) !important;
  border: 2px solid var(--orange);
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 12px rgba(238, 127, 34, 0.3);
}

.hero-btn-orange:hover {
  background: #d96f18;
  border-color: #d96f18;
}

/* OVERLAPPING HIGHLIGHT CARDS */
.hero-highlight-wrapper {
  width: min(1000px, calc(100% - 3.5rem));
  margin: -45px auto 2.5rem;
  position: relative;
  z-index: 10;
}

.highlight-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  color: var(--white);
  transition: transform 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-2px);
}

.card-orange {
  background: linear-gradient(135deg, #ee7f22 0%, #d96f18 100%);
}

.card-dark {
  background: linear-gradient(135deg, #123b22 0%, #0d2918 100%);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.card-icon svg {
  stroke: var(--white);
  width: 24px;
  height: 24px;
}

.card-text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
  color: var(--white);
}

.card-text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

/* GENERAL SECTIONS & CONTAINERS */
.section,
.notice {
  width: min(1140px, calc(100% - 3.5rem));
  margin: 0 auto;
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--green-dark);
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 .5rem;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: 2px solid var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
}

/* SERVICE GRID (Non-cropped images) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .03);
  display: flex;
  flex-direction: column;
}

.card-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #f2f5f1;
}

.card-icon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(18, 59, 34, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  z-index: 10;
}

.service-grid article:hover .card-icon-badge {
  transform: scale(1.12) rotate(6deg);
  background: var(--orange);
  border-color: var(--orange);
}

.service-grid article:hover .card-icon-badge svg {
  stroke: var(--white);
}

.card-icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  transition: stroke 0.25s ease;
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: transform 0.3s ease;
}

.service-grid article:hover img {
  transform: scale(1.03);
}

/* FLOATING ICON BADGE FOR SPLIT SECTION IMAGES */
.split-img-container {
  position: relative;
  width: 100%;
}

.split-img-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  background: linear-gradient(135deg, var(--orange) 0%, #d96f18 100%);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 6px 18px rgba(238, 127, 34, 0.35);
  border: 2px solid var(--white);
  z-index: 2;
}

/* SUBTLE TINY BOTTOM-RIGHT AI WATERMARK */
.ki-watermark {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.55rem;
  font-weight: 500;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.2px;
  z-index: 10;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.split-img-badge svg {
  stroke: var(--white);
  width: 16px;
  height: 16px;
}

.service-grid h3 {
  margin: 1rem 1.15rem 0.3rem;
  color: var(--green-dark);
  font-size: 1.12rem;
  font-weight: 700;
}

.service-grid p {
  margin: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.products {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.photobooth-list {
  grid-template-columns: 1fr !important;
  gap: 0.6rem !important;
  margin-top: 1rem;
}

.photobooth-list li {
  font-size: 0.92rem;
  padding: 0.65rem 0.9rem;
  font-weight: 600;
}

.robot {
  display: grid;
  grid-template-columns: 1.2fr .8fr .5fr;
  gap: 1rem;
  align-items: center;
}

.robot img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.robot img:last-child {
  max-height: 400px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
}

.logo-row img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.partner-note {
  text-align: center;
  margin: 1.75rem auto 0;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
  max-width: 50ch;
  line-height: 1.45;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.9rem 1.15rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green-dark);
  font-size: 0.98rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.plain-list {
  padding: 0;
  list-style: none;
  margin-bottom: 1.25rem;
}

.plain-list li {
  margin-bottom: 0.35rem;
}

.map {
  margin-top: 0.5rem;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.contact-form {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.3rem;
  font-weight: 800;
}

.form-note,
.status {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

label {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #aeb9ad;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.4rem 0 0.4rem;
}

.form-checkbox input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--green);
}

.form-checkbox label {
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  font-size: 0.85rem;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--green-dark);
  text-decoration: underline;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* SITE FOOTER */
.site-footer {
  margin-top: 3.5rem;
  background: linear-gradient(rgba(14, 28, 18, 0.94), rgba(14, 28, 18, 0.97)), url('assets/hero-field.jpg') center/cover no-repeat;
  color: #d2ded4;
}

.footer-main {
  width: min(1140px, calc(100% - 3.5rem));
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand .brand-title {
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #a3b5a7;
  margin: 0;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: #c2d4c5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 3px;
}

.footer-info p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c2d4c5;
}

.footer-info p strong {
  color: var(--white);
}

.footer-info a {
  color: var(--orange);
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: #09110b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #839687;
}

.footer-bottom-inner {
  width: min(1140px, calc(100% - 3.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #a8bcae;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--orange);
}

.legal-main {
  width: min(840px, calc(100% - 3.5rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.legal-main h1 {
  color: var(--green-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
}

.legal-main h2 {
  margin-top: 1.75rem;
  color: var(--green-dark);
  font-weight: 800;
}

.legal-main .box {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1080px) {
  .topbar-inner {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hide-mobile {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    min-height: 44px;
    font-size: 0.95rem;
  }

  .menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 40px rgba(18, 59, 34, 0.16);
    gap: 0.6rem;
    z-index: 500;
  }

  .menu.open {
    display: flex;
    animation: fadeInDown 0.2s ease-out;
  }

  .menu a {
    display: block;
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    border-radius: 6px;
    white-space: normal;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0.25rem 0 0.25rem 1rem;
    display: none;
    background: transparent;
  }

  .has-dropdown.dropdown-active .dropdown-menu {
    display: block;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.75rem 1.25rem !important;
  }

  .split,
  .robot,
  .contact,
  .team-member-section,
  .reverse-split {
    grid-template-columns: 1fr;
  }

  .team-image-col {
    order: -1;
    margin-bottom: 1rem;
  }

  .service-grid,
  .product-list,
  .logo-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .highlight-cards-container {
    grid-template-columns: 1fr;
  }

  .hero-highlight-wrapper {
    margin-top: -35px;
  }

  .contact-form {
    position: static;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .nav,
  .hero-banner-container,
  .hero-highlight-wrapper,
  .section,
  .notice,
  .footer-main,
  .footer-bottom-inner,
  .legal-main {
    width: calc(100% - 2.5rem);
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .brand-logo-badge {
    width: 38px;
    height: 38px;
  }

  .topbar-inner {
    justify-content: space-around;
    font-size: 0.78rem;
  }

  .hero-banner-section {
    padding: 2.8rem 0.5rem 4.5rem;
  }

  .hero-orange-box {
    padding: 1.1rem 1rem;
  }

  .hero-box-title {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .product-list,
  .logo-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .actions,
  .actions .button {
    width: 100%;
  }
}

/* MOBILE FIRST TOUCH TARGET & OVERFLOW PROTECTION */
.button, .menu-button {
  min-height: 44px;
}

@media (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem 0;
  }
  
  .menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* CONTACT FORM MODAL POPUP */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 59, 34, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  width: min(480px, 90%);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(18, 59, 34, 0.15);
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.modal-icon.success {
  background: rgba(31, 93, 50, 0.1);
  color: var(--green);
}

.modal-icon.error {
  background: rgba(238, 127, 34, 0.1);
  color: var(--orange);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.modal-message {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-close-btn {
  width: 100%;
}

