@font-face {
  font-family: "DM Sans Variable";
  src: url("/static/fonts/DMSans-VariableFont_opsz,wght.30bbfaf1881a.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans Variable";
  src: url("/static/fonts/DMSans-Italic-VariableFont_opsz,wght.01b16af808a5.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --color-primary: #245A55;
  --color-accent: #ADE5D0;
  --color-expressive: #C7362F;
    --accent-peach: #FFAB91;       /* Peach/salmon */
  --color-bg: #ffffff;
  --color-text: #0f1a18;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans Variable", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--color-primary);
}

.section-title { font-size: 32px; margin: 0 0 12px; }

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--secondary { background: var(--color-accent); color: #0b302e; }

.hero { position: relative; padding: 96px 0; overflow: hidden; }
.hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.hero__content { position: relative; }
.hero__title { font-size: 48px; line-height: 1.05; margin: 8px 0 12px; }
.hero__intro { font-size: 18px; max-width: 720px; }
.hero__actions { margin-top: 20px; display: flex; gap: 12px; }

.features { padding: 64px 0; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature__icon { width: 48px; height: 48px; }
.feature__title { margin: 8px 0 6px; font-size: 18px; }
.feature__desc { margin: 0; color: #344; }

.text-image { padding: 64px 0; }
.text-image__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.text-image__grid--reverse { grid-template-columns: 1fr 1.2fr; }
.text-image__img { width: 100%; height: auto; border-radius: 12px; }

.cta { padding: 72px 0; background: var(--color-accent); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cta__title { margin: 0; font-size: 28px; }
.cta__sub { margin: 6px 0 0; }

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
  .text-image__grid { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: start; }
}

/* Hero CTA Button Design */
.hero-cta {
  /* Dimensions */
  padding: 14px 32px 14px 48px;
  min-width: 160px;
  
  /* Typography */
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  
  /* Colors */
  background: transparent;
  border: 1px solid #ADE5D0;
  color: #ADE5D0;
  
  /* Shape */
  border-radius: 24px;
  
  /* Layout */
  display: inline-flex;
  align-items: center;
  position: relative;
  
  /* Animation */
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  
  /* Remove default button styles */
  outline: none;
}

/* Arrow icon */
.hero-cta::before {
  content: '↘';
  font-size: 18px;
  transition: transform 200ms ease;
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Hover state */
.hero-cta:hover {
  background: rgba(173, 229, 208, 0.08);
  border-color: #C7E5DA;
  transform: translateY(-1px);
}

.hero-cta:hover::before {
  transform: translate(-2px, 2px);
}

/* Active/pressed state */
.hero-cta:active {
  transform: translateY(0);
  background: rgba(173, 229, 208, 0.12);
}

/* Focus state for accessibility */
.hero-cta:focus-visible {
  outline: 2px solid #ADE5D0;
  outline-offset: 2px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin: 0 auto;
    display: flex;
  }
}

/* Color Theme System */

/* Primary Theme - Dark Green */
.theme-primary {
  background-color: #0D1413;
  color: #ADE5D0;
}

.theme-primary .text-heading,
.theme-primary h1,
.theme-primary h2,
.theme-primary h3,
.theme-primary h4 {
  color: #ADE5D0;
}

.theme-primary .text-body,
.theme-primary p,
.theme-primary .text-secondary {
  color: #7FB5A6;
}

.theme-primary .accent-element {
  color: #245A55;
}

.theme-primary .card-bg {
  background: #0F1615;
  border-color: #1A2422;
}

/* Secondary Theme - Darker */
.theme-secondary {
  background-color: #111918;
  color: #E8EFEE;
}

.theme-secondary .text-heading,
.theme-secondary h1,
.theme-secondary h2,
.theme-secondary h3,
.theme-secondary h4 {
  color: #E8EFEE;
}

.theme-secondary .text-body,
.theme-secondary p,
.theme-secondary .text-secondary {
  color: #9BB5B0;
}

.theme-secondary .accent-element {
  color: #ADE5D0;
}

.theme-secondary .card-bg {
  background: #0A0F0E;
  border-color: #1F2B29;
}

.theme-secondary .metric-value {
  color: #ADE5D0;
}

/* Accent Theme - Peach/Orange */
.theme-accent {
  background: linear-gradient(135deg, #0F0A08 0%, #1A0F0B 50%, #0D0908 100%);
  color: #F4E6D7;
}

.theme-accent .text-heading,
.theme-accent h1,
.theme-accent h2,
.theme-accent h3,
.theme-accent h4 {
  color: #FFAB91;
}

.theme-accent .text-body,
.theme-accent p {
  color: #E8D4C4;
}

.theme-accent .text-secondary {
  color: #D4C0B0;
}

.theme-accent .text-text-primary {
  color: #FFAB91;
}

.theme-accent .text-text-secondary {
  color: #D4C0B0;
}

.theme-accent .accent-element,
.theme-accent .highlight {
  color: #FFAB91;
}

.theme-accent .card-bg {
  background: rgba(255, 171, 145, 0.08);
  border-color: rgba(255, 171, 145, 0.15);
}

.theme-accent .button-primary {
  background: #FFAB91;
  color: #1A0F0B;
  border-color: #FFAB91;
}

.theme-accent .button-primary:hover {
  background: #FF9E80;
  border-color: #FF9E80;
  color: #1A0F0B;
}

/* Service tiles in different themes */
.theme-primary .service-tile {
  background: #0F1615;
  border-color: #1A2422;
}

.theme-secondary .service-tile {
  background: #0A0F0E;
  border-color: #1F2B29;
}

.theme-accent .service-tile {
  background: rgba(255, 171, 145, 0.05);
  border-color: rgba(255, 171, 145, 0.15);
}

.theme-accent .service-tile:hover {
  background: rgba(255, 171, 145, 0.1);
  border-color: rgba(255, 171, 145, 0.25);
}

/* Comparison cards in accent theme */
.theme-accent .comparison-traditional {
  background: rgba(15, 10, 8, 0.8);
  border-color: rgba(255, 171, 145, 0.2);
  color: #D4C0B0;
}

.theme-accent .comparison-techco {
  background: linear-gradient(135deg, #FFAB91 0%, #FF8A65 100%);
  color: #1A0F0B;
}

.theme-accent .comparison-techco svg {
  color: #1A0F0B;
}

/* Mobile Navigation Hamburger Button */
.hamburger-lines {
  width: 20px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #9BB5B0;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 1px;
}

.hamburger-line:nth-child(1) {
  transform-origin: top left;
}

.hamburger-line:nth-child(3) {
  transform-origin: bottom left;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0D1413;
  transition: right 0.3s ease;
  z-index: 40;
}

.mobile-menu.open {
  right: 0;
}

