:root {
  --color-primary: #1B6B4A;
  --color-primary-light: #238C5E;
  --color-primary-dark: #145237;
  --color-accent: #E24C6A;
  --color-accent-light: #ED7A93;
  --color-warm: #F5EFEA;
  --color-warm-light: #FAF7F4;
  --color-warm-dark: #ECDDD2;
  --color-text: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-text-lighter: #999;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-dark-green: #0D3B28;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header-utility {
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--color-warm-light);
}
.header-utility-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 7px 24px;
  display: flex; align-items: center; justify-content: flex-end; gap: 14px;
}
.utility-login {
  font-size: 0.9rem; font-weight: 500; color: var(--color-text);
  transition: var(--transition);
}
.utility-login:hover { color: var(--color-primary); }

.logo {
  display: flex; align-items: center;
}
.logo img {
  height: 56px; width: auto; display: block;
}
.footer .logo img { height: 48px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--color-text-light);
  transition: var(--transition);
}
.nav a:hover { color: var(--color-primary); }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: var(--transition); border: none; text-decoration: none;
}
.btn-primary {
  background: var(--color-primary); color: white;
}
.btn-primary:hover { background: var(--color-primary-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: white; }
.btn-accent {
  background: var(--color-accent); color: var(--color-dark);
}
.btn-accent:hover { background: var(--color-accent-light); transform: translateY(-1px); }
.btn-white {
  background: white; color: var(--color-primary);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.nav-country-select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50px; padding: 7px 32px 7px 14px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--color-text); cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6B6B'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: var(--transition);
}
.nav-country-select:hover { border-color: var(--color-primary); }
.nav-country-select:focus { outline: none; border-color: var(--color-primary); }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--color-text);
}

.btn-gold {
  background: #D4A843; color: #1a1a1a; min-width: 200px;
}
.btn-gold:hover {
  background: #E0B854; transform: translateY(-1px);
}

.hero {
  padding: 160px 0 100px;
  background: url('/images/sam-main-bg.jpg?v=2') center/cover no-repeat;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(10,20,15,0.62) 0%, rgba(10,20,15,0.40) 46%, rgba(10,20,15,0.08) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: left; max-width: 760px; margin: 0;
}

.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.15; color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero h1 em {
  color: var(--color-accent-light); font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.92);
  max-width: 640px; margin: 0 0 36px; line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

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

@media (max-width: 768px) {
  .hero {
    padding: 280px 0 60px;
    background-image: url('/images/mobile-hero.jpg?v=1') !important;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(10,20,15,0.20) 0%, rgba(10,20,15,0.42) 50%, rgba(10,20,15,0.85) 100%);
  }
  .hero-content {
    text-align: center; margin: 0 auto;
    max-width: 100%;
  }
  .hero h1 { font-size: 1.8rem; margin-bottom: 14px; }
  .hero-subtitle { display: block; font-size: 0.95rem; margin-bottom: 24px; }
  .hero-buttons { justify-content: center; margin-bottom: 0; gap: 12px; }
  .hero-buttons .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .member-feed-item img { width: 80px; height: 80px; }
  .member-feed-row { gap: 10px; padding: 0 16px; }
  .member-feed-section { padding: 16px 0; }
  .country-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 240px 0 50px; background-position: center 20%; }
  .hero h1 { font-size: 1.6rem; }
  .hero-buttons { flex-direction: row; }
  .hero-buttons .btn-lg { padding: 12px 22px; font-size: 0.88rem; flex: 1; }
  .country-grid { grid-template-columns: 1fr; }
}
.online-dot {
  width: 8px; height: 8px; background: #4CAF50; border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.section { padding: 100px 0; }
.section-alt { background: var(--color-warm-light); }
.section-dark {
  background: var(--color-dark-green);
  color: white;
}

.section-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--color-accent); }

.section-heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25; margin-bottom: 20px;
}
.section-heading em { color: var(--color-primary); font-style: italic; }
.section-dark .section-heading em { color: var(--color-accent); }

.section-subtitle {
  font-size: 1.05rem; color: var(--color-text-light);
  max-width: 640px; line-height: 1.8;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
.pain-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pain-icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.pain-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  margin-bottom: 10px;
}
.pain-card p { color: var(--color-text-light); font-size: 0.95rem; }

.pain-note {
  margin-top: 32px; padding: 24px 32px;
  background: rgba(27,107,74,0.06); border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
  font-size: 0.95rem; color: var(--color-text);
}
.pain-note strong { color: var(--color-primary); }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-image {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  background: var(--color-warm);
}
.split-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-warm-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--color-primary); opacity: 0.3;
}
.split-image-badge {
  position: absolute; top: 20px; left: 20px;
  background: white; padding: 8px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--color-primary);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid; gap: 24px; margin-top: 36px;
}
.feature-item {
  display: flex; gap: 16px;
}
.feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(27,107,74,0.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.feature-item h4 {
  font-size: 1rem; margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.9rem; color: var(--color-text-light);
}

.msg-text-panel {
  display: flex; align-items: center;
}
.msg-text-story h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  margin-bottom: 16px; color: var(--color-text);
}
.msg-text-story p {
  font-size: 1.05rem; color: var(--color-text-light);
  line-height: 1.9; margin-bottom: 20px;
}
.msg-text-story p:last-child { margin-bottom: 0; }

.stats-intro {
  text-align: center; max-width: 680px; margin: 0 auto 56px;
}
.stats-intro p {
  font-size: 1.05rem; line-height: 1.9;
}
.stats-simple-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stats-simple-card {
  background: var(--color-warm-light); border-radius: var(--radius-lg);
  padding: 36px 30px; position: relative; overflow: hidden;
}
.stats-simple-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #E24C6A, #ED7A93);
}
.stats-simple-number {
  font-family: var(--font-display); font-weight: 700; font-size: 3rem;
  color: var(--color-primary); line-height: 1; margin-bottom: 10px;
}
.stats-simple-label {
  font-weight: 700; font-size: 1.05rem; margin-bottom: 10px;
  color: var(--color-text);
}
.stats-simple-card p {
  font-size: 0.92rem; color: var(--color-text-light); line-height: 1.7;
  margin: 0;
}
.stats-quote-block {
  max-width: 700px; margin: 48px auto 0; text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.stats-quote-text {
  font-family: var(--font-display); font-weight: 500; font-size: 1.4rem;
  font-style: italic; line-height: 1.6; color: white;
  margin-bottom: 16px;
}
.stats-quote-attr {
  font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 500;
}

@media (max-width: 768px) {
  .stats-simple-grid { grid-template-columns: 1fr; }
}

.trust-section { text-align: center; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.trust-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.trust-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.trust-card-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(27,107,74,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.trust-card h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 8px;
}
.trust-card p {
  font-size: 0.88rem; color: var(--color-text-light); line-height: 1.6;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

.country-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.country-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition); cursor: pointer;
  text-decoration: none; color: inherit;
}
.country-card:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: var(--color-primary);
}
.country-flag { font-size: 2.5rem; margin-bottom: 12px; }
.country-card h3 { font-size: 1rem; margin-bottom: 4px; }
.country-card p { font-size: 0.85rem; color: var(--color-text-light); }

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-primary) 100%);
  text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px; position: relative;
}
.cta-banner p {
  font-size: 1.1rem; opacity: 0.85;
  margin-bottom: 32px; position: relative;
}
.cta-banner .btn { position: relative; }
.cta-trust {
  margin-top: 20px; font-size: 0.85rem;
  opacity: 0.7; position: relative;
}

.seo-content {
  max-width: 800px; margin: 0 auto;
}
.seo-content h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.6rem; margin-bottom: 16px;
  margin-top: 40px;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.2rem; margin: 28px 0 12px;
}
.seo-content p {
  color: var(--color-text-light); margin-bottom: 16px;
  font-size: 1rem; line-height: 1.85;
}
.seo-content a {
  color: var(--color-primary); text-decoration: underline;
  text-underline-offset: 3px;
}
.seo-content a.btn {
  text-decoration: none;
}
.seo-content a.btn-primary {
  color: white;
}
.seo-content a.btn-outline {
  color: var(--color-primary);
}
.seo-cta {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
}

.footer {
  background: var(--color-dark); color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer h4 {
  color: white; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a {
  font-size: 0.9rem; transition: var(--transition);
}
.footer li a:hover { color: var(--color-accent); }
.footer-flag { margin-right: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
}
.footer-legal a {
  margin-left: 16px; transition: var(--transition);
}
.footer-legal a:hover { color: var(--color-accent); }


.locations-inline {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.locations-inline a {
  background: rgba(27,107,74,0.08); color: var(--color-primary);
  padding: 8px 18px; border-radius: 50px; font-size: 0.88rem;
  font-weight: 500; transition: var(--transition);
}
.locations-inline a:hover {
  background: var(--color-primary); color: white;
}

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: white; border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 24px; z-index: 99; box-shadow: var(--shadow-lg);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block; padding: 12px 0; font-size: 1rem;
  font-weight: 500; color: var(--color-text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav .btn { margin-top: 16px; width: 100%; text-align: center; }

.member-feed-section {
  background: var(--color-dark-green);
  padding: 20px 0;
  overflow: hidden;
}
.member-feed-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  padding: 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.member-feed-row::-webkit-scrollbar {
  display: none;
}
.member-feed-item {
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s;
}
.member-feed-item:hover {
  transform: scale(1.05);
}
.member-feed-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
  display: block;
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .header-utility { display: none; }
  .menu-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* cookie consent */
  .hp-cookie-consent {
    z-index: 999;
    will-change: opacity, visibility;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem;
    max-width: 650px;
    background-color: #011c01cc;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    align-items: center;
    box-shadow: 0 4px 15px #0006;
    transition: opacity .6s ease-in;
    cursor: pointer;
    visibility: hidden;
  }
  .hp-cookie-consent.hp-visible { visibility: visible; }
  .hp-cookie-consent .hp-cookie-content {
    color: #fdfdfd;
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
  }
  .hp-cookie-consent .hp-cookie-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
  }
  .hp-cookie-consent .hp-cookie-wrapper a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }
  .hp-cookie-consent .hp-btn-cookie {
    padding: .5rem;
    display: inline-block;
    background-color: #efefef;
    border: 1px solid #5f5f5f;
    border-radius: 5px;
    color: #5f5f5f;
    min-width: 120px;
    width: max-content;
    cursor: pointer;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 25px;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
  }
  @media screen and (max-width: 47.9375em) {
    .hp-cookie-consent {
      bottom: 0;
      right: 0;
      max-width: 100vw;
      border-radius: 0;
      width: 100%;
    }
  }
