/* ============================================================
   LETSMAKESITES — styles.css
   Complete redesign v2 — 2026
   ============================================================ */

/* ─── CSS Tokens ─────────────────────────────────────────── */
:root {
  --color-bg:       #F8F9F7;
  --color-surface:  #FFFFFF;
  --color-border:   #E8EBE5;
  --color-mint:     #2EC27E;
  --color-mint-bg:  #E8F9F0;
  --color-text:     #0D0D0D;
  --color-muted:    #888888;
  --color-light:    #AAAAAA;
  --color-dark:     #0D0D0D;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ─── Container ──────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ─── Section System ─────────────────────────────────────── */
.sec {
  padding: 3rem;
  border-bottom: 0.5px solid #E8EBE5;
  background: #F8F9F7;
}

.sec.wh {
  background: #ffffff;
}

.sec.dark {
  background: #0D0D0D;
  border-bottom: none;
  color: white;
}

/* ─── Section Labels & Headings ──────────────────────────── */
.sec-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-mint);
  margin-bottom: 1rem;
}

.sec-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-mint {
  background: var(--color-mint);
  color: white;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn-mint:hover {
  background: #27ae6f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 194, 126, 0.25);
  opacity: 1;
}

.btn-mint:active {
  transform: translateY(0) scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--color-text);
  color: #0D0D0D;
  opacity: 1;
}

.btn-ghost .arr {
  display: inline-block;
  transition: transform 0.2s;
}

.btn-ghost:hover .arr {
  transform: translate(2px, -2px);
}

/* ─── Fade-up Animation ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   NAV
   ============================================================ */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 0.5px solid var(--color-border);
  transition: box-shadow 0.3s, border-color 0.3s;
}

#main-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text);
  text-decoration: none;
  margin-right: auto;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-top: 0.5px solid var(--color-border);
  background: white;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.9rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 0.5px solid var(--color-border);
}

.mobile-menu .btn {
  margin: 1rem 1.5rem;
  border-radius: 100px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: white;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 6vw, 4rem);
  border-bottom: 0.5px solid var(--color-border);
  position: relative;
}

.hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 88px;
  height: 88px;
  border: 0.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
}

.badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-mint);
  line-height: 1;
}

.badge-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #BBB;
  margin-top: 2px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--color-mint);
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

.eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-mint);
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--color-text);
  margin-bottom: 0;
}

.hero-title .line {
  display: block;
}

.hero-title .line-mint {
  color: var(--color-mint);
}

.hero-title .line-sub {
  color: #C8CECC;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  margin-top: 0.5rem;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #888;
  max-width: 400px;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--color-mint);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-content {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  padding: 1.1rem 0;
  flex-shrink: 0;
}

.marquee-content .sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.8em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.svc-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.svc-card:hover {
  background: #F4FBF7;
}

.svc-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-mint-bg);
  color: var(--color-mint);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
}

.svc-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 0.5px solid #E8EBE5;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.25s;
}

.svc-icon-wrap i {
  font-size: 1.1rem;
  color: #CCC;
  transition: color 0.25s;
}

.svc-card:hover .svc-icon-wrap {
  border-color: #2EC27E;
  background: #F0FBF6;
}

.svc-card:hover .svc-icon-wrap i {
  color: #2EC27E;
}

.svc-arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 0.75rem;
  color: #2EC27E;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.svc-card:hover .svc-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.svc-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: #999;
  line-height: 1.6;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.process-step {
  padding: 2rem 1.75rem;
  position: relative;
  border-right: 0.5px solid var(--color-border);
}

.process-step:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-mint);
  display: block;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  right: -0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-surface);
  color: var(--color-mint);
  font-size: 1rem;
  line-height: 1;
  padding: 0.1rem;
  z-index: 1;
}

/* ============================================================
   AI TECHNOLOGY
   ============================================================ */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
}

.video-glow {
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(46, 194, 126, 0.2),
    0 20px 60px rgba(46, 194, 126, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 0;
  pointer-events: none;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(46, 194, 126, 0.35);
  z-index: 1;
  background: #0D0D0D;
}

.ai-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease;
  z-index: 2;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46, 194, 126, 0.15);
  border: 1px solid rgba(46, 194, 126, 0.5);
  color: #2EC27E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
  padding-left: 3px;
}

.play-btn:hover {
  background: rgba(46, 194, 126, 0.3);
  border-color: #2EC27E;
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(46, 194, 126, 0.35);
}


.ai-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.56rem;
  color: #AACFBB;
  text-align: center;
}

.ai-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.ai-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.port-card {
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.port-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--color-mint-bg) 0%, var(--color-border) 100%);
}

.port-soon .port-thumb {
  background: #F0F0EE;
}

.port-meta {
  padding: 1.5rem;
}

.port-tag {
  background: var(--color-mint-bg);
  color: var(--color-mint);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  display: inline-block;
}

.port-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--color-text);
}

.port-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--color-mint);
  text-decoration: none;
}

.port-link:hover {
  text-decoration: underline;
}

.port-soon-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--color-light);
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 0.5px solid var(--color-border);
  background: var(--color-surface);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1rem;
  color: var(--color-muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-mint);
}

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

.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */

.cta-top {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cta-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  color: white;
}

.text-mint {
  color: var(--color-mint);
}

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-wa {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-mint);
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-wa:hover {
  opacity: 0.8;
}

#contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-mint);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #FF6B6B;
}

.form-group select option {
  background: #1a1a1a;
  color: white;
}

.field-error {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #FF6B6B;
  margin-top: 0.25rem;
  min-height: 1em;
}

#contact-form .btn-mint {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
}

.form-success {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  padding: 3rem 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0D0D0D;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem clamp(1.5rem, 5vw, 3rem) 2rem;
}

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

.footer-brand .nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand .nav-logo span {
  color: var(--color-mint);
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #2EC27E;
}

.footer-bottom {
  background: #0D0D0D;
  padding: 1rem 3rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-inner > .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

  .hero-badge {
    display: none;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .step-arrow {
    display: none;
  }

}

/* ─── Lang Toggle ─────────────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
}

.lang-btn .flag {
  font-size: 20px;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.lang-btn .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2EC27E;
  opacity: 0;
  transition: opacity 0.2s;
}

.lang-btn.active .flag {
  opacity: 1;
}

.lang-btn.active .dot {
  opacity: 1;
}

/* Lang toggle inside mobile menu */
.mobile-menu .lang-toggle {
  padding: 0.9rem 1.5rem;
  border-bottom: 0.5px solid var(--color-border);
  justify-content: flex-start;
  gap: 0.6rem;
}
