/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6C63FF;
  --primary-dark: #4B44CC;
  --accent: #FF6584;
  --green: #43D9AD;
  --bg: #0A0A0F;
  --bg2: #0F0F1A;
  --bg3: #141428;
  --surface: #1A1A2E;
  --surface2: #22223A;
  --border: rgba(108,99,255,.18);
  --text: #E8E8F0;
  --text-muted: #8888AA;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(108,99,255,.15);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: rgba(108,99,255,.15);
  color: var(--primary);
  border: 1px solid rgba(108,99,255,.3);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.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;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub { margin: 0 auto; }

.section { padding: 100px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,99,255,.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-icon {
  color: var(--primary);
  font-size: 1rem;
}

.logo-dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6C63FF, transparent 70%);
  top: -200px; right: -100px;
}

.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FF6584, transparent 70%);
  bottom: -100px; left: -100px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67,217,173,.1);
  border: 1px solid rgba(67,217,173,.3);
  color: var(--green);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-sub strong { color: var(--text); }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone Mockup */
.hero-phone {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.phone-mockup {
  width: 240px;
  height: 480px;
  background: var(--surface);
  border-radius: 36px;
  border: 2px solid var(--border);
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(108,99,255,.1);
  position: relative;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.phone-screen {
  background: var(--bg3);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  padding: 12px;
}

.screen-status {
  height: 8px;
  background: rgba(108,99,255,.3);
  border-radius: 4px;
  margin-bottom: 12px;
}

.app-bar {
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  margin-bottom: 12px;
}

.app-card {
  height: 80px;
  background: var(--surface2);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.app-card.short { height: 50px; }

.app-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.app-icon {
  flex: 1;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,.3), rgba(255,101,132,.2));
  border: 1px solid var(--border);
}

/* ===== TECH STRIP ===== */
.tech-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.strip-label {
  text-align: center;
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--primary);
  color: var(--text);
  transform: translateY(-2px);
}

.tech-icon {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-block;
}

.tech-icon.android { background: #3DDC84; }
.tech-icon.kotlin { background: linear-gradient(135deg,#7F52FF,#E44857); }
.tech-icon.java { background: linear-gradient(135deg,#F89820,#E76F00); }
.tech-icon.firebase { background: linear-gradient(135deg,#FFCA28,#F57C00); }
.tech-icon.retrofit { background: linear-gradient(135deg,#6C63FF,#3B37C8); }
.tech-icon.room { background: linear-gradient(135deg,#43D9AD,#1A8C6B); }
.tech-icon.jetpack { background: linear-gradient(135deg,#4285F4,#0D47A1); }
.tech-icon.mvvm { background: linear-gradient(135deg,#FF6584,#C0392B); }

/* ===== SERVICES ===== */
.services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(108,99,255,.08), var(--surface));
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(from var(--c) r g b / .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c);
  border: 1px solid rgba(from var(--c) r g b / .25);
}

.service-icon-wrap svg { width: 24px; height: 24px; }

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--bg); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.portfolio-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border-color: var(--primary);
}

.portfolio-img {
  height: 200px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.portfolio-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
}

.portfolio-img {
  background: var(--bg) !important;
}

.portfolio-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0;
}

/* Override with actual gradient */
.portfolio-card:nth-child(1) .portfolio-img { background: linear-gradient(135deg,#6C63FF,#3B37C8) !important; }
.portfolio-card:nth-child(2) .portfolio-img { background: linear-gradient(135deg,#FF6584,#C0392B) !important; }
.portfolio-card:nth-child(3) .portfolio-img { background: linear-gradient(135deg,#43D9AD,#1A8C6B) !important; }
.portfolio-card:nth-child(4) .portfolio-img { background: linear-gradient(135deg,#FFB347,#E67E22) !important; }

.port-mockup {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 160px;
  background: rgba(0,0,0,.3);
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 8px;
  backdrop-filter: blur(10px);
}

.port-screen {
  background: rgba(0,0,0,.4);
  border-radius: 8px;
  height: 100%;
  padding: 6px;
}

.port-bar {
  height: 16px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  margin-bottom: 6px;
}

.port-content { display: flex; flex-direction: column; gap: 5px; }

.port-circle {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  align-self: center;
}

.port-lines { display: flex; flex-direction: column; gap: 4px; }

.port-line {
  height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
}

.port-line.short { width: 60%; }

.port-map {
  height: 80px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.port-map::after {
  content: '';
  position: absolute;
  top: 30%; left: 40%;
  width: 10px; height: 10px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,255,255,.4);
}

.port-chart {
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,.2) 40%, transparent);
  border-radius: 6px;
  clip-path: polygon(0 80%, 20% 50%, 40% 65%, 60% 30%, 80% 45%, 100% 20%, 100% 100%, 0 100%);
}

.port-chat { display: flex; flex-direction: column; gap: 5px; }

.chat-bubble {
  height: 12px;
  background: rgba(255,255,255,.25);
  border-radius: 6px;
  width: 80%;
}

.chat-bubble.right {
  align-self: flex-end;
  background: rgba(255,255,255,.4);
}

.chat-bubble.short { width: 50%; }

.portfolio-info { padding: 24px; }

.port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.port-tags span {
  background: rgba(108,99,255,.15);
  color: var(--primary);
  border: 1px solid rgba(108,99,255,.25);
  border-radius: 100px;
  padding: 2px 12px;
  font-size: .75rem;
  font-weight: 600;
}

.portfolio-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-info p {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about { background: var(--bg2); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: var(--transition);
}

.about-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-avatar {
  position: relative;
  width: 220px;
  height: 220px;
}

.avatar-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(108,99,255,.4);
  animation: spin 20s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.avatar-core {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar-core svg { width: 80%; height: 80%; }

.avatar-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), #1A8C6B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg2);
}

.avatar-badge svg { width: 20px; height: 20px; }

.about-cards {
  display: flex;
  gap: 16px;
}

.about-mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  text-align: center;
  flex: 1;
}

.mini-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.mini-label {
  font-size: .8rem;
  color: var(--text-muted);
}

.about-content .section-tag { display: block; }

.about-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-desc strong { color: var(--text); }

.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.skill-item { display: flex; flex-direction: column; gap: 6px; }

.skill-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.skill-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testi-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.testi-stars {
  color: #FFB347;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  color: var(--text-muted);
  font-size: .925rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  background: var(--c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: .9rem;
}

.testi-author span {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact { background: var(--bg2); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(108,99,255,.1);
  border: 1px solid rgba(108,99,255,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}

.contact-item a, .contact-item span {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--primary); }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136,136,170,.5);
}

.form-group select option { background: var(--bg3); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .875rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link svg { width: 20px; height: 20px; }

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: .85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-phone { display: none; }
  .hero-inner { max-width: 100%; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { flex-direction: row; justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .hamburger { display: flex; z-index: 1000; }

  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 20px; }
  .hero-cta { gap: 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .about-visual { flex-direction: column; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { margin: 12px auto 0; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .section-title { font-size: 1.6rem; }
  .about-avatar { width: 160px; height: 160px; }
}
