/* =============================================
   TOROLab Agency — Main Stylesheet v2
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a12;
  color: #f0f0f8;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --purple:     #7B2FBE;
  --violet:     #9D4EDD;
  --pink:       #FF006E;
  --cyan:       #00D4FF;
  --dark:       #0a0a12;
  --card:       #12121e;
  --card2:      #16162a;
  --border:     rgba(155,78,221,0.25);
  --text-muted: #a0a0c0;
  --grad:  linear-gradient(135deg, #7B2FBE 0%, #FF006E 50%, #00D4FF 100%);
  --grad2: linear-gradient(135deg, #9D4EDD, #FF006E);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* =============================================
   SVG ICON COLORS
   ============================================= */
.srv-icon svg,
.why-icon svg       { color: var(--violet); display: block; }
.contact-item-icon svg { color: var(--violet); display: block; }
.hh-icon svg        { color: var(--cyan); display: block; }
.plan-features .icon svg { display: block; }
.plan-features .icon     { color: var(--violet); }
.plan-features .icon.no  { color: #ff4d4d; }
.img-tag svg        { color: #fff; vertical-align: middle; margin-right: 4px; display: inline; }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left  { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   NAVIGATION
   ============================================= */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(10,10,18,0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.lang-bar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.lang-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.35rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: var(--text-muted); transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.lang-btn { display: flex; gap: 6px; }
.lang-btn button {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); padding: 4px 12px;
  border-radius: 20px; font-size: .8rem;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.lang-btn button.active {
  background: var(--violet); border-color: var(--violet); color: #fff;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.hamburger span {
  width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: .3s;
}
.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 24px 20px; gap: 14px;
  border-top: 1px solid var(--border);
}
.mobile-menu a { font-size: .95rem; color: var(--text-muted); }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
/* Background image with overlay */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/toy-elephant-with-boombox-tape-recorder-purple-background.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.18) saturate(1.4);
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute; top: -30%; left: -20%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(123,47,190,0.35) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,47,190,0.2); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 16px;
  font-size: .8rem; font-weight: 500;
  color: var(--violet); margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--cyan); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp .9s .15s ease both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .9s .3s ease both; }
.btn-primary {
  background: var(--grad2); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(255,0,110,0.3);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(255,0,110,0.5); }
.btn-outline {
  background: transparent; border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--violet); background: rgba(123,47,190,0.1); }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  position: relative; width: 100%; max-width: 420px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  animation: fadeUp .9s .2s ease both;
}
.hero-img-wrap img {
  width: 100%; height: 360px;
  object-fit: cover; object-position: center;
  filter: brightness(.75) saturate(1.2);
}
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(10,10,18,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-img-badge .big { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-img-badge .small { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }

/* Stats */
.stats-row { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; animation: fadeUp .9s .45s ease both; }
.stat-pill {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 20px; text-align: center;
}
.stat-pill .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-pill .lbl { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

/* =============================================
   COUNTERS / TRUST STRIP
   ============================================= */
#counters {
  background: linear-gradient(135deg, rgba(123,47,190,.15), rgba(0,212,255,.07));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}
.counters-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.counter-item {}
.counter-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 700;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.counter-suffix { display: inline; }
.counter-label {
  font-size: .88rem; color: var(--text-muted);
  margin-top: 8px; line-height: 1.4;
}

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--violet); margin-bottom: 12px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.glow-divider {
  width: 80px; height: 3px;
  background: var(--grad2); border-radius: 2px; margin: 16px 0 0;
}

/* =============================================
   WHY US — FAST & EFFECTIVE
   ============================================= */
#whyus { background: var(--dark); }
.whyus-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 56px;
}
.whyus-img {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
}
.whyus-img img {
  width: 100%; height: 460px;
  object-fit: cover; object-position: center;
  filter: brightness(.7) saturate(1.3);
  transition: transform .6s ease;
}
.whyus-img:hover img { transform: scale(1.04); }
.whyus-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,18,.85) 0%, transparent 60%);
}
.whyus-img-tag {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.img-tag {
  background: rgba(123,47,190,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 50px;
  padding: 6px 16px; font-size: .8rem; font-weight: 600;
}
.whyus-points { display: flex; flex-direction: column; gap: 28px; }
.why-point {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; background: var(--card);
  border-radius: 18px; border: 1px solid var(--border);
  transition: border-color .3s, transform .3s;
}
.why-point:hover { border-color: var(--violet); transform: translateX(6px); }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(123,47,190,.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border: 1px solid var(--border);
}
.why-point h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-point p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   SERVICES
   ============================================= */
#services { background: var(--card); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.srv-card {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s, border-color .3s;
  position: relative;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--grad2);
  opacity: 0; transition: opacity .3s;
}
.srv-card:hover { transform: translateY(-8px); border-color: var(--violet); }
.srv-card:hover::before { opacity: 1; }
.srv-img {
  width: 100%; height: 180px;
  object-fit: cover; object-position: center;
  filter: brightness(.6) saturate(1.3);
  transition: transform .4s;
}
.srv-card:hover .srv-img { transform: scale(1.05); }
.srv-body { padding: 28px; }
.srv-icon {
  width: 52px; height: 52px;
  background: rgba(123,47,190,.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px; border: 1px solid var(--border);
  margin-top: -44px; position: relative; z-index: 1;
}
.srv-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
}
.srv-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.srv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.srv-tag {
  background: rgba(123,47,190,.12); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: .75rem; color: var(--violet);
}

/* =============================================
   EXPERIENCE / SKILL BARS
   ============================================= */
#experience { background: var(--dark); }
.exp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 56px;
}
.exp-items { display: flex; flex-direction: column; gap: 24px; }
.exp-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: var(--card);
  border-radius: 16px; border: 1px solid var(--border);
  transition: border-color .3s;
}
.exp-item:hover { border-color: var(--violet); }
.exp-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  min-width: 56px;
}
.exp-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.exp-item p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.exp-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.skill-bar-item { display: flex; flex-direction: column; gap: 8px; }
.skill-bar-label { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 500; }
.skill-bar-track { height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; }
.skill-bar-fill  { height: 100%; border-radius: 3px; background: var(--grad2); transform-origin: left; }

/* =============================================
   CLIENTS / LOGOS
   ============================================= */
#clients { background: var(--card); padding: 80px 24px; }
.clients-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.clients-title {
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-muted); margin-bottom: 40px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px; align-items: center;
}
.logo-slot {
  background: var(--dark); border: 1px dashed var(--border);
  border-radius: 14px; padding: 24px 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 80px; transition: border-color .3s, background .3s;
  cursor: pointer; position: relative; overflow: hidden;
}
.logo-slot:hover { border-color: var(--violet); background: rgba(123,47,190,.06); }
.logo-slot img {
  max-height: 44px; max-width: 130px;
  object-fit: contain; filter: grayscale(1) brightness(1.5);
  transition: filter .3s;
}
.logo-slot:hover img { filter: grayscale(0) brightness(1); }
.logo-placeholder {
  font-size: .78rem; color: rgba(255,255,255,.2);
  text-align: center; line-height: 1.4;
}
.logo-placeholder span { display: block; font-size: 1.3rem; margin-bottom: 4px; }

/* =============================================
   PRICING
   ============================================= */
#pricing { background: var(--dark); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 56px; align-items: start;
}
.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 28px;
  position: relative; transition: transform .3s;
}
.plan-card.featured {
  background: linear-gradient(160deg,rgba(123,47,190,.18),rgba(0,212,255,.08));
  border-color: var(--violet); transform: scale(1.03);
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad2); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 4px 18px; border-radius: 20px; letter-spacing: .05em;
}
/* Plan header icons */
.plan-icon {
  width: 56px; height: 56px;
  border-radius: 16px; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: transform .3s;
}
.plan-card:hover .plan-icon { transform: scale(1.08); }
.plan-icon--starter    { background: rgba(0,212,255,.12);  color: var(--cyan);   border-color: rgba(0,212,255,.25); }
.plan-icon--pro        { background: var(--grad2);          color: #fff;          border: none; box-shadow: 0 0 24px rgba(255,0,110,.35); }
.plan-icon--enterprise { background: rgba(255,200,60,.12); color: #ffc83c;       border-color: rgba(255,200,60,.3); }

.plan-name     { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.plan-tagline  { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-price    { margin-bottom: 8px; }
.plan-price .amount {
  font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.plan-price .period { font-size: .9rem; color: var(--text-muted); }
.plan-setup   { font-size: .8rem; color: var(--text-muted); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.5; }
.plan-features li .icon     { color: var(--violet); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.plan-features li .icon.no  { color: #ff4d4d; }
.plan-hh {
  display: flex; align-items: center; gap: 10px;
  background: rgba(123,47,190,.12); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  margin-top: 28px; margin-bottom: 24px;
}
.plan-hh .hh-icon { font-size: 1.4rem; }
.plan-hh .hh-text { font-size: .85rem; }
.plan-hh .hh-text strong { color: var(--cyan); }
.plan-cta {
  display: block; text-align: center;
  background: transparent; border: 1px solid var(--border);
  color: #fff; padding: 14px; border-radius: 50px;
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: all .2s; width: 100%; font-family: inherit;
}
.plan-cta:hover { border-color: var(--violet); background: rgba(123,47,190,.15); }
.plan-card.featured .plan-cta { background: var(--grad2); border-color: transparent; box-shadow: 0 0 30px rgba(255,0,110,.3); }
.plan-card.featured .plan-cta:hover { box-shadow: 0 0 45px rgba(255,0,110,.5); }

/* =============================================
   CONTACT
   ============================================= */
#contact { background: var(--card); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; margin-top: 56px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(123,47,190,.15); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}
.contact-item h4 { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.contact-item p  { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.contact-form {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
}
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  color: #fff; font-family: inherit; font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--violet); }
.form-group select option { background: var(--card2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--grad2); border: none;
  color: #fff; padding: 14px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  font-family: inherit; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(255,0,110,.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(255,0,110,.5); }
.form-success { display: none; text-align: center; padding: 20px; color: var(--cyan); font-weight: 600; font-size: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark); border-top: 1px solid var(--border); padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-size: 1.1rem; }
.footer-copy  { font-size: .82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .82rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--violet); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .whyus-grid      { grid-template-columns: 1fr; }
  .whyus-img       { display: none; }
  .exp-grid        { grid-template-columns: 1fr; }
  .exp-visual      { display: none; }
  .contact-grid    { grid-template-columns: 1fr; }
  .nav-links       { display: none; }
  .hamburger       { display: flex; }
  .counters-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  section                 { padding: 70px 20px; }
  .form-row               { grid-template-columns: 1fr; }
  .hero                   { padding: 100px 20px 60px; }
  .plan-card.featured     { transform: none; }
  .counters-grid          { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .logos-grid             { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   LANGUAGE TOGGLE DISPLAY
   ============================================= */
[data-lang]            { display: none; }
[data-lang].active     { display: block; }
span[data-lang].active { display: inline; }
li[data-lang].active   { display: flex; }
