/* ====== SITE NAV ====== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(92, 122, 78, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
.nav-brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: var(--cream);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: var(--cream);
}
.nav-cta {
  background: var(--cta-red) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 7px !important;
  font-weight: 700 !important;
  transition: all 0.25s ease !important;
}
.nav-cta:hover {
  background: var(--cta-red-hover) !important;
  transform: translateY(-1px);
}

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
}
.nav-toggle svg {
  display: block;
}

/* ====== SERVICE CARDS ====== */
.services {
  padding: 90px 0;
}
.services h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 12px;
}
.services-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 540px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  background: rgba(0,0,0,0.16);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cream);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cream);
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-card .card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.service-card:hover .card-link {
  opacity: 1;
}

/* ====== WHY DIFFERENT ====== */
.why-different {
  padding: 90px 0;
}
.why-different h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 16px;
}
.why-different-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.why-point svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-green);
}
.why-point strong {
  color: var(--text-on-sage);
}
.why-quote {
  margin-top: 32px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 3vw, 22px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid rgba(255,255,255,0.15);
}
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.about-content .why-different-intro {
  max-width: none;
}
.about-content .why-points {
  margin-top: 0;
}
/* ====== BLOG ====== */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-card {
  display: block;
  background: rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 28px 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.blog-card:hover {
  background: rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cream);
}
.blog-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* blog article */
.article-header {
  padding: 80px 0 40px;
  text-align: center;
}
.article-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.article-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.article-body {
  padding: 0 0 60px;
  max-width: 680px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 400;
  margin: 40px 0 14px;
}
.article-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.article-body p strong {
  color: var(--text-on-sage);
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-body li {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-body li strong {
  color: var(--text-on-sage);
}
.article-body blockquote {
  border-left: 3px solid rgba(255,255,255,0.15);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--cream);
}
.article-cta {
  background: rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.article-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.article-cta .btn {
  margin: 0 auto;
}

/* red X variant for "problems" lists */
.why-point.nogo svg {
  color: var(--nogo-red);
}

/* ====== PLATFORMS / TAG LIST ====== */
.platform-list {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.platform-list strong {
  color: var(--text-on-sage);
}

/* ====== HERO ====== */
.hero {
  padding: 100px 0 90px;
  text-align: center;
}

.hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.2);
  animation: scaleIn 0.6s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 6px;
  animation: fadeIn 0.6s ease 0.1s both;
}
.hero-intro strong {
  color: var(--text-on-sage);
  font-weight: 600;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin: 28px 0 32px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero h1 .underline {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-color: var(--cream);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.6;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.7s ease 0.4s both;
  flex-wrap: wrap;
}

.hero-phone {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  animation: fadeUp 0.7s ease 0.5s both;
  margin-top: 16px;
  display: inline-block;
}
.hero-phone:hover { color: var(--cream); }

/* ====== BUTTONS ====== */
.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-apply {
  background: var(--cta-red);
  color: #fff;
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--cta-red-glow);
  letter-spacing: 0.2px;
}
.btn-apply:hover {
  background: var(--cta-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--cta-red-glow), 0 0 0 4px rgba(196,69,58,0.12);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ====== HOW IT WORKS ====== */
.how-it-works {
  padding: 90px 0;
}
.how-it-works h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}
.how-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 540px;
}
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
}
.step + .step {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--cream);
}
.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.step-content strong { color: var(--text-on-sage); }

/* ====== PROOF ====== */
.proof {
  padding: 90px 0;
}
.proof h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 10px;
}
.proof-context {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.5;
}
.proof-context strong { color: var(--text-on-sage); }

/* stat banner */
.stat-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--dark);
  border-radius: 16px;
  padding: 36px 0;
  margin-bottom: 24px;
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 44px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* before/after */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.result-card {
  padding: 28px 24px;
  border-radius: 14px;
}
.result-card.before { background: rgba(0,0,0,0.12); }
.result-card.after { background: rgba(0,0,0,0.2); }
.result-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.result-card.before .result-card-label { color: var(--text-muted); }
.result-card.after .result-card-label { color: var(--accent-green); }
.result-card-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.result-card.before .dot { background: var(--text-muted); }
.result-card.after .dot { background: var(--accent-green); }
.result-stat { margin-bottom: 16px; }
.result-stat:last-child { margin-bottom: 0; }
.result-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 3px;
}
.result-card.before .result-number { color: var(--text-muted); }
.result-card.after .result-number { color: var(--cream); }
.result-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  padding: 90px 0;
}
.testimonials h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
.testimonials-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}
.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card {
  background: rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 32px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(0,0,0,0.12);
}
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-text {
  font-size: 16.5px;
  line-height: 1.6;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.12);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; font-size: 14.5px; }
.author-title { font-size: 13px; color: var(--text-muted); }

/* ====== CONTACT FORM ====== */
.contact {
  padding: 90px 0 100px;
  text-align: center;
}
.contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 10px;
}
.contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact-phone {
  font-size: 17px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 40px;
  transition: opacity 0.2s;
}
.contact-phone:hover { opacity: 0.8; }

.contact-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.form-input,
.form-textarea {
  background: rgba(0,0,0,0.12);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(244,241,235,0.35);
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* intl-tel-input overrides */
.iti { width: 100%; }
.iti .form-input { padding-left: 90px; }
.iti__country-container { --iti-border-color: transparent; }
.iti__selected-country {
  background: transparent !important;
  border-radius: 10px 0 0 10px;
  padding-left: 12px;
}
.iti__arrow { border-top-color: var(--text-muted); }
.iti__dropdown-content {
  background: var(--sage-dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
}
.iti__country { color: var(--cream); }
.iti__country:hover, .iti__country--highlight { background: rgba(255,255,255,0.1); }
.iti__dial-code { color: var(--text-muted); }
.iti__search-input {
  background: rgba(0,0,0,0.2);
  color: var(--cream);
  border-color: rgba(255,255,255,0.1);
}

.form-submit {
  margin-top: 22px;
  width: 100%;
  background: var(--cta-red);
  color: #fff;
  padding: 16px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--cta-red-glow);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: var(--cta-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--cta-red-glow), 0 0 0 4px rgba(196,69,58,0.12);
}

/* ====== FOOTER ====== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.footer-col {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: var(--cream);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--cream); }
.footer-col-center {
  text-align: center;
  align-self: center;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-badge svg {
  opacity: 0.6;
}
.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--cream); }
.footer-col-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}
.footer-social a:hover {
  color: var(--cream);
  transform: translateY(-1px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 640px) {
  .hero { padding: 80px 0 70px; }
  .how-it-works, .proof, .testimonials, .contact, .services, .why-different { padding: 70px 0; }
  .results-grid { grid-template-columns: 1fr; }
  .stat-banner { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .stat-item + .stat-item::before { display: none; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-text { font-size: 15.5px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col-right { text-align: center; align-items: center; }
  .footer-social { justify-content: center; }
  .footer-contact { align-items: center; }
  .trust-badges { flex-direction: column; align-items: center; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about-photo img { max-width: 280px; margin: 0 auto; }
  .about-content .why-points { text-align: left; }

  /* mobile nav */
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(78, 106, 66, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
  }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    display: block;
    width: 100%;
  }
}
