/* ===== Reset & base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; width: 100%; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
}

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

:root {
  --green-dark: #1c3f2f;
  --green-darker: #163224;
  --green-accent: #4caf7d;
  --white: #ffffff;
  --gray-text: #cfd9d3;
}

/* ===== Header ===== */
.site-header { width: 100%; }

.announcement-bar {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}

.announcement-bar a {
  text-decoration: underline;
  font-weight: 600;
}

.main-nav {
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo img { height: 55px; }

.primary-nav ul {
  display: flex;
  gap: 32px;
}

.primary-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
}

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

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

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  color: var(--green-accent);
}

.btn {
  --btn-pad: 10px 22px;
  display: inline-block;
  padding: var(--btn-pad);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.14);
}

.btn:active {
  transform: translateY(-1px) scale(0.97);
  transition: transform 0.1s ease;
}

.btn-slide {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  flex-shrink: 0;
  padding: var(--btn-pad);
}

a.btn[data-slide-init],
button.btn[data-slide-init] {
  padding: 0;
}

.btn:hover .btn-slide {
  transform: translateY(-50%);
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}

.btn-primary:hover { background: var(--green-darker); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #1a1a1a;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background-color: var(--green-dark);
  padding-top: 64px;
  padding-bottom: 96px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/pattern-bg.png');
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: end;
  gap: 24px;
}

.hero-person {
  position: relative;
  display: flex;
  justify-content: center;
}

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

.hero-badge {
  position: absolute;
  width: 190px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.badge-top-left {
  top: 24px;
  left: -20px;
  width: 170px;
}

.badge-bottom-left {
  bottom: 40px;
  left: -30px;
  width: 200px;
}

.badge-top-right {
  top: 24px;
  right: -20px;
  width: 170px;
}

.badge-bottom-right {
  bottom: 40px;
  right: -30px;
  width: 210px;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-eyebrow span {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--gray-text);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-hero-primary {
  background: var(--green-accent);
  color: var(--green-darker);
}

.btn-hero-primary:hover { background: #3f9c6a; }

.btn-hero-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-hero-outline:hover { background: rgba(255,255,255,0.08); }

.hero-bottom-bar {
  background: var(--white);
  border-radius: 12px;
  
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-bottom-title {
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  white-space: nowrap;
}

.hero-bottom-title span {
  color: var(--green-accent);
  margin-right: 6px;
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-person { order: 2; margin-top: 40px; }
  .hero-content { order: 1; padding-bottom: 20px; }
  .hero-person-right { order: 3; }
  .hero-badge { width: 150px; }
  .badge-top-left, .badge-bottom-left { left: 8px; }
  .badge-top-right, .badge-bottom-right { right: 8px; }
  .badge-bottom-left, .badge-bottom-right { bottom: 10px; }
  .hero-bottom-bar { margin-top: 32px; justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 32px; }
  .hero-badge { position: static; width: 160px; margin: 12px auto 0; box-shadow: none; }
  .hero-person { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-logos { justify-content: center; gap: 20px; }
}

/* ===== About / Expertise ===== */
.about {
  background: var(--white);
  padding: 96px 24px;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.about-media {
  display: flex;
  gap: 20px;
  height: 480px;
  flex: 1.05;
}

.about-media-left,
.about-media-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.about-photo {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.about-photo-story::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0) 50%);
}

.about-media-left .about-badge-card {
  flex: none;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 10px 14px;
}

.about-media-left .about-badge-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content { flex: 1; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.section-eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--green-dark);
}

.about-content h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.highlight {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.about-text {
  color: #555;
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 36px;
}

.stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.stat-icon { color: var(--green-dark); flex-shrink: 0; }

.stat-value { font-size: 22px; font-weight: 700; }

.stat-item p {
  font-size: 13px;
  color: #777;
  max-width: 220px;
}

@media (max-width: 992px) {
  .about-inner { flex-direction: column; }
  .about-media { width: 100%; }
}

@media (max-width: 640px) {
  .about { padding: 64px 20px; }
  .about-media { flex-direction: column; height: auto; }
  .about-media-left, .about-media-right { flex-direction: row; height: 220px; }
  .about-media-right .about-photo { flex: 1; }
  .about-media-left .about-badge-card { flex: 1; display: flex; align-items: center; }
  .about-content h2 { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== Categories ===== */
.categories {
  background: #eef3ec;
  padding: 96px 24px;
}

.categories-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.categories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.categories-header h2 {
  font-size: 32px;
  line-height: 1.2;
}


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

.category-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.category-icon {
  width: 48px;
  height: 48px;
  background: #eaf3ec;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.category-icon img { width: 24px; height: 24px; }

.category-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 13px;
  color: #888;
}

@media (max-width: 992px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .categories { padding: 64px 20px; }
  .categories-grid { grid-template-columns: 1fr; }
  .categories-header { align-items: flex-start; }
  .categories-header .btn { width: 100%; text-align: center; }
}

/* ===== Pricing ===== */
.pricing {
  background: var(--white);
  padding: 96px 24px;
  text-align: center;
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow-center {
  justify-content: center;
  margin-bottom: 18px;
}

.section-eyebrow-center span { background: var(--green-dark); }

.pricing h2 {
  font-size: 32px;
  line-height: 1.35;
  max-width: 640px;
  margin: 0 auto 36px;
}

.plan-toggle {
  display: inline-flex;
  background: #f1f3f1;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 48px;
}

.plan-toggle button {
  border: none;
  background: none;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #777;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.plan-toggle button.active {
  background: var(--green-dark);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.plan-card {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px;
}

.plan-card.featured {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  transform: scale(1.04);
  box-shadow: 0 24px 48px rgba(0,0,0,0.16);
  position: relative;
  z-index: 1;
}

.plan-card h3 { font-size: 20px; margin-bottom: 6px; }

.plan-subtitle { font-size: 13px; color: #888; margin-bottom: 20px; }

.plan-card.featured .plan-subtitle { color: rgba(255,255,255,0.7); }

.plan-price { font-size: 38px; font-weight: 700; margin-bottom: 22px; }

.plan-price span { font-size: 14px; font-weight: 500; color: #888; }

.plan-card.featured .plan-price span { color: rgba(255,255,255,0.7); }

.plan-btn { width: 100%; text-align: center; }

.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: #eef3ee; }

.plan-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.plan-card.featured .plan-features li { color: rgba(255,255,255,0.9); }

.plan-check { flex-shrink: 0; color: var(--green-dark); margin-top: 2px; }

.plan-card.featured .plan-check { color: var(--white); }

.pricing-note {
  margin: 48px auto 0;
  max-width: 900px;
  font-size: 12px;
  color: #999;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
}

@media (max-width: 640px) {
  .pricing { padding: 64px 20px; }
  .pricing h2 { font-size: 26px; }
}

/* ===== Course Catalog ===== */
.catalog {
  background: #eef3ec;
  padding: 96px 24px;
  text-align: center;
}

.catalog-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.catalog-heading {
  font-size: 32px;
  margin-bottom: 16px;
}

.catalog-sub {
  max-width: 560px;
  margin: 0 auto 48px;
  color: #666;
  font-size: 15px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 48px;
}

.course-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.course-card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.course-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-body { padding: 20px 22px 24px; }

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.course-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.course-desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 18px;
  line-height: 1.5;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.course-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

.course-price span {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 4px;
}

.course-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.course-rating svg { color: #f5b400; }

.catalog-cta { text-align: center; }

@media (max-width: 992px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .catalog { padding: 64px 20px; }
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ===== Seminar Signup ===== */
.seminar {
  background: var(--white);
  padding: 96px 24px;
}

.seminar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.seminar-content { flex: 1; padding-top: 8px; }

.seminar-content h2 {
  font-size: 36px;
  line-height: 1.25;
  margin: 14px 0 18px;
}

.seminar-text {
  color: #666;
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 36px;
}

.seminar-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.seminar-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.seminar-features svg { flex-shrink: 0; color: #1a1a1a; }

.seminar-form-wrap {
  flex: 1;
  background: #eef3ec;
  border-radius: 16px;
  padding: 44px;
}

.form-row {
  display: flex;
  gap: 28px;
  margin-bottom: 26px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
  position: relative;
}

.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.form-field input,
.form-field select {
  border: none;
  border-bottom: 1px solid #c9d3cc;
  background: transparent;
  padding: 4px 0 10px;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  font-family: inherit;
  border-radius: 0;
}

.form-field select { cursor: pointer; }

.form-field input:focus,
.form-field select:focus { border-color: var(--green-dark); }

.form-field-icon .field-icon {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: #2f80ed;
  pointer-events: none;
}

.form-topics { margin-bottom: 28px; }

.topics-label {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.topics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.topic-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-dark);
  cursor: pointer;
}

.topic-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--green-dark);
  cursor: pointer;
}

.seminar-submit {
  --btn-pad: 14px 22px;
  width: 100%;
  text-align: center;
  padding: var(--btn-pad);
  margin-bottom: 16px;
}

.seminar-fineprint {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.seminar-fineprint a {
  color: #b0662f;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .seminar-inner { flex-direction: column; }
  .seminar-form-wrap { width: 100%; }
}

@media (max-width: 640px) {
  .seminar { padding: 64px 20px; }
  .seminar-content h2 { font-size: 28px; }
  .seminar-form-wrap { padding: 28px; }
  .form-row { flex-direction: column; gap: 26px; }
}

/* ===== Blog ===== */
.blog {
  background: #eef3ec;
  padding: 96px 24px;
  text-align: center;
}

.blog-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-heading { font-size: 32px; margin-bottom: 16px; }

.blog-sub {
  max-width: 560px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 48px;
}

.blog-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.blog-meta .divider { color: #bbb; }

.blog-card h3 {
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 22px;
}

.blog-card .btn {
  --btn-pad: 9px 20px;
  padding: var(--btn-pad);
  font-size: 13px;
}

@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .blog { padding: 64px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== Explore Courses ===== */
.explore {
  background: var(--white);
  padding: 96px 24px;
  text-align: center;
}

.explore-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.explore-heading { font-size: 32px; margin-bottom: 16px; }

.explore-sub {
  max-width: 620px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 48px;
}

.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px;
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
}

.explore-teal { background: #1789a3; }
.explore-green { background: var(--green-dark); }
.explore-pink { background: #d6236e; }

.explore-tag {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.explore-card h3 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  line-height: 1.3;
  max-width: 75%;
}

.explore-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  max-width: 230px;
  height: auto;
  z-index: 1;
}

.explore-play {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.explore-play:hover { transform: scale(1.08); }

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

@media (max-width: 640px) {
  .explore { padding: 64px 20px; }
  .explore-grid { grid-template-columns: 1fr; }
}

/* ===== App Download ===== */
.app-download {
  background: #eef3ec;
  padding: 96px 24px;
}

.app-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.app-content { flex: 1; }

.app-content h2 {
  font-size: 40px;
  line-height: 1.25;
  margin: 14px 0 18px;
}

.app-text {
  color: #666;
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 30px;
}

.app-stores {
  display: flex;
  gap: 16px;
  margin-bottom: 34px;
}

.app-stores img { height: 48px; width: auto; }

.app-stats {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 40px;
}

.app-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-media img {
  max-width: 480px;
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .app-inner { flex-direction: column; text-align: center; }
  .app-text { margin-left: auto; margin-right: auto; }
  .app-stores { justify-content: center; }
  .app-stats { justify-content: center; }
  .app-media { order: -1; max-width: 360px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .app-download { padding: 64px 20px; }
  .app-content h2 { font-size: 30px; }
  .app-stores { flex-wrap: wrap; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 56px 24px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.pill-link {
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.pill-link:hover { background: rgba(255,255,255,0.1); }

.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-cta h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.footer-cta p {
  color: var(--gray-text);
  font-size: 14px;
  max-width: 380px;
  margin-bottom: 18px;
}

.contact-link {
  font-weight: 600;
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  color: var(--gray-text);
  font-size: 14px;
}

.footer-col ul a:hover { color: var(--white); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list li i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-accent);
}

.footer-contact-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.footer-contact-list li a,
.footer-contact-list li span {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.4;
}

.footer-contact-list li a:hover { color: var(--white); }

.footer-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 20px;
}

.footer-certificate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 6px 14px 6px 6px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.footer-certificate:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

.footer-certificate img {
  height: 34px;
  width: auto;
  border-radius: 4px;
  background: var(--white);
  padding: 3px;
}

.footer-certificate span {
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
  color: var(--gray-text);
}

.footer-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.social-icon i,
.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

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

.footer-logo img {
  height: 55px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.footer-legal-links a::after {
  content: "|";
  margin-left: 8px;
  color: rgba(255,255,255,0.3);
}

.footer-legal-links a:last-child::after { content: ""; }

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

.copyright {
  font-size: 13px;
  color: var(--gray-text);
}

.footer-newsletter { min-width: 320px; max-width: 100%; }

.footer-newsletter h4 { font-size: 18px; margin-bottom: 10px; }

.footer-newsletter p {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.footer-newsletter p a { text-decoration: underline; color: var(--white); }

.newsletter-form {
  display: flex;
  max-width: 420px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  background: var(--green-darker);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form button:hover { background: #0f2318; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .primary-nav { display: none; }

  .primary-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    z-index: 10;
  }

  .primary-nav.open ul {
    flex-direction: column;
    gap: 16px;
  }

  .menu-toggle { display: flex; }
  .main-nav { position: relative; }

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

@media (max-width: 640px) {
  .nav-actions .btn-primary { display: none; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .newsletter-form { max-width: 100%; }
}

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

@media (max-width: 480px) {
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .nav-actions { gap: 10px; }
  .site-footer { padding: 40px 16px 20px; }
  .pill-link { padding: 10px 14px; font-size: 13px; }
  .footer-links-row { gap: 10px; }
  .footer-newsletter { min-width: 0; width: 100%; }
}

/* ===== Back to Top ===== */
.back-to-top {
  appearance: none;
  -webkit-appearance: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, visibility 0.25s;
  z-index: 60;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-darker);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 15, 0.85);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 560px);
  max-height: 85vh;
  animation: lightbox-in 0.2s ease;
}

.lightbox-content img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10, 20, 15, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover { background: var(--green-dark); }

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
  .lightbox-close { top: 12px; right: 12px; width: 36px; height: 36px; }
}
