:root {
  --primary-color: #0A882E; /* The exact green from the design */
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --border-color: #E2E8F0;
  --radius-md: 12px;
  --radius-lg: 24px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  letter-spacing: .3px !important;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.text-green {
  color: var(--primary-color);
}

.underline-green {
  position: relative;
  display: inline-block;
}

.underline-green::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

p {
  color: var(--text-gray);
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #086b24;
  border-color: #086b24;
}

.btn-dark {
  background-color: var(--text-dark);
  color: var(--white);
  border: 2px solid var(--text-dark);
}

.btn-dark:hover {
  background-color: #0f172a;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--text-dark);
}

.btn-sm {
  padding: 10px 20px;
}

.btn-outline-black {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-outline-black:hover {
  border-color: var(--text-dark);
}

.btn-outline-green {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-green:hover {
  background-color: rgba(10, 136, 46, 0.05);
}

/* Navigation */
.navbar {
  padding: 12px 0;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: padding 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.logo span {
  color: var(--primary-color);
}

.logo-img {
  width: auto;
  height: auto;
  max-width: 205px;
  max-height: 100px;
  display: block;
  transition: max-height 0.3s ease;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.mobile-menu-header {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  margin-right: auto;
  margin-left: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0.5px !important;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Dropdown Sub-menu */
.nav-links li {
  position: relative;
}

.nav-links li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  margin-top: 10px;
  z-index: 100;
}

.nav-links li .sub-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.nav-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.nav-links li .sub-menu li {
  padding: 0;
}

.nav-links li .sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
  transition: all .2s;
}

.nav-links li .sub-menu li a:hover {
  background: #f1f5f9;
  color: var(--primary-color);
  padding-left: 24px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Hero Section */
.hero {
  padding: 40px 0;
  background-color: var(--white);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 0.9;
  text-align: left;
}

.hero-image {
  flex: 1.1;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #000000;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 520px;
  margin: 0 0 32px 0;
  color: #64748b;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

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

/* Framework Section */
.framework {
  padding: 40px 0;
  background-color: #F8F9FA;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.framework .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.framework .section-header p {
  color: #64748B;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.framework-card {
  padding: 40px;
  border-radius: 16px;
  background-color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.framework-icon {
  width: 56px;
  height: 56px;
  background-color: #E8F5E9;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.framework-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
  color: #000;
}

.framework-card p {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
}

/* Sounds Familiar Section */
.familiar {
  padding: 40px 0;
  background-color: var(--white);
}

.familiar .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.familiar .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.familiar .section-header p {
  color: #64748B;
  font-size: 1.125rem;
  margin: 0 auto;
}

.familiar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.familiar-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.familiar-card:hover {
  transform: translateY(-8px);
  border-color: #BEE3C5;
  box-shadow: 0 20px 40px rgba(10, 136, 46, 0.1);
}

.familiar-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.familiar-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(10, 136, 46, 0.15);
  border-radius: 10px;
  background-color: var(--white);
  transition: all 0.4s ease;
}

.familiar-card:hover .familiar-icon {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.familiar-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

.familiar-card p {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.familiar-solution {
  background-color: #E8F5E9;
  border: 1px solid #BEE3C5;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.familiar-card:hover .familiar-solution {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(10, 136, 46, 0.25);
  transform: translateY(-4px);
}

.familiar-solution i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 2px;
  transition: color 0.4s ease;
}

.familiar-solution span {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.4s ease;
}

.familiar-card:hover .familiar-solution i,
.familiar-card:hover .familiar-solution span {
  color: var(--white);
}

.familiar-footer {
  text-align: center;
  margin-top: 64px;
}

.familiar-footer p {
  color: #64748B;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.familiar-footer .btn {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Results Section */
.results {
  padding: 40px 0;
  background-color: #F8F9FA;
}

.results .section-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.results .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.results .section-header p {
  color: #64748B;
  font-size: 1.125rem;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 40px 24px;
  background-color: var(--white);
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background-color: #E8F5E9;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.stat-prefix {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stat-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  line-height: 1;
}

.stat-number-wrapper .stat-suffix {
  font-size: 3.5rem;
}

.stat-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  line-height: 1.3;
}

.stat-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.5;
}

/* Why Us Section */
.why-us {
  padding: 40px 0;
  background-color: var(--white);
}

.why-us .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.why-us .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.why-us .section-header p {
  color: #64748B;
  font-size: 1.125rem;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 40px 32px;
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  text-align: left;
}

.why-icon {
  width: 56px;
  height: 56px;
  background-color: #E8F5E9;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
}

/* Growth in AI Era */
.ai-section {
  padding: 40px 0;
  background-color: #F8F9FA;
}

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

.ai-content {
  text-align: left;
}

.ai-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: left;
}

.ai-content > p {
  font-size: 1.125rem;
  color: #64748B;
  margin-bottom: 48px;
  line-height: 1.6;
}

.ai-feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ai-feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.ai-feature-icon {
  width: 48px;
  height: 48px;
  background-color: #E8F5E9;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-feature-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.ai-feature-text p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
}

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

/* Trusted Section */
.trusted {
  padding: 40px 0;
  background-color: var(--white);
}

.trusted-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.trusted-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

.trusted-header p {
  color: #64748B;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 auto;
}

.trusted-carousel-container {
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0; /* Remove whitespace gaps between inline blocks */
}

.trusted-carousel-track {
  display: inline-block;
  animation: scrollMarquee 20s linear infinite;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.trusted-logo {
  display: inline-flex;
  width: 140px;
  height: 80px;
  margin-right: 16px;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  vertical-align: top;
}

.trusted-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Measuring Impact Section */
.measuring-impact {
  padding: 40px 0;
  background-color: #F8F9FA;
}

.measuring-impact .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.measuring-impact .sub-heading {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.measuring-impact .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.measuring-impact .section-header p {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.impact-card {
  background-color: var(--white);
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
}

.impact-icon {
  width: 48px;
  height: 48px;
  background-color: #E8F5E9;
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.impact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

.impact-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.impact-card p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 40px 0;
  background-color: var(--white);
}

.cta-card {
  background-color: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-bottom: 6px solid var(--primary-color);
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  width: 100%;
}

.cta-card h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 1.125rem;
  color: #64748B;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-card .btn-primary {
  padding: 16px 40px;
  font-size: 1.125rem;
  border-radius: 8px;
}

/* FAQ Section */
.faq {
  padding: 40px 0;
  background-color: var(--white);
}

.faq .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 64px;
}

.faq-container {
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #64748B;
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background-color: var(--primary-color);
}

.faq-item.active .faq-icon::before {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 32px 32px;
  max-height: 500px;
}

.faq-answer p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* Footer */
.footer {
  padding: 80px 0 80px;
  background-color: #f5faf6;
  color: #000;
  border-top: 1px solid #E2E8F0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 32px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #E2E8F0;
  color: #64748B;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-links h4,
.footer-newsletter h4 {
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
}

.footer-links a {
  display: block;
  color: #64748B;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 16px;
}

.footer-nav-list li a {
  margin-bottom: 0;
}

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

.footer-newsletter p {
  color: #64748B;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px 16px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  color: #000;
}

.newsletter-form input::placeholder {
  color: #94A3B8;
}

.newsletter-form button {
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form button i,
.newsletter-form button svg {
  transition: transform 0.2s;
}

.newsletter-form button:hover i,
.newsletter-form button:hover svg {
  transform: translateX(4px);
}

/* Logo Scroll Effect */

.navbar.scrolled .logo-img {
  max-height: 70px;
}

/* Nav Action Buttons - Compact */
.nav-actions .btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.3px !important;
  white-space: nowrap;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

/* Responsive */

/* Tablet Landscape */
@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .nav-actions .btn-sm {
    padding: 8px 14px;
    font-size: 0.875rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-inner {
    gap: 40px;
  }
}

/* Tablet Portrait */
@media (max-width: 992px) {
  .logo-img {
    max-height: 80px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 24px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .navbar.menu-open .nav-menu-wrapper {
    left: 0;
  }
  .mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    gap: 0;
  }
  .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 32px;
    gap: 12px;
  }
  .nav-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .navbar.menu-open .nav-links li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .navbar.menu-open .nav-links li a {
    padding: 12px 0;
    font-size: 1rem;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar.menu-open .nav-links li .submenu-toggle-btn {
    padding: 10px;
    margin: -10px;
    transition: transform 0.3s ease;
  }
  .navbar.menu-open .nav-links li.submenu-open > a .submenu-toggle-btn {
    transform: rotate(180deg);
  }
  .navbar.menu-open .nav-links li .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    box-shadow: none;
    padding: 0 0 10px 15px;
    margin: 0;
    border: none;
  }
  .navbar.menu-open .nav-links li .sub-menu::before {
    display: none;
  }
  .navbar.menu-open .nav-links li.submenu-open > .sub-menu {
    display: block;
  }

  /* Hero */
  h1, .hero h1 { font-size: 2.8rem; }
  .hero {
    padding: 40px 0;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .hero-content {
    display: contents;
  }
  .hero-content h1 {
    order: 1;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero-subtitle {
    order: 2;
    margin: 0 auto 32px auto;
    text-align: center;
    max-width: 90%;
  }
  .hero-image {
    order: 3;
    flex: 1;
    width: 100%;
    max-width: 90%;
    margin: 0 auto 32px auto;
  }
  .hero-buttons {
    order: 4;
    justify-content: center;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  .framework-grid, .why-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .ai-inner { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    max-height: 65px;
  }
  h1, .hero h1 {
    font-size: 2.2rem;
  }
  h2 { font-size: 1.75rem; }
  .hero {
    padding: 40px 0;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .framework-grid, .familiar-grid, .why-grid, .impact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .logo { margin-bottom: 12px; }
  .cta-card { padding: 40px 20px; }
  .faq-question { padding: 20px; font-size: 1rem; }
  .faq-answer { padding: 0 20px; }
  .faq-item.active .faq-answer { padding: 0 20px 20px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .logo-img {
    max-height: 55px;
  }
  h1, .hero h1 {
    font-size: 1.8rem;
  }
  h2 { font-size: 1.5rem; }
  .hero {
    padding: 30px 0;
  }
  .footer {
    padding: 30px 0;
  }
  .footer-inner {
    gap: 24px;
  }
  .footer-brand .logo {
    margin-bottom: 8px;
  }
  .footer-brand p {
    margin-bottom: 16px;
  }
  .container {
    padding: 0 16px;
  }
}

/* Let's Talk Modal */
.lt-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.lt-modal-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.lt-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lt-modal-close:hover {
  color: #000;
}

.lt-modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.lt-modal-logo {
  height: 45px;
  width: auto;
  margin: 0 auto 24px;
}

.lt-modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.lt-modal-header p {
  color: #475569;
  font-size: 1.1rem;
}

.lt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.lt-modal-form > .lt-form-row > input, .lt-modal-form > .lt-form-row > select {
  width: 100%;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #334155;
  outline: none;
  transition: border-color 0.2s;
}

.lt-modal-form > .lt-form-row > input:focus, .lt-modal-form > .lt-form-row > select:focus, .lt-modal-form textarea:focus {
  border-color: var(--primary-color);
  background: #fff;
}

.lt-phone-input {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.lt-phone-input:focus-within {
  border-color: var(--primary-color);
  background: #fff;
}

.lt-flag, .lt-country-select {
  padding: 0 16px;
  font-weight: 500;
  border-right: 1px solid #e2e8f0;
  color: #334155;
  display: flex;
  align-items: center;
  height: 100%;
}

.lt-country-select {
  border: none;
  border-right: 1px solid #e2e8f0;
  background: transparent;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0 32px 0 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  min-width: 115px;
  flex-shrink: 0;
  font-size: 1rem;
  color: #334155;
}

.lt-phone-input input {
  flex: 1;
  border: none;
  background: transparent;
  margin-bottom: 0;
  padding: 16px;
  width: 100%;
}

.lt-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
  font-size: 1.1rem;
}

.lt-trust-badge .lt-excellent {
  font-weight: 500;
}

.lt-trust-badge .lt-stars {
  color: #00b67a; /* Trustpilot green */
  font-size: 1.2rem;
}

.lt-trust-badge .lt-reviews {
  font-size: 0.95rem;
  color: #475569;
  text-decoration: underline;
}

.lt-consent {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}

.lt-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.lt-submit-btn:hover {
  background: #086d25;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 110, 92, 0.2);
}

@media (max-width: 768px) {
  .lt-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .lt-modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .lt-modal-header h2 {
    font-size: 1.6rem;
  }
  .lt-trust-badge {
    flex-wrap: wrap;
  }
}

/* WPML Custom Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.lang-switcher .lang-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 6px 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: var(--bg-light);
}

.lang-switcher .lang-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(10, 136, 46, 0.05);
}
