:root {
  --charcoal-900: #1a1d23;
  --charcoal-800: #2a2f38;
  --charcoal-700: #3a404d;
  --charcoal-600: #4a5261;
  --charcoal-500: #5a6476;
  --charcoal-400: #7a8394;
  --charcoal-300: #9aa3b2;
  --charcoal-200: #bac2cf;
  --charcoal-100: #dae0e8;
  --charcoal-50: #f4f6f8;
  
  --copper: #c17a4f;
  --copper-dark: #a56640;
  --copper-light: #d49872;
  
  --white: #fefefe;
  --off-white: #f9fafb;
  
  --shadow-sm: 0 1px 2px rgba(26, 29, 35, 0.04),
               0 2px 4px rgba(26, 29, 35, 0.06);
  --shadow-md: 0 2px 4px rgba(26, 29, 35, 0.06),
               0 4px 12px rgba(26, 29, 35, 0.08);
  --shadow-lg: 0 4px 8px rgba(26, 29, 35, 0.08),
               0 8px 24px rgba(26, 29, 35, 0.12);
  --shadow-xl: 0 8px 16px rgba(26, 29, 35, 0.1),
               0 16px 48px rgba(26, 29, 35, 0.15);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-800);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

p {
  margin-bottom: 1.25rem;
  color: var(--charcoal-700);
}

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

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container-narrow {
  max-width: 900px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 !important;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--charcoal-900);
  gap: 0.75rem;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-700);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal-900);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--charcoal-200);
}

.lang-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-500);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--charcoal-900);
  background: var(--charcoal-50);
}

.lang-btn.active {
  color: var(--copper);
}

.lang-divider {
  color: var(--charcoal-300);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--charcoal-900);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(193, 122, 79, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text .subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--charcoal-200);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--copper-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--charcoal-600);
}

.btn-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-title {
  max-width: 800px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--charcoal-600);
  max-width: 700px;
  margin-top: 1.5rem;
}

.why-choose {
  background: var(--white);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.reason-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--charcoal-100);
  transition: var(--transition);
  position: relative;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--copper);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.reason-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--charcoal-200);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.reason-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.reason-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.reason-card p {
  color: var(--charcoal-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.overlap-section {
  background: var(--charcoal-900);
  margin-top: -5rem;
  padding-top: 9rem;
  position: relative;
  z-index: 10;
}

.overlap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.services-split {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 5rem;
  align-items: center;
}

.services-content h2 {
  color: var(--white);
}

.services-content p {
  color: var(--charcoal-200);
  font-size: 1.125rem;
}

.services-list {
  list-style: none;
  margin-top: 2rem;
}

.services-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--charcoal-700);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.services-list li:first-child {
  border-top: 1px solid var(--charcoal-700);
}

.services-list i {
  color: var(--copper);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.services-list strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.services-list span {
  color: var(--charcoal-300);
  font-size: 0.95rem;
}

.services-visual {
  position: relative;
}

.services-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.services-image img {
  width: 100%;
  height: auto;
}

.process-section {
  background: var(--off-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  padding-left: 5rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--copper);
  color: var(--white);
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--charcoal-600);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--charcoal-800) 0%, var(--charcoal-900) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 122, 79, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--charcoal-200);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.about-hero {
  background: var(--charcoal-900);
  padding-top: 140px;
  padding-bottom: 5rem;
  text-align: center;
}

.about-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-hero .lead {
  font-size: 1.25rem;
  color: var(--charcoal-200);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.story-section {
  background: var(--white);
}

.story-content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 5rem;
  align-items: center;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-text p {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: auto;
}

.values-section {
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--charcoal-100);
  transition: var(--transition);
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.value-icon i {
  font-size: 2rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--charcoal-600);
  margin-bottom: 0;
}

.investors-hero {
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
  padding-top: 140px;
  padding-bottom: 5rem;
}

.investors-hero-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}

.investors-hero h1 {
  color: var(--white);
}

.investors-hero p {
  color: var(--charcoal-200);
  font-size: 1.125rem;
}

.investors-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.investors-hero-image img {
  width: 100%;
  height: auto;
}

.challenges-section {
  background: var(--white);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.challenge-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--copper);
  transition: var(--transition);
}

.challenge-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.challenge-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--charcoal-900);
}

.challenge-card p {
  color: var(--charcoal-600);
  margin-bottom: 0;
}

.solution-section {
  background: var(--off-white);
}

.solution-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 5rem;
  align-items: center;
}

.solution-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.solution-image img {
  width: 100%;
  height: auto;
}

.solution-features {
  list-style: none;
  margin-top: 2rem;
}

.solution-features li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--charcoal-200);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.solution-features li:first-child {
  border-top: 1px solid var(--charcoal-200);
}

.solution-features i {
  color: var(--copper);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.solution-features strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal-900);
}

.solution-features p {
  color: var(--charcoal-600);
  margin-bottom: 0;
}

.news-hero {
  background: var(--charcoal-900);
  padding-top: 140px;
  padding-bottom: 5rem;
  text-align: center;
}

.news-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.news-hero p {
  color: var(--charcoal-200);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.articles-section {
  background: var(--white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.article-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--charcoal-100);
  transition: var(--transition);
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--charcoal-200);
}

.article-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--charcoal-100);
}

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

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

.article-content {
  padding: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--charcoal-500);
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--charcoal-900);
}

.article-content p {
  color: var(--charcoal-600);
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.95rem;
}

.read-more:hover {
  gap: 0.75rem;
}

.contact-hero {
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
  padding-top: 140px;
  padding-bottom: 5rem;
  text-align: center;
}

.contact-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-hero p {
  color: var(--charcoal-200);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  background: var(--white);
  padding: 5rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--charcoal-100);
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.contact-details strong {
  display: block;
  font-size: 1.125rem;
  color: var(--charcoal-900);
  margin-bottom: 0.5rem;
}

.contact-details span,
.contact-details a {
  color: var(--charcoal-600);
  display: block;
}

.contact-details a:hover {
  color: var(--copper);
}

.contact-form-wrapper {
  background: var(--off-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--charcoal-100);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--charcoal-200);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--charcoal-900);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(193, 122, 79, 0.1);
}

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

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group.checkbox input {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.95rem;
}

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

.form-group.checkbox a:hover {
  color: var(--copper-dark);
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.0625rem;
}

.map-section {
  margin-top: 5rem;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thanks-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0;
  background: var(--off-white);
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
}

.thanks-icon i {
  font-size: 3rem;
  color: var(--white);
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.legal-page {
  padding-top: 140px;
  padding-bottom: 5rem;
  background: var(--white);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.last-updated {
  color: var(--charcoal-500);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.legal-content h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

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

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--charcoal-700);
}

footer {
  background: var(--charcoal-900);
  color: var(--charcoal-300);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  gap: 0.75rem;
}

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

.footer-brand p {
  color: var(--charcoal-400);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--charcoal-400);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--copper);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--charcoal-500);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal a {
  color: var(--charcoal-500);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--copper);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal-900);
  color: var(--charcoal-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin-bottom: 0;
  color: var(--charcoal-300);
}

.cookie-text a {
  color: var(--copper);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--copper);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background: var(--copper-dark);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--charcoal-300);
  border: 2px solid var(--charcoal-700);
}

.cookie-btn.decline:hover {
  border-color: var(--charcoal-600);
  color: var(--white);
}

.cookie-btn.customize {
  background: var(--charcoal-800);
  color: var(--charcoal-200);
}

.cookie-btn.customize:hover {
  background: var(--charcoal-700);
  color: var(--white);
}

.iti {
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-content,
  .services-split,
  .story-content,
  .solution-content,
  .investors-hero-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-split .services-content {
    order: 1;
  }
  
  .services-split .services-visual {
    order: 2;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--charcoal-100);
  }
  
  .nav-links a {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.125rem;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: none;
    border-top: 2px solid var(--charcoal-200);
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 4rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .reasons-grid,
  .process-grid,
  .values-grid,
  .challenges-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .overlap-section {
    margin-top: -3rem;
    padding-top: 6rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .process-step {
    padding-left: 0;
    padding-top: 5rem;
  }
  
  .step-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
}