/*
Theme Name: Rotarius
Theme URI: https://rotarius.com
Author: Rotarius Team
Author URI: https://rotarius.com
Description: Custom WordPress theme for Rotarius drone company. Features orbital drone animation, multilingual support, editable solutions, and manager-friendly customizer options.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rotarius
Domain Path: /languages
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==============================
   FONTS
   ============================== */
@font-face {
  font-family: 'TT Lakes Neue';
  src: url('assets/fonts/TT-Lakes-Neue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Lakes Neue';
  src: url('assets/fonts/TT-Lakes-Neue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Lakes Neue';
  src: url('assets/fonts/TT-Lakes-Neue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Lakes Neue';
  src: url('assets/fonts/TT-Lakes-Neue-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ==============================
   BASE & RESET
   ============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'TT Lakes Neue', 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #FAFFFF;
  color: #010C0C;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ==============================
   UTILITIES
   ============================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-lg {
  max-width: 1400px;
}

/* ==============================
   HEADER & NAVIGATION
   ============================== */
.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.header-nav {
  width: 100%;
  max-width: 1280px;
  height: 80px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  width: 192px;
  height: 48px;
  object-fit: contain;
  object-position: left;
}

@media (min-width: 1024px) {
  .header-logo img {
    width: 224px;
  }
}

/* Desktop Navigation */
.header-desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
  }
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  border-radius: 9999px;
  text-decoration: none;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  background: #1C5B68;
  color: white;
}

.nav-chevron {
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
  width: 14px;
  height: 14px;
}

.nav-item:hover .nav-chevron,
.nav-item.open .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  text-decoration: none;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.lang-switcher-toggle:hover {
  color: white;
}

.lang-globe {
  width: 16px;
  height: 16px;
}

.lang-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-switcher-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  background: #1c1917;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  min-width: 160px;
  display: none;
  list-style: none;
  z-index: 50;
  padding: 0.25rem 0;
}

.lang-switcher.open .lang-switcher-dropdown {
  display: block;
}

.lang-switcher-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  text-decoration: none;
}

.lang-switcher-dropdown a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.lang-switcher-dropdown .current-lang {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.lang-switcher-dropdown .lang-code {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 1rem;
  top: 7rem;
  z-index: 60;
  background: #FAFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #A2ACAF;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #010C0C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-label {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #010C0C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu-link,
.mobile-menu-sub a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
}

.mobile-menu-link {
  color: #010C0C;
}

.mobile-menu-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding-left: 0.5rem;
}

.mobile-menu-sub a {
  background: rgba(0, 0, 0, 0.03);
  color: #1C5B68;
}

.mobile-menu-sub a:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* ==============================
   MEGA MENUS
   ============================== */
.nav-item.has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #FAFFFF;
  color: #010C0C;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #A2ACAF;
  padding: 2rem;
  z-index: 40;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.nav-item:hover .mega-menu,
.nav-item.open .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Solutions Mega Menu */
.mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.mega-card {
  position: relative;
  height: 260px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e7e5e4;
  text-decoration: none;
  color: inherit;
  transition: all 0.7s ease;
}

.mega-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.mega-card-commercial:hover {
  background: rgba(113, 165, 141, 0.1);
  border-color: rgba(113, 165, 141, 0.3);
}

.mega-card-defense:hover {
  background: rgba(28, 91, 104, 0.1);
  border-color: rgba(28, 91, 104, 0.3);
}

.mega-card-emergency:hover {
  background: rgba(244, 122, 96, 0.1);
  border-color: rgba(244, 122, 96, 0.3);
}

.mega-card-consulting:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.mega-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.125rem 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  border: 1px solid #e7e5e4;
  background: white;
}

.mega-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mega-tag-label {
  font-size: 0.5625rem;
  font-weight: 700;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-card h4 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #010C0C;
}

.mega-card p {
  font-size: 0.75rem;
  color: #78716c;
  max-width: 200px;
  line-height: 1.5;
}

.mega-arrow {
  margin-top: auto;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  color: #010C0C;
}

.mega-card:hover .mega-arrow {
  transform: translateX(0.5rem);
}

.mega-card img {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 50%;
  height: 55%;
  object-fit: contain;
  pointer-events: none;
}

.mega-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #1C5B68;
  color: #FAFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mega-view-all:hover {
  opacity: 0.9;
}

/* Contact Mega Menu */
.mega-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .mega-contact-grid {
    grid-template-columns: 3fr 5fr 4fr;
  }
}

.mega-contact-col h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #010C0C;
}

.mega-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mega-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mega-contact-block p {
  font-weight: 500;
  color: #010C0C;
  margin: 0;
}

.mega-contact-block a {
  color: #010C0C;
  text-decoration: none;
}

.mega-contact-block a:hover {
  text-decoration: underline;
}

.mega-contact-phone {
  font-size: 1.25rem;
}

.mega-socials {
  display: flex;
  gap: 0.5rem;
}

.mega-socials a {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  border: 1px solid #e7e5e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a29e;
  transition: all 0.2s;
}

.mega-socials a:hover {
  background: #f5f5f4;
}

.mega-contact-form-col {
  padding: 0;
}

@media (min-width: 1024px) {
  .mega-contact-form-col {
    padding: 0 2rem;
    border-left: 1px solid #f5f5f4;
    border-right: 1px solid #f5f5f4;
  }
}

.mega-contact-hint {
  font-size: 0.875rem;
  color: #a8a29e;
  margin-bottom: 2rem;
}

.mega-contact-quick-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mega-form-row input,
.mega-form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e7e5e4;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #010C0C;
  outline: none;
  resize: none;
}

.mega-form-row input::placeholder,
.mega-form-row textarea::placeholder {
  color: #a8a29e;
}

.mega-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: #1C5B68;
  color: #FAFFFF;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}

.mega-form-submit:hover {
  opacity: 0.9;
}

.mega-contact-map {
  min-height: 300px;
}

.mega-map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #f5f5f4;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a8a29e;
  gap: 0.5rem;
}

.mega-map-placeholder svg {
  width: 48px;
  height: 48px;
}

.mega-map-placeholder span {
  font-weight: 700;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
  transition: all 1s ease;
}

/* Background images with scale zoom */
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg.active {
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.4) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding-top: 8rem;
  }
}

.hero-left {
  color: white;
}

.hero-slide-content {
  animation: fadeInLeft 0.8s ease forwards;
}

/* Category badge pill */
.hero-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-category svg {
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: inline;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Button group */
.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.hero-btn-primary {
  background: white;
  color: #111827;
}

.hero-btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateX(4px);
}

.hero-btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(4px);
}

/* Hero Right / Orbital Panel */
.hero-right {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-right {
    display: flex;
  }
}

.orbital-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.orbital-center img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* Concentric circles */
.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.orbital-ring-1 { width: 240px; height: 240px; }
.orbital-ring-2 { width: 340px; height: 340px; }
.orbital-ring-3 { width: 440px; height: 440px; }

/* Orbital arc highlight — top 30% only via clip-path */
.orbital-arc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--theme-color, #71A58D);
  transition: transform 0.8s ease, border-top-color 0.8s ease;
  z-index: 5;
  clip-path: inset(0 0 70% 0);
}

/* Drone Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.drone-orbiter {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  pointer-events: none;
}

.drone-orbiter img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: brightness(0) invert(1);
}

.drone-1 {
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  animation-name: spin;
  animation-duration: 15s;
}
.drone-1 img { width: 96px; height: 96px; }

.drone-2 {
  width: 470px;
  height: 470px;
  margin: -235px 0 0 -235px;
  animation-name: spin-reverse;
  animation-duration: 45s;
}
.drone-2 img { width: 38px; height: 38px; opacity: 0.6; }

.drone-3 {
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  animation-name: spin;
  animation-duration: 25s;
}
.drone-3 img { width: 34px; height: 34px; opacity: 0.5; }

.drone-4 {
  width: 552px;
  height: 552px;
  margin: -276px 0 0 -276px;
  animation-name: spin;
  animation-duration: 60s;
}
.drone-4 img { width: 29px; height: 29px; opacity: 0.4; }

.drone-5 {
  width: 451px;
  height: 451px;
  margin: -226px 0 0 -226px;
  animation-name: spin-reverse;
  animation-duration: 35s;
}
.drone-5 img { width: 34px; height: 34px; opacity: 0.55; }

/* Hero Theme Selector with text labels */
.hero-selectors {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: none;
}

.hero-selector-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-selector-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-selector-btn.active {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Compass positioning — button center intersects the ring edge */
.selector-commercial { top: -20px; left: 50%; transform: translate(-50%, -50%); }
.selector-defense { left: calc(100% + 20px); top: 50%; transform: translate(-50%, -50%); }
.selector-emergency { bottom: -20px; left: 50%; transform: translate(-50%, 50%); }
.selector-consulting { left: -20px; top: 50%; transform: translate(-50%, -50%); }

/* ==============================
   SECTIONS
   ============================== */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: #0a0a0a;
  color: white;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  opacity: 0.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* ==============================
   INFO SECTION
   ============================== */
.info-section {
  padding: 6rem 0;
  background: #FAFFFF;
  overflow: hidden;
}

.info-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .info-container {
    padding: 0 3rem;
  }
}

@media (min-width: 1280px) {
  .info-container {
    padding: 0 5rem;
  }
}

.info-wrapper {
  display: flex;
  position: relative;
}

/* Desktop Timeline */
.info-timeline-desktop {
  display: none;
}

@media (min-width: 1280px) {
  .info-timeline-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 8rem;
    gap: 0;
    flex-shrink: 0;
  }
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.timeline-name {
  position: absolute;
  left: 2rem;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.5s ease;
  top: -2px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.timeline-node.active .timeline-dot {
  transform: scale(1.5);
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

.timeline-line {
  width: 1px;
  height: 8rem;
  transition: background 0.5s ease;
}

/* Mobile Tabs */
.info-tabs-mobile {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1280px) {
  .info-tabs-mobile {
    display: none;
  }
}

.info-tab {
  flex-shrink: 0;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #A2ACAF;
  background: #FAFFFF;
  color: #A2ACAF;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.info-tab.active {
  background: #010C0C;
  color: #FAFFFF;
  border-color: #010C0C;
}

.info-tab:hover:not(.active) {
  border-color: #010C0C;
}

/* Info Content Panels */
.info-content {
  display: none;
}

.info-content.active {
  display: block;
}

/* Top Grid */
.info-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .info-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
  }
}

.info-text {
  animation: fadeInLeft 1s ease forwards;
}

.info-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #A2ACAF;
  background: #FAFFFF;
}

.info-tag span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #A2ACAF;
  text-transform: uppercase;
}

.info-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #010C0C;
  margin-bottom: 2.5rem;
}

.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transition: opacity 0.2s;
}

.info-btn:hover {
  opacity: 0.9;
}

.info-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Image */
.info-image-wrap {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  animation: fadeInZoom 1s ease forwards;
}

@media (min-width: 1024px) {
  .info-image-wrap {
    border-radius: 3rem;
  }
}

.info-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1s ease;
}

.info-image-wrap:hover img {
  transform: scale(1.05);
}

/* Subcards */
.info-subcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(162, 172, 175, 0.4);
}

@media (min-width: 768px) {
  .info-subcards {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .info-subcards {
    gap: 6rem;
  }
}

.info-subcard {
  animation: fadeInUp 0.7s ease forwards;
}

.info-subcard:nth-child(1) { animation-delay: 0ms; }
.info-subcard:nth-child(2) { animation-delay: 150ms; }
.info-subcard:nth-child(3) { animation-delay: 300ms; }

.info-subcard-icon {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(162, 172, 175, 0.1);
  width: fit-content;
  color: #1C5B68;
}

.info-subcard h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #010C0C;
  margin-bottom: 1rem;
}

.info-subcard p {
  font-size: 1.125rem;
  color: #A2ACAF;
  line-height: 1.6;
}

/* Additional animations */
@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* ==============================
   ABOUT SECTION
   ============================== */
.about-section {
  position: relative;
  padding: 6rem 0;
  background: #1C5B68;
  color: #FAFFFF;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-section {
    padding: 8rem 0;
  }
}

.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
  font-size: clamp(100px, 15vw, 280px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
}

.about-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-container {
    padding: 0 3rem;
  }
}

.about-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-header {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
  }
}

.about-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.about-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-header-right p {
  font-size: 1.125rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: #FAFFFF;
  color: #010C0C;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

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

.about-btn:active {
  transform: scale(0.95);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.about-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

@media (min-width: 1024px) {
  .about-card {
    border-radius: 1.5rem;
    aspect-ratio: auto;
    min-height: 240px;
  }
}

.about-card-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 300px;
}

@media (min-width: 1024px) {
  .about-card-large {
    min-height: 500px;
  }
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-card:hover img {
  transform: scale(1.05);
}

.about-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  pointer-events: none;
}

.about-card-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
}

@media (min-width: 1024px) {
  .about-card-large .about-card-content {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

.about-card-content span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

.about-card-content h3 {
  font-weight: 700;
  color: white;
  margin: 0;
  font-size: 0.875rem;
}

.about-card-large .about-card-content h3 {
  font-size: 1.25rem;
}

/* ==============================
   NEWS SECTION (Homepage)
   ============================== */
.news-section-home {
  padding: 6rem 0;
  background: #FAFFFF;
}

@media (min-width: 1024px) {
  .news-section-home {
    padding: 8rem 0;
  }
}

.news-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .news-container {
    padding: 0 2rem;
  }
}

.news-header {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .news-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}

.news-header-left {
  max-width: 768px;
}

.news-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 1px solid #A2ACAF;
}

.news-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #A2ACAF;
  text-transform: uppercase;
}

.news-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #010C0C;
}

.news-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: #1C5B68;
  color: #FAFFFF;
  border-radius: 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transition: all 0.3s;
  flex-shrink: 0;
}

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

.news-btn:active {
  transform: scale(0.95);
}

.news-btn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250, 255, 255, 0.8);
}

/* News Grid */
.news-grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .news-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .news-grid-large {
    gap: 3.5rem;
  }
}

/* News Item */
.news-item-large {
  display: flex;
  flex-direction: column;
}

.news-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 2.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.news-image-wrap img,
.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-item-large:hover .news-image {
  transform: scale(1.1);
}

.news-image-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.news-cat-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.news-date-large {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #A2ACAF;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.news-title-large {
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.news-title-large a {
  color: #010C0C;
  text-decoration: none;
  transition: color 0.3s;
}

.news-item-large:hover .news-title-large a {
  color: #1C5B68;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #A2ACAF;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s;
  margin-top: auto;
}

.news-read-more:hover {
  color: #010C0C;
}

.news-read-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A2ACAF;
  transition: background 0.3s;
}

.news-read-more:hover .news-read-dot {
  background: #1C5B68;
}

/* ==============================
   NEWS (Archive / Cards)
   ============================== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.news-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-body {
  padding: 1.5rem;
}

.news-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-color, #71A58D);
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.news-date {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ==============================
   SOLUTIONS
   ============================== */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.solution-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #111827;
  color: white;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.solution-card-bg {
  position: absolute;
  inset: 0;
}

.solution-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.solution-card-content {
  position: relative;
  z-index: 2;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.solution-card p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: gap 0.3s;
}

.solution-card-link:hover {
  gap: 0.75rem;
}

/* ==============================
   CONTACT FORM
   ============================== */
.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1);
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: #111827;
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #374151;
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==============================
   PAGE CONTENT
   ============================== */
.page-content {
  padding-top: 6rem;
  padding-bottom: 5rem;
  min-height: 60vh;
}

.page-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: #1C5B68;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #1C5B68;
}

.page-content img {
  border-radius: 1rem;
  margin: 2rem 0;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: #010C0C;
  color: #FAFFFF;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 4rem 3rem;
  }
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 4fr 5fr 3fr;
    gap: 3rem;
  }
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-desc {
  font-size: 0.875rem;
  opacity: 0.5;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  opacity: 0.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  border: 1px solid rgba(250, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 255, 255, 0.5);
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: rgba(250, 255, 255, 0.1);
  border-color: rgba(250, 255, 255, 0.2);
}

/* Links Column */
.footer-links-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-links-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a {
  font-size: 0.875rem;
  opacity: 0.5;
  transition: opacity 0.2s;
  text-decoration: none;
  color: inherit;
}

.footer-links-col a:hover {
  opacity: 1;
}

/* CTA Column */
.footer-cta-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-cta-col p {
  font-size: 0.875rem;
  opacity: 0.5;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #1C5B68;
  color: #FAFFFF;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
}

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

.footer-cta-primary:active {
  transform: scale(0.95);
}

.footer-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(250, 255, 255, 0.2);
  color: #FAFFFF;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-cta-secondary:hover {
  background: rgba(250, 255, 255, 0.1);
  transform: scale(1.05);
}

.footer-cta-secondary:active {
  transform: scale(0.95);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  opacity: 0.4;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 0.6;
}

/* ==============================
   MISC
   ============================== */
.division-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* WordPress alignments */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  margin-top: 0.5rem;
}

/* Accessibility */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==============================
   SOLUTIONS PAGE
   ============================== */
.solutions-page-main {
  background: #fcfcf9;
  min-height: 100vh;
}

/* Hero */
.solutions-hero {
  padding: 8rem 0 5rem;
}

@media (min-width: 1024px) {
  .solutions-hero {
    padding: 10rem 0 7rem;
  }
}

.solutions-hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .solutions-hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 0 3rem;
  }
}

.solutions-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 2rem;
  border-radius: 9999px;
  border: 1px solid #e7e5e4;
  background: #ffffff;
}

.solutions-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #a8a29e;
  display: block;
}

.solutions-hero-badge-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #78716c;
  text-transform: uppercase;
}

.solutions-hero-heading {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1c1917;
  line-height: 1.05;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .solutions-hero-heading {
    font-size: 4.5rem;
  }
}

.solutions-hero-heading-muted {
  color: #a8a29e;
}

.solutions-hero-desc {
  color: #78716c;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 28rem;
}

/* Hero Rows */
.solutions-hero-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solutions-hero-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(231, 229, 228, 0.8);
  background: rgba(231, 229, 228, 0.2);
  transition: all 0.5s;
  text-decoration: none;
}

.solutions-hero-row:hover {
  transform: translateY(-4px);
  background: rgba(231, 229, 228, 0.35);
}

.solutions-hero-row-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #f5f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-hero-row-num span {
  font-size: 0.75rem;
  font-weight: 900;
  color: #1c1917;
}

.solutions-hero-row-body {
  flex: 1;
  min-width: 0;
}

.solutions-hero-row-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.solutions-hero-row-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.solutions-hero-row-title h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1c1917;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solutions-hero-row-body p {
  font-size: 0.875rem;
  color: #78716c;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solutions-hero-row-arrow {
  flex-shrink: 0;
  color: #d6d3d1;
  transition: color 0.3s;
}

.solutions-hero-row:hover .solutions-hero-row-arrow {
  color: #1c1917;
}

/* Divider */
.solutions-divider-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .solutions-divider-container {
    padding: 0 3rem;
  }
}

.solutions-divider {
  height: 1px;
  background: #e7e5e4;
}

/* Explore Section */
.solutions-explore {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .solutions-explore {
    padding: 8rem 0;
  }
}

.solutions-explore-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .solutions-explore-container {
    padding: 0 3rem;
  }
}

.solutions-explore-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .solutions-explore-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.solutions-explore-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #78716c;
  text-transform: uppercase;
}

.solutions-explore-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1c1917;
  margin-top: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .solutions-explore-header h2 {
    font-size: 3rem;
  }
}

.solutions-explore-header-desc {
  color: #78716c;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* Explore Cards Grid */
.solutions-explore-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .solutions-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solutions-explore-card {
  position: relative;
  background: #ffffff;
  border-radius: 2.5rem;
  border: 1px solid #f5f5f4;
  overflow: hidden;
  transition: all 0.7s;
  text-decoration: none;
  display: block;
}

.solutions-explore-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.solutions-explore-card-bar {
  height: 6px;
  width: 100%;
}

.solutions-explore-card-inner {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.solutions-explore-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.solutions-explore-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #e7e5e4;
  background: #ffffff;
}

.solutions-explore-card-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
}

.solutions-explore-card-badge span {
  font-size: 0.625rem;
  font-weight: 700;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solutions-explore-card-arrow-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid #e7e5e4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.solutions-explore-card:hover .solutions-explore-card-arrow-circle {
  background: #1c1917;
  border-color: #1c1917;
}

.solutions-explore-card-arrow-circle svg {
  color: #a8a29e;
  transition: color 0.3s;
}

.solutions-explore-card:hover .solutions-explore-card-arrow-circle svg {
  color: #ffffff;
}

.solutions-explore-card-inner h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.25;
  max-width: 280px;
  margin-bottom: 1rem;
}

.solutions-explore-card-inner > p {
  color: #78716c;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
  margin-bottom: 2rem;
}

.solutions-explore-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.solutions-explore-card-link svg {
  transition: transform 0.3s;
}

.solutions-explore-card:hover .solutions-explore-card-link svg {
  transform: translateX(4px);
}

.solutions-explore-card-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 50%;
  transition: transform 0.7s;
  opacity: 0.9;
  pointer-events: none;
}

.solutions-explore-card:hover .solutions-explore-card-image {
  transform: scale(1.05);
}

.solutions-explore-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* ==============================
   SOLUTION DETAIL PAGE
   ============================== */
.solution-detail-main {
  background: #fcfcf9;
  min-height: 100vh;
}

/* Hero */
.solution-detail-hero {
  padding: 8rem 0 5rem;
}

@media (min-width: 1024px) {
  .solution-detail-hero {
    padding: 10rem 0 7rem;
  }
}

.solution-detail-hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .solution-detail-hero-container {
    padding: 0 3rem;
  }
}

.solution-detail-hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .solution-detail-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.solution-detail-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 1px solid #e7e5e4;
  background: #ffffff;
}

.solution-detail-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
}

.solution-detail-hero-badge span:last-child {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #78716c;
  text-transform: uppercase;
}

.solution-detail-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1c1917;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .solution-detail-hero-text h1 {
    font-size: 4.5rem;
  }
}

.solution-detail-hero-text > p {
  color: #78716c;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

.solution-detail-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
}

.solution-detail-hero-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.solution-detail-hero-image-wrap {
  display: flex;
  justify-content: flex-end;
}

.solution-detail-hero-image-box {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1 / 1;
  border-radius: 2.5rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-detail-hero-image-box img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

/* Sections */
.solution-detail-section {
  padding: 5rem 0;
  border-top: 1px solid rgba(231, 229, 228, 0.6);
}

@media (min-width: 1024px) {
  .solution-detail-section {
    padding: 7rem 0;
  }
}

.solution-detail-section-alt {
  background: rgba(245, 245, 244, 0.4);
}

.solution-detail-section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .solution-detail-section-container {
    padding: 0 3rem;
  }
}

.solution-detail-section-header {
  margin-bottom: 3rem;
}

.solution-detail-section-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #78716c;
  text-transform: uppercase;
}

.solution-detail-section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1c1917;
  margin-top: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .solution-detail-section-header h2 {
    font-size: 2.25rem;
  }
}

/* Cards */
.solution-detail-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .solution-detail-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solution-detail-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.solution-detail-card {
  position: relative;
  background: #ffffff;
  border-radius: 2rem;
  border: 1px solid rgba(231, 229, 228, 0.4);
  padding: 2rem;
  transition: all 0.5s;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.solution-detail-card:hover {
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.solution-detail-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(245, 245, 244, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.solution-detail-card > p {
  color: #78716c;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.solution-detail-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.solution-detail-card-link svg {
  transition: transform 0.3s;
}

.solution-detail-card:hover .solution-detail-card-link svg {
  transform: translateX(4px);
}

/* Solution detail card floating image */
.solution-detail-card-float-img {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  opacity: 0.1;
  transition: opacity 0.3s;
  pointer-events: none;
}

.solution-detail-card:hover .solution-detail-card-float-img {
  opacity: 0.2;
}

.solution-detail-card-float-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==============================
   HISTORY PAGE
   ============================== */
.history-page-main {
  background: #fcfcf9;
}

.history-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .history-container {
    padding: 0 3rem;
  }
}

.history-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.history-section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.history-section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-top: 1rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .history-section-header h2 {
    font-size: 3rem;
  }
}

.history-section-header p {
  color: #78716c;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 1rem auto 0;
}

/* Title */
.history-title {
  padding: 8rem 0 4rem;
}

.history-title h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1c1917;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .history-title h1 {
    font-size: 4.5rem;
  }
}

/* Stats */
.history-stats {
  background: #ffffff;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
}

.history-stats-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .history-stats-container {
    padding: 0 3rem;
  }
}

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

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

.history-stat {
  padding: 3rem 1.5rem;
  text-align: center;
  border-right: 1px solid #e7e5e4;
}

.history-stat:nth-child(2n) {
  border-right: none;
}

@media (min-width: 1024px) {
  .history-stat:nth-child(2n) {
    border-right: 1px solid #e7e5e4;
  }
  .history-stat:last-child {
    border-right: none;
  }
}

.history-stat:first-child {
  border-left: none;
}

.history-stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1c1917;
}

@media (min-width: 640px) {
  .history-stat-value {
    font-size: 3rem;
  }
}

.history-stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #78716c;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Timeline */
.history-timeline {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .history-timeline {
    padding: 8rem 0;
  }
}

.history-timeline-wrap {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.history-timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e7e5e4;
}

@media (min-width: 1024px) {
  .history-timeline-line {
    left: 50%;
    transform: translateX(-1px);
  }
}

.history-timeline-items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.history-timeline-item {
  position: relative;
  display: flex;
  align-items: center;
}

.history-timeline-content {
  flex: 1;
  padding-left: 5rem;
}

@media (min-width: 1024px) {
  .history-timeline-content {
    padding-left: 0;
  }
  .history-timeline-left .history-timeline-content {
    text-align: right;
    padding-right: 4rem;
    order: 1;
  }
  .history-timeline-left .history-timeline-dot {
    order: 2;
  }
  .history-timeline-left .history-timeline-spacer {
    order: 3;
  }
  .history-timeline-right .history-timeline-content {
    text-align: left;
    padding-left: 4rem;
    order: 3;
  }
  .history-timeline-right .history-timeline-dot {
    order: 2;
  }
  .history-timeline-right .history-timeline-spacer {
    order: 1;
  }
}

.history-timeline-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f5f5f4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.5s;
  display: inline-block;
  max-width: 28rem;
  text-align: left;
}

.history-timeline-card:hover {
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.history-timeline-year {
  font-size: 0.875rem;
  font-weight: 700;
  color: #a8a29e;
  letter-spacing: 0.1em;
}

.history-timeline-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c1917;
  margin-top: 0.75rem;
}

.history-timeline-card p {
  color: #78716c;
  margin-top: 0.75rem;
  line-height: 1.625;
}

.history-timeline-dot {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: #1c1917;
  border: 4px solid #fcfcf9;
  box-shadow: 0 0 0 1px #e7e5e4;
}

@media (min-width: 1024px) {
  .history-timeline-dot {
    left: 50%;
  }
}

.history-timeline-spacer {
  display: none;
}

@media (min-width: 1024px) {
  .history-timeline-spacer {
    display: block;
    flex: 1;
  }
}

/* Vision */
.history-vision {
  position: relative;
  background: #1c1917;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .history-vision {
    padding: 8rem 0;
  }
}

.history-vision-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(68, 64, 60, 0.5), transparent 60%);
  pointer-events: none;
}

.history-vision-relative {
  position: relative;
  z-index: 1;
}

.history-vision-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .history-vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.history-vision-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.history-vision-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .history-vision-text h2 {
    font-size: 3rem;
  }
}

.history-vision-text p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2rem;
  line-height: 1.625;
}

.history-vision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.history-vision-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  transition: all 0.5s;
}

.history-vision-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
}

.history-vision-card-highlight {
  background: rgba(255,255,255,0.1);
}

.history-vision-card-icon {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.history-vision-card-highlight .history-vision-card-icon {
  color: #ffffff;
}

.history-vision-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.history-vision-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  line-height: 1.625;
}

/* Ecosystem */
.history-ecosystem {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .history-ecosystem {
    padding: 8rem 0;
  }
}

.history-ecosystem-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.history-ecosystem-card {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #f5f5f4;
  padding: 2rem;
  transition: all 0.5s;
}

.history-ecosystem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
}

.history-ecosystem-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #fafaf9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.history-ecosystem-card:hover .history-ecosystem-card-icon {
  background: #f5f5f4;
}

.history-ecosystem-card-icon svg {
  color: #a8a29e;
  transition: color 0.3s;
}

.history-ecosystem-card:hover .history-ecosystem-card-icon svg {
  color: #57534e;
}

.history-ecosystem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.history-ecosystem-card p {
  color: #78716c;
  line-height: 1.625;
}

/* Products */
.history-products {
  padding: 6rem 0;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .history-products {
    padding: 8rem 0;
  }
}

.history-products-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.history-product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,0.7);
  border: 1px solid #e7e5e4;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.7s;
  text-decoration: none;
}

.history-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  background: var(--product-hover, #f5f5f4);
}

.history-product-card-icon {
  color: #a8a29e;
  margin-bottom: 1.5rem;
}

.history-product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.history-product-card > p {
  color: #78716c;
  font-size: 0.875rem;
  line-height: 1.625;
  flex: 1;
}

.history-product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a8a29e;
  transition: color 0.3s;
}

.history-product-card:hover .history-product-card-link {
  color: #1c1917;
}

.history-product-card-link svg {
  transition: transform 0.3s;
}

.history-product-card:hover .history-product-card-link svg {
  transform: translateX(4px);
}

/* Components */
.history-components {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .history-components {
    padding: 8rem 0;
  }
}

.history-components-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .history-components-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.history-components-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-top: 1rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .history-components-text h2 {
    font-size: 3rem;
  }
}

.history-components-text > p {
  font-size: 1.125rem;
  color: #78716c;
  margin-top: 1.5rem;
  line-height: 1.625;
}

.history-components-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.history-components-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f4;
  transition: all 0.3s;
}

.history-components-item:hover {
  border-color: #d6d3d1;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
}

.history-components-item-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #f5f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.history-components-item-icon svg {
  color: #78716c;
}

.history-components-item span {
  color: #44403c;
  font-weight: 500;
}
