*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a28;
  --surface: #1e1e2e;
  --surface2: #252538;
  --accent: #6366f1;
  --accent2: #818cf8;
  --accent3: #a5b4fc;
  --text: #f8fafc;
  --text2: #94a3b8;
  --text3: #475569;
  --border: #ffffff12;
  --border2: #ffffff1e;
  --grad: linear-gradient(135deg, #6366f1, #8b5cf6);
  --grad2: linear-gradient(135deg, #06b6d4, #6366f1);
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.light {
  --bg: #f8f9ff;
  --bg2: #f1f3ff;
  --bg3: #e8ecff;
  --surface: #ffffff;
  --surface2: #f0f2ff;
  --accent: #4f46e5;
  --accent2: #6366f1;
  --accent3: #818cf8;
  --text: #0f0f1a;
  --text2: #374151;
  --text3: #6b7280;
  --border: #00000010;
  --border2: #00000018;
  --grad: linear-gradient(135deg, #4f46e5, #7c3aed);
  --grad2: linear-gradient(135deg, #0891b2, #4f46e5);
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition:
    background var(--transition),
    color var(--transition);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}
section {
  padding: 6rem 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
nav.scrolled {
  background: var(--bg) cc;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--accent2);
}
.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
}
.btn-ghost:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  background: var(--accent) 18;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px var(--accent) 40;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent) 60;
}
.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover {
  color: var(--accent2);
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--text2);
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}
.orb2 {
  width: 400px;
  height: 400px;
  background: #8b5cf6;
  bottom: -100px;
  left: -100px;
}
.orb3 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: var(--accent) 1a;
  border: 1px solid var(--accent) 40;
  color: var(--accent3);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
h1.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.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(--text2);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  text-align: left;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text3);
  margin-top: 0.15rem;
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.avatar-row {
  display: flex;
}
.av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.av:first-child {
  margin-left: 0;
}
.av1 {
  background: var(--accent);
}
.av2 {
  background: #8b5cf6;
}
.av3 {
  background: #06b6d4;
}
.av4 {
  background: #f59e0b;
}
.card-label {
  font-size: 0.82rem;
  color: var(--text2);
}
.card-label strong {
  color: var(--text);
  font-weight: 600;
}
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.metric {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 1rem;
}
.metric-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
}
.metric-lbl {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 0.15rem;
}
.m-green {
  color: #22c55e;
}
.m-blue {
  color: #60a5fa;
}
.m-purple {
  color: var(--accent3);
}
.bar-chart {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  height: 60px;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--accent) 40;
  transition: height 0.3s;
}
.bar.active {
  background: var(--grad);
}
.floating-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text2);
  box-shadow: 0 8px 32px #0006;
}
.floating-badge strong {
  color: var(--text);
  font-weight: 600;
}
.fb1 {
  top: -1.5rem;
  right: -1.5rem;
}
.fb2 {
  bottom: -1rem;
  left: -2rem;
}
.dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.dot-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION HEADINGS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: var(--accent) 1a;
  border: 1px solid var(--accent) 30;
  color: var(--accent3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 600px;
  font-weight: 300;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--accent) 50;
  transform: translateY(-4px);
  box-shadow: 0 24px 48px var(--accent) 18;
}
.service-card:hover .service-icon-wrap {
  background: var(--grad);
  color: #fff;
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--accent) 18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  position: relative;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  position: relative;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  position: relative;
}
.service-card ul {
  margin-top: 0.75rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.service-card ul li {
  font-size: 0.84rem;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card ul li::before {
  content: "✦";
  font-size: 0.5rem;
  color: var(--accent3);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
  position: relative;
}
.about-img-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
}
.about-tile {
  border-radius: 12px;
  background: var(--bg) 80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(8px);
}
.about-chip {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.about-chip-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}
.about-chip-text span {
  font-size: 0.78rem;
  color: var(--text3);
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius);
  background: var(--accent) 18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}
.feat-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feat-text p {
  font-size: 0.86rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 20px 40px #0004;
}
.team-avatar {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.team-card-body {
  padding: 1.25rem;
}
.team-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.team-role {
  font-size: 0.8rem;
  color: var(--accent3);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.team-bio {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.6;
}
.team-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text3);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── PORTFOLIO ── */
.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 24px 48px #0005;
}
.project-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.project-thumb-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0.7;
}
.project-thumb-emoji {
  position: relative;
  z-index: 1;
}
.project-body {
  padding: 1.5rem;
}
.project-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.project-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.project-body p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tech-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tag {
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--accent) 18;
  color: var(--accent3);
  border: 1px solid var(--accent) 25;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent3);
  opacity: 0.4;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}
.testi-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.testi-info span {
  font-size: 0.78rem;
  color: var(--text3);
}
.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}
.blog-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.blog-body {
  padding: 1.5rem;
}
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text3);
  margin-bottom: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.blog-cat {
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--accent) 18;
  color: var(--accent3);
  font-weight: 500;
}
.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-body p {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.6;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--accent2);
  margin-top: 0.75rem;
  transition: gap var(--transition);
}
.read-more:hover {
  gap: 0.6rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius);
  background: var(--accent) 18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-text span {
  font-size: 0.88rem;
  color: var(--text2);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text2);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent) 20;
}
.form-group textarea {
  min-height: 130px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3);
}
.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text3);
}

/* ── CTA BANNER ── */
.cta-section {
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #fff1;
  top: -200px;
  right: -100px;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #fff1;
  bottom: -150px;
  left: -50px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 2rem;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-inner p {
  color: #ffffffcc;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #0003;
}
.btn-outline-white {
  background: transparent;
  border: 1px solid #fff5;
  color: #fff;
}
.btn-outline-white:hover {
  background: #fff2;
}

/* ── LOGOS ── */
.logos-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0.5;
}
.logo-item {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}
.logo-item:hover {
  opacity: 0.8;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text3);
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.86rem;
  color: var(--text2);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent2);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text3);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--text2);
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: none;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 4rem 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
