/* ============================================
   PRISM STUDIO — LIQUID GLASS DESIGN SYSTEM
   ============================================ */

:root {
  --bg: #08080f;
  --bg2: #0d0d1a;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --border-bright: rgba(255,255,255,0.18);
  --text: #f0f0fa;
  --text-muted: rgba(240,240,250,0.5);
  --text-faint: rgba(240,240,250,0.3);
  --accent: #7c6cff;
  --accent2: #c084fc;
  --accent3: #38bdf8;
  --green: #4ade80;
  --radius: 20px;
  --radius-sm: 12px;
  --glass-blur: blur(20px) saturate(180%);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- GLASS UTILITIES ---- */
.glass-card {
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.large-glass {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-bright);
}
.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(124,108,255,0.15);
  border: 1px solid rgba(124,108,255,0.35);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #c4bbff;
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}

/* ---- LAYOUT ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-top: 12px; }
.section-header h2 em { font-style: italic; color: var(--accent2); }
.label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}
.see-all { font-size: 14px; color: var(--text-muted); text-decoration: none; margin-top: 8px; display: inline-block; transition: color .2s; }
.see-all:hover { color: var(--text); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(124,108,255,0.35);
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 40px rgba(124,108,255,0.5); }
.btn-primary.btn-large { padding: 18px 38px; font-size: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  color: var(--text-muted); font-size: 15px; font-weight: 500;
  text-decoration: none; border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  transition: color .2s, border-color .2s, background .2s;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-bright); background: var(--surface-hover); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  color: var(--text); font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: 100px;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  transition: background .2s;
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: var(--surface-hover); }

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ---- ORBS ---- */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); opacity: .55;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #6366f1 0%, transparent 70%); top: -200px; left: -100px; animation: drift1 14s ease-in-out infinite alternate; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #c084fc 0%, transparent 70%); top: 100px; right: -80px; animation: drift2 18s ease-in-out infinite alternate; }
.orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, #38bdf8 0%, transparent 70%); bottom: 0; left: 40%; animation: drift3 12s ease-in-out infinite alternate; opacity: .3; }
.orb-cta1 { width: 400px; height: 400px; background: radial-gradient(circle, #6366f1 0%, transparent 70%); top: -100px; left: -100px; animation: drift1 14s ease-in-out infinite alternate; }
.orb-cta2 { width: 300px; height: 300px; background: radial-gradient(circle, #c084fc 0%, transparent 70%); bottom: -100px; right: -50px; animation: drift2 18s ease-in-out infinite alternate; }

@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px, 40px) scale(1.1); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.1); } to { transform: translate(-40px, 60px) scale(1); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(30px, -30px); } }

/* ============================================
   NAV — FLOATING PILL
   ============================================ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1100px;
  height: 68px;
  background: rgba(15, 18, 30, 0.72);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(12, 14, 24, 0.88);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.07);
}
.nav-inner {
  padding: 0 10px 0 28px;
  height: 100%; display: flex; align-items: center; gap: 0;
}
.logo {
  font-family: 'Syne', sans-serif; font-size: 21px; font-weight: 800;
  color: var(--text); text-decoration: none; letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 0; list-style: none; margin-left: auto;
}
.nav-links a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.65);
  text-decoration: none; padding: 10px 22px; border-radius: 100px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-cta {
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  padding: 11px 26px; border-radius: 100px;
  background: #ffffff;
  color: #0a0a14;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  margin-left: 10px;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,15,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 14px 0; }
.mobile-menu ul li a { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); text-decoration: none; transition: color .2s; }
.mobile-menu ul li a:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  position: relative; overflow: hidden;
  padding-left: 5vw; padding-right: 5vw;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--accent2); }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 500px; line-height: 1.65; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-cards {
  position: absolute; right: 6vw; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px;
  z-index: 2;
}
.float-card {
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  min-width: 200px;
}
.fc-icon { font-size: 22px; }
.fc-text { display: flex; flex-direction: column; }
.fc-text strong { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.fc-text span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.fc-1 { animation: float 6s ease-in-out infinite; }
.fc-2 { animation: float 6s ease-in-out infinite 2s; }
.fc-3 { animation: float 6s ease-in-out infinite 4s; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  overflow: hidden; 
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02); 
  padding: 18px 0;
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
  animation-delay: 0s;        /* ← ensure no delay */
  animation-fill-mode: none;  /* ← don't hold end state */
}
.marquee-track {
  display: flex;
  align-items: center; 
  gap: 28px; 
  font-family: 'Syne', sans-serif; 
  font-size: 15px; 
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 28px;
}
.marquee-track span:nth-child(even) { 
  color: var(--accent); 
  font-size: 10px; 
}
@keyframes marquee { 
  from { transform: translateX(0); } 
  to { transform: translateX(-33.33%); } }

/* ============================================
   WORK PREVIEW
   ============================================ */
.section-header { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; }
.section-header .see-all { margin-left: auto; }

.work-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto; gap: 20px;
}
.work-item { cursor: pointer; transition: transform .3s; overflow: hidden; }
.work-item:hover { transform: translateY(-4px); }
.work-item.wi-large { grid-row: span 2; }
.work-img {
  width: 100%; aspect-ratio: 16/9; position: relative; overflow: hidden;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}
.wi-large .work-img { aspect-ratio: 4/5; }
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .3s;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay span {
  font-size: 12px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.5); padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.work-meta { padding: 24px; }
.work-meta h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.work-meta p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(124,108,255,0.12); color: var(--accent2);
  border: 1px solid rgba(124,108,255,0.2);
}

/* ============================================
   SERVICES STRIP
   ============================================ */
.services-strip { background: linear-gradient(180deg, transparent, rgba(124,108,255,0.04), transparent); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px;
}
.service-card { padding: 36px 28px; transition: transform .3s, border-color .3s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(124,108,255,0.3); }
.s-icon { font-size: 28px; margin-bottom: 20px; color: var(--accent); }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.centered-cta { text-align: center; }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-card { padding: 60px; max-width: 900px; margin: 0 auto; }
.quote-mark { font-family: 'Syne', sans-serif; font-size: 100px; line-height: .6; color: var(--accent); opacity: .4; margin-bottom: 24px; }
.quote-text { font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.6; font-weight: 300; margin-bottom: 36px; font-style: italic; color: var(--text); }
.quote-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; }
.quote-author strong { display: block; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; }
.quote-author span { font-size: 13px; color: var(--text-muted); margin-top: 2px; display: block; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-box {
  text-align: center; padding: 80px 40px; position: relative; overflow: hidden;
}
.cta-box .label { margin-bottom: 16px; }
.cta-box h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 36px; position: relative; z-index: 2; }
.cta-box h2 em { font-style: italic; color: var(--accent2); }
.cta-box .btn-primary { position: relative; z-index: 2; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 10px; font-size: 11px; font-weight: 700;
  color: var(--text-muted); text-decoration: none; transition: color .2s, border-color .2s;
}
.social-links a:hover { color: var(--text); border-color: var(--border-bright); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; color: var(--text-muted); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-faint);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 110px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--accent2); }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 560px; line-height: 1.65; }

/* ============================================
   WORK PAGE
   ============================================ */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-muted); cursor: pointer;
  transition: all .2s; backdrop-filter: blur(10px);
}
.filter-btn:hover, .filter-btn.active { color: var(--text); border-color: var(--accent); background: rgba(124,108,255,0.12); }
.work-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.work-full-item { cursor: pointer; overflow: hidden; border-radius: var(--radius); transition: transform .3s; }
.work-full-item:hover { transform: translateY(-4px); }
.work-full-item .work-img { aspect-ratio: 4/3; border-radius: var(--radius) var(--radius) 0 0; }
.work-full-item .work-meta { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); backdrop-filter: blur(20px); }
.work-full-item .work-meta h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.work-full-item .work-meta p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full { display: flex; flex-direction: column; gap: 28px; }
.service-full-card {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
  padding: 48px; align-items: start;
}
.service-full-card .s-num {
  font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800;
  color: rgba(124,108,255,0.15); line-height: 1;
}
.service-full-card h3 { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.service-full-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  font-size: 13px; color: var(--text-muted); list-style: none;
  display: flex; align-items: center; gap: 10px;
}
.service-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 14px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-intro-text h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.about-intro-text h2 em { font-style: italic; color: var(--accent2); }
.about-intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.about-visual {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(192,132,252,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; border: 1px solid var(--border);
  position: relative;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 80px; }
.stat-card { padding: 36px 24px; text-align: center; }
.stat-card .stat-num { font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800; background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card .stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 36px 24px; transition: transform .3s; }
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 24px; color: #fff;
}
.team-card h4 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.team-card span { font-size: 13px; color: var(--accent2); font-weight: 500; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; padding: 60px 0 100px; }
.contact-info h2 { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.contact-info h2 em { font-style: italic; color: var(--accent2); }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.cd-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(124,108,255,0.12); border: 1px solid rgba(124,108,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cd-text strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cd-text span { font-size: 14px; color: var(--text-muted); }

.contact-form-card { padding: 48px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 10px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  transition: border-color .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); background: rgba(124,108,255,0.06);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-faint); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-cards { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .work-item.wi-large { grid-row: span 1; }
  .wi-large .work-img { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .service-full-card { grid-template-columns: 1fr; gap: 24px; }
  .service-full-card .s-num { font-size: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .work-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { width: calc(100% - 32px); top: 12px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .hero { padding-top: calc(var(--nav-h) + 40px); min-height: 100svh; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-card { padding: 36px 28px; }
  .cta-box { padding: 56px 28px; }
  .work-full-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 72px 0; }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
  margin-right: 4px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.4); padding: 6px 4px;
  letter-spacing: .08em; transition: color .2s;
}
.lang-btn:hover { color: rgba(255,255,255,0.8); }
.lang-btn--active { color: #fff; }
.lang-divider {
  color: rgba(255,255,255,0.2); font-size: 12px; user-select: none;
}
@media (max-width: 768px) {
  .lang-switcher { margin-right: 8px; }
}

/* ============================================
   PAGE-ENTER ANIMATION
   ============================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  margin-left: 12px;
}
.lang-switcher:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(124,108,255,0.12);
}
@media (max-width: 768px) {
  .lang-switcher { display: none; }
}
