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

:root {
  --primary:      #0C1E28;   /* deep teal — matches icon background */
  --accent:       #D97706;   /* warm amber — matches icon glow */
  --accent-light: #F59E0B;   /* bright amber */
  --surface:      #102838;   /* teal surface */
  --surface2:     #142E3C;   /* slightly lighter teal */
  --text:         #F0F6FF;
  --text-muted:   #8AAFC0;
  --border:       #1C3848;
  --radius:       16px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 30, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-text { font-size: 18px; font-weight: 800; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-light) !important; color: #0C1E28 !important; }
.lang-picker {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.lang-picker a {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
  padding: 5px 9px !important;
  text-decoration: none;
  letter-spacing: .4px;
  transition: background .15s, color .15s !important;
  border-right: 1px solid var(--border);
}
.lang-picker a:last-child { border-right: none; }
.lang-picker a:hover { background: rgba(255,255,255,.08); color: var(--text) !important; }
.lang-picker a.lang-active { background: var(--accent); color: white !important; }

/* HERO */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217,119,6,.2) 0%, transparent 70%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217,119,6,.15);
  border: 1px solid rgba(217,119,6,.4);
  color: #FCD34D;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--accent-light); color: #0C1E28; transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-large { padding: 18px 36px; font-size: 16px; }
.hero-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.tag {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* HERO ICON */
.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 40px rgba(217,119,6,.35);
}

/* STATS */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number { font-size: 40px; font-weight: 900; color: var(--accent-light); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 72px; }
.section-badge {
  display: inline-block;
  background: rgba(217,119,6,.15);
  border: 1px solid rgba(217,119,6,.35);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* FEATURE SHOWCASE */
.showcase {
  padding: 96px 0 60px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.showcase-row:last-child { margin-bottom: 0; }

.showcase-row--reverse .showcase-media { order: 2; }
.showcase-row--reverse .showcase-text { order: 1; }

/* Phone screenshot wrapper */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(217,119,6,.2) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.phone-wrap img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px var(--border);
  display: block;
  position: relative;
  cursor: zoom-in;
  transition: transform .25s, box-shadow .25s;
}
.phone-wrap img:hover {
  transform: scale(1.025);
  box-shadow: 0 50px 120px rgba(0,0,0,.7), 0 0 0 2px var(--accent);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.lightbox-img {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,.9);
  object-fit: contain;
  animation: lb-in .2s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: 18px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* Showcase text side */
.showcase-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,119,6,.15);
  border: 1px solid rgba(217,119,6,.3);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.showcase-chip--orange { background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.3); color: #FB923C; }
.showcase-chip--green  { background: rgba(52,211,153,.12); border-color: rgba(52,211,153,.3); color: #34D399; }
.showcase-chip--purple { background: rgba(168,85,247,.12); border-color: rgba(168,85,247,.3); color: #C084FC; }
.showcase-chip--yellow { background: rgba(234,179,8,.12);  border-color: rgba(234,179,8,.3);  color: #FACC15; }

.chip-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.showcase-text h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.showcase-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-list li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sc-check {
  color: #34D399;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

/* EXTRA FEATURES (icon cards) */
.extra-features {
  padding: 40px 0 96px;
  border-top: 1px solid var(--border);
}
.extra-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.extra-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.extra-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.extra-card h4 { font-size: 16px; font-weight: 700; margin: 14px 0 8px; }
.extra-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* FEATURE ICONS (shared) */
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon--blue   { background: rgba(37,99,235,.2);  color: #60A5FA; }
.feature-icon--orange { background: rgba(249,115,22,.2); color: #FB923C; }
.feature-icon--green  { background: rgba(52,211,153,.2); color: #34D399; }
.feature-icon--purple { background: rgba(168,85,247,.2); color: #C084FC; }
.feature-icon--cyan   { background: rgba(6,182,212,.2);  color: #22D3EE; }
.feature-icon--yellow { background: rgba(234,179,8,.2);  color: #FACC15; }
.feature-icon--red    { background: rgba(239,68,68,.2);  color: #F87171; }
.feature-icon--indigo { background: rgba(99,102,241,.2); color: #818CF8; }

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 0;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 16px; }
.step-number {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  color: white;
  margin: 0 auto 18px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-arrow { font-size: 28px; color: var(--border); padding-top: 28px; }

/* PRICING */
.pricing { padding: 96px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.pricing-grid--single { grid-template-columns: 1fr; max-width: 480px; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.pricing-card--pro {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(217,119,6,.12) 0%, var(--surface) 60%);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plan-price { margin-bottom: 28px; }
.price-amount { font-size: 36px; font-weight: 900; letter-spacing: -1px; }
.price-period { font-size: 14px; color: var(--text-muted); }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { font-size: 14px; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.check { color: #34D399; font-weight: 700; flex-shrink: 0; }
.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.plan-btn--outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.plan-btn--outline:hover { background: rgba(255,255,255,.07); }
.plan-btn--primary { background: var(--accent); color: white; }
.plan-btn--primary:hover { background: var(--accent-light); color: #0C1E28; }

/* CTA */
.cta {
  padding: 96px 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(217,119,6,.22) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-inner p { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface2);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--border); }

/* FAQ */
.faq {
  padding: 96px 0;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  line-height: 1.4;
}
.faq-q:hover { background: rgba(255,255,255,.04); }
.faq-icon {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
[dir="rtl"] .faq-q { text-align: right; }

/* BLOG */
.blog-hero {
  padding: 64px 0 48px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(217,119,6,.15) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 12px; }
.blog-hero p { font-size: 16px; color: var(--text-muted); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 64px 0;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.blog-card-body { padding: 24px; flex: 1; }
.blog-tag {
  display: inline-block;
  background: rgba(217,119,6,.15);
  border: 1px solid rgba(217,119,6,.3);
  color: #FCD34D;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.blog-card h2 { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; letter-spacing: -.3px; }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.blog-card-footer { padding: 16px 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); display: flex; justify-content: space-between; }

/* ARTICLE */
.article { max-width: 740px; margin: 0 auto; padding: 64px 24px 96px; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }
.article-date { font-size: 13px; color: var(--text-muted); }
.article h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 20px; }
.article .lead { font-size: 18px; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; border-left: 3px solid var(--accent); padding-left: 20px; }
.article h2 { font-size: 24px; font-weight: 800; letter-spacing: -.8px; margin: 48px 0 16px; }
.article h3 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
.article p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.article ul, .article ol { padding-left: 24px; margin-bottom: 20px; }
.article li { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 8px; }
.article strong { color: var(--text); font-weight: 700; }
.article a { color: var(--accent-light); text-decoration: none; }
.article a:hover { text-decoration: underline; }
.article-cta {
  background: linear-gradient(135deg, rgba(217,119,6,.15) 0%, var(--surface) 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin-top: 56px;
}
.article-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.article-cta p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.article-back { font-size: 14px; color: var(--text-muted); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 32px; }
.article-back:hover { color: var(--text); }

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .showcase-row--reverse .showcase-media { order: 0; }
  .showcase-row--reverse .showcase-text { order: 0; }
  .phone-wrap img { max-width: 420px; }
  .extra-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .extra-features-grid { grid-template-columns: 1fr; }
  .showcase-row { margin-bottom: 60px; }
  .phone-wrap img { max-width: 100%; }
}

/* CONTACT PAGE */
.contact-hero {
  padding: 80px 0 56px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(217,119,6,.18) 0%, transparent 70%);
}
.contact-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 14px; }
.contact-hero p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: fit-content;
}
.contact-info-card h2 { font-size: 18px; font-weight: 800; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-item:last-of-type { margin-bottom: 32px; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(217,119,6,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-info-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.contact-info-text span { font-size: 14px; color: var(--text-muted); }
.contact-info-text a { font-size: 14px; color: var(--accent-light); text-decoration: none; }
.contact-info-text a:hover { text-decoration: underline; }
.contact-langs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-lang-badge {
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-form-card h2 { font-size: 18px; font-weight: 800; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; letter-spacing: .2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238AAFC0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a6a7a; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--accent-light); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0 16px;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(52,211,153,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #34D399;
}
.form-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--text-muted); }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
