/* ============================================
   GOOD HUNTERS — Premium Corporate Design System
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

:root {
  --gh-green-dark: #1B3A1B;
  --gh-green: #2D5A2D;
  --gh-green-light: #3D7A3D;
  --gh-navy: #0D1B2A;
  --gh-navy-light: #1B2838;
  --gh-black: #0A0A0A;
  --gh-white: #FFFFFF;
  --gh-off-white: #F7F8FA;
  --gh-gray-light: #F0F2F5;
  --gh-gray: #E0E2E5;
  --gh-gray-dark: #6B7280;
  --gh-text: #1A1A1A;
  --gh-text-secondary: #4A5568;
  --gh-red: #E63946;
  --gh-orange: #F4511E;
  --gh-teal: #0D9488;
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --container-max: 1200px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--gh-text);
  background: var(--gh-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

/* ============================================
   HEADER — Transparent overlay, fixed
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — preserve 1498x555 aspect ratio */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header.scrolled .header-logo img {
  height: 28px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links a {
  color: var(--gh-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

/* Language Switcher — Circular flags */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 32px;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.5;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--gh-white);
}

.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gh-white);
  transition: all var(--transition-base);
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}

.mobile-overlay.open {
  display: block;
}

/* ============================================
   HERO — Full-viewport eagle background
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gh-black);
}

/* Eagle as full-cover background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.45) contrast(1.15);
}

/* Geometric grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Gradient mask on bottom */
.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--gh-black) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: heroFadeIn 1.2s ease 0.2s both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--gh-white);
  line-height: 1.25;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-tagline strong {
  color: var(--gh-white);
  font-weight: 700;
  font-style: normal;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: transparent;
  color: var(--gh-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.hero-cta:hover {
  background: var(--gh-white);
  color: var(--gh-black);
  border-color: var(--gh-white);
}

.hero-cta svg {
  width: 14px;
  height: 14px;
}

/* Year badge */
.hero-year {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 2;
}

.hero-year .year-current {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gh-red);
  line-height: 1;
}

.hero-year .year-plus {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gh-red);
  opacity: 0.7;
}

/* Scroll */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  color: var(--gh-white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gh-white), transparent);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ============================================
   SECTION DEFAULTS
   ============================================ */
.section {
  padding: 120px 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gh-green);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gh-text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================
   ABOUT — Bento Grid
   ============================================ */
.about {
  background: var(--gh-off-white);
}

.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-header .section-subtitle {
  margin: 16px auto 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.bento-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--gh-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-card--info {
  display: flex;
  flex-direction: column;
}

.bento-card--info img {
  flex: 1;
  min-height: 0;
}

.bento-card-info {
  padding: 14px 18px;
}

.bento-label {
  font-size: 0.7rem;
  color: var(--gh-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bento-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gh-text);
  line-height: 1;
  margin-top: 2px;
}

.bento-value--small {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}

.bento-card--quote {
  background: var(--gh-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.bento-card--quote p {
  color: var(--gh-white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.7;
}

.values-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  grid-column: 1 / -1;
}

.value-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--gh-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.value-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.value-badge-icon--red {
  background: #FEE2E2;
  color: var(--gh-red);
}

.value-badge-icon--green {
  background: #D1FAE5;
  color: var(--gh-green);
}

.value-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gh-text);
  line-height: 1.3;
}

/* ============================================
   ROADMAP
   ============================================ */
.roadmap {
  background: var(--gh-navy);
  color: var(--gh-white);
}

.roadmap-header {
  text-align: right;
  margin-bottom: 80px;
}

.roadmap-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  font-style: italic;
  color: var(--gh-white);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.roadmap-item {
  position: relative;
}

.roadmap-year {
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 900;
  color: var(--gh-white);
  opacity: 0.08;
  line-height: 0.85;
  position: absolute;
  top: -30px;
  left: 0;
  pointer-events: none;
}

.roadmap-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.roadmap-goal-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gh-red);
  margin-bottom: 14px;
}

.roadmap-goal-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 380px;
}

.roadmap-item--right .roadmap-year {
  right: 0;
  left: auto;
}

.roadmap-item--right {
  text-align: right;
}

.roadmap-item--right .roadmap-goal-text {
  margin-left: auto;
}

/* ============================================
   SOLUTIONS — 3 Pillar Cards
   ============================================ */
.solutions {
  background: var(--gh-black);
  color: var(--gh-white);
}

.solutions-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.solutions-info .section-eyebrow {
  color: var(--gh-green-light);
}

.solutions-info .section-title {
  color: var(--gh-white);
}

.solutions-info .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

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

.solution-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base);
}

.solution-card:hover {
  transform: translateY(-6px);
}

.solution-card-image {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.solution-card:hover .solution-card-image img {
  transform: scale(1.06);
}

.solution-card-body {
  padding: 24px;
  flex-shrink: 0;
}

.solution-card-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--gh-white);
}

.solution-card-desc {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.5;
  color: var(--gh-white);
}

.solution-card--products .solution-card-body {
  background: linear-gradient(135deg, var(--gh-orange), var(--gh-red));
}

.solution-card--solutions .solution-card-body {
  background: var(--gh-navy);
}

.solution-card--consulting .solution-card-body {
  background: linear-gradient(135deg, var(--gh-teal), #0E7B6F);
}

/* ============================================
   CASES — Editorial
   ============================================ */
.cases {
  background: var(--gh-white);
}

.cases-header {
  margin-bottom: 64px;
}

.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.case-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.case-item:nth-child(even) {
  direction: rtl;
}

.case-item:nth-child(even)>* {
  direction: ltr;
}

.case-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gh-gray-dark);
  margin-bottom: 8px;
}

.case-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.05;
}

.case-description {
  font-size: 1rem;
  color: var(--gh-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.case-link:hover .arrow {
  transform: translateX(4px);
}

.case-link .arrow {
  transition: transform var(--transition-base);
}

.case-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-image:hover img {
  transform: scale(1.03);
}

.case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gh-navy);
  color: var(--gh-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   TDB (Technical Disclosure Bulletin)
   ============================================ */
.tdb {
  background: var(--gh-off-white);
}

.tdb-header {
  margin-bottom: 48px;
}

.tdb-intro {
  font-size: 1rem;
  color: var(--gh-text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin-top: 16px;
}

.tdb-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.tdb-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--gh-white);
  font-size: 0.88rem;
}

.tdb-table thead {
  background: var(--gh-navy);
  color: var(--gh-white);
}

.tdb-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tdb-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gh-gray);
  vertical-align: top;
}

.tdb-table tbody tr:hover {
  background: var(--gh-off-white);
}

.tdb-id {
  font-family: 'SFMono-Regular', 'Consolas', monospace;
  font-weight: 700;
  color: var(--gh-green-dark);
  white-space: nowrap;
  font-size: 0.82rem;
}

.tdb-title-cell {
  font-weight: 600;
}

.tdb-abstract {
  color: var(--gh-text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

.tdb-date {
  white-space: nowrap;
  color: var(--gh-gray-dark);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--gh-navy);
  color: var(--gh-white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .section-eyebrow {
  color: var(--gh-green-light);
}

.pricing-header .section-title {
  color: var(--gh-white);
}

.pricing-header .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gh-green);
  background: rgba(45, 90, 45, 0.08);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gh-green-dark), var(--gh-green-light));
}

.pricing-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 16px 0;
  color: var(--gh-green-light);
}

.pricing-card-desc {
  font-size: 0.88rem;
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-card-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card-features li::before {
  content: '✓';
  color: var(--gh-green-light);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gh-white);
  background: transparent;
  font-family: var(--font-primary);
}

.pricing-card-cta:hover {
  border-color: var(--gh-white);
  background: var(--gh-white);
  color: var(--gh-navy);
}

.pricing-card--featured .pricing-card-cta {
  background: var(--gh-green-dark);
  border-color: var(--gh-green);
}

.pricing-card--featured .pricing-card-cta:hover {
  background: var(--gh-green);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--gh-green-dark);
  color: var(--gh-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.contact-info .section-title {
  color: var(--gh-white);
}

.contact-text {
  font-size: 1rem;
  opacity: 0.7;
  line-height: 1.8;
  margin-top: 16px;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-details-item .icon {
  width: 20px;
  text-align: center;
  opacity: 0.6;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.contact-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--gh-white);
  font-size: 1rem;
}

.contact-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contact-cta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-cta-box p {
  opacity: 0.6;
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gh-white);
  color: var(--gh-green-dark);
  border: none;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-primary);
}

.btn-primary:hover {
  background: var(--gh-off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gh-black);
  color: var(--gh-white);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
}

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

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.8rem;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.75rem;
  opacity: 0.3;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .section {
    padding: 80px 0;
  }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .solutions-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .solutions-info .section-subtitle {
    margin: 0 auto;
  }

  .case-item {
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .roadmap-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--gh-black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition-base);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hamburger {
    display: flex;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .bento-card--quote {
    grid-column: 1 / -1;
  }

  .values-row {
    flex-direction: column;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .roadmap-item--right {
    text-align: left;
  }

  .roadmap-item--right .roadmap-goal-text {
    margin-left: 0;
  }

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

  .solution-card {
    height: 360px;
  }

  .case-item {
    grid-template-columns: 1fr;
  }

  .case-item:nth-child(even) {
    direction: ltr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-year {
    left: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .hero-tagline {
    font-size: 1.6rem;
  }

  .hero-year {
    bottom: 28px;
  }
}