/* APEX Digital Agency — Design System */

:root {
  --bg: #06060F;
  --bg-2: #0C0C1E;
  --surface: #111130;
  --surface-2: #16164A;
  --accent: #7C3AED;
  --accent-2: #A78BFA;
  --accent-dim: rgba(124,58,237,0.1);
  --accent-border: rgba(124,58,237,0.28);
  --text: #F4F0FF;
  --text-2: #C4BFDB;
  --text-muted: #706890;
  --border: rgba(255,255,255,0.07);
  --radius: 8px;
  --max-w: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }
a { text-decoration: none; color: inherit; }

em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-accent:hover { background: #6D28D9; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--accent-border);
  color: var(--accent-2);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); background: var(--accent-dim); color: var(--text); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-2);
  font-size: 0.85rem; font-weight: 600;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* Announcement Bar */
.announcement-bar {
  background: var(--accent);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative; z-index: 100;
}
.ann-content { display: flex; align-items: center; gap: 32px; overflow: hidden; }
.ann-item { font-size: 0.8rem; font-weight: 500; color: #fff; white-space: nowrap; }
.ann-close {
  background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.3rem;
  cursor: pointer; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  line-height: 1; padding: 4px; transition: color 0.2s;
}
.ann-close:hover { color: #fff; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 90;
  background: transparent;
  transition: background 0.3s, border-bottom 0.3s;
}
.header.scrolled {
  background: rgba(6,6,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 40px; padding: 20px 0; }

.logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-main { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: 0.1em; color: var(--text); }
.logo-dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  margin-left: 2px; vertical-align: middle; margin-bottom: 5px;
}
.logo-sub { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }

.nav-desktop { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-link {
  font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.04em; transition: color 0.2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--accent); transition: width 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.mobile-menu-btn {
  display: none; background: none; border: none; color: var(--text);
  cursor: pointer; margin-left: auto; padding: 4px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg-2); z-index: 200;
  display: flex; flex-direction: column; padding: 48px 32px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 2rem; cursor: pointer; align-self: flex-end; margin-bottom: 40px; line-height: 1;
}
.mobile-nav-link {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--text-2); padding: 12px 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--accent-2); }
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 199;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

/* Hero */
.hero { position: relative; padding: 100px 0 80px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--accent);
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.02em;
  max-width: 900px; margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 520px; line-height: 1.75; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats Strip */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.stats-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stats-strip-num {
  font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: var(--accent-2); line-height: 1; display: block;
}
.stats-strip-label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text-muted); text-transform: uppercase; margin-top: 6px; display: block;
}

/* Section Label */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--accent);
}
.section-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

/* Services Overview */
.services-section { padding: 100px 0; }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.service-card { background: var(--surface); padding: 36px 32px; transition: background 0.2s; position: relative; }
.service-card:hover { background: var(--surface-2); }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent-2);
}
.service-num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.08em;
}
.service-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Portfolio */
.portfolio-section { padding: 100px 0; background: var(--bg-2); }
.portfolio-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.portfolio-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s; cursor: pointer;
}
.portfolio-card:hover { border-color: var(--accent-border); transform: translateY(-2px); }
.portfolio-card.wide { grid-column: span 2; }
.portfolio-img { height: 260px; position: relative; overflow: hidden; }
.portfolio-card.wide .portfolio-img { height: 360px; }
.portfolio-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%; background: linear-gradient(transparent, var(--surface)); pointer-events: none;
}

/* CSS placeholder images */
.pimg-1 { background: linear-gradient(135deg, #12062e 0%, #2d1b69 60%, #1a0f3e 100%); }
.pimg-2 { background: linear-gradient(135deg, #060d2e 0%, #1b2d6e 60%, #0d1a45 100%); }
.pimg-3 { background: linear-gradient(135deg, #0d2212 0%, #1b6940 60%, #0f3a22 100%); }
.pimg-4 { background: linear-gradient(135deg, #2e0617 0%, #6e1b35 60%, #451028 100%); }

.portfolio-body { padding: 24px 28px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.portfolio-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-2); background: var(--accent-dim); border: 1px solid var(--accent-border);
  padding: 3px 10px; border-radius: 100px;
}
.portfolio-title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.portfolio-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Process */
.process-section { padding: 100px 0; }
.process-header { margin-bottom: 56px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.process-step { background: var(--surface); padding: 40px 28px; }
.process-num {
  font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: rgba(124,58,237,0.2); line-height: 1; margin-bottom: 20px; display: block;
}
.process-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.process-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* Testimonials */
.testimonials-section { padding: 100px 0; background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--accent-border); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent-2); font-size: 0.9rem; }
.testimonial-text { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* CTA Section */
.cta-section { padding: 100px 0; }
.cta-inner {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--accent-border);
  border-radius: 16px; padding: 72px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; margin-bottom: 16px; }
.cta-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-2); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.footer-contact a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent-2); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35); z-index: 80;
  transition: transform 0.2s, opacity 0.3s; opacity: 0; color: #fff;
}
.whatsapp-fab.visible { opacity: 1; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ========= INNER PAGES ========= */

/* Page Hero */
.page-hero { padding: 80px 0 64px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.page-hero-title { font-family: 'Syne', sans-serif; font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.page-hero-desc { font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.75; }

/* Services Detail */
.services-detail-section { padding: 80px 0; }
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 56px; }
.service-detail-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px;
  transition: border-color 0.2s, background 0.2s;
}
.service-detail-card:hover { border-color: var(--accent-border); background: var(--surface-2); }
.service-detail-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--accent-2);
}
.service-detail-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-detail-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-detail-list li { font-size: 0.85rem; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.service-detail-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Pricing */
.pricing-section { padding: 80px 0; background: var(--bg-2); }
.pricing-header { margin-bottom: 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  position: relative; transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--accent-border); background: linear-gradient(180deg, rgba(124,58,237,0.07) 0%, var(--surface) 100%); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pricing-name { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-2); margin-bottom: 8px; }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li { font-size: 0.875rem; color: var(--text-2); display: flex; align-items: center; gap: 10px; }
.pricing-features li svg { flex-shrink: 0; color: var(--accent-2); }
.pricing-features li.unavail { color: var(--text-muted); opacity: 0.45; }
.pricing-features .btn-accent, .pricing-features .btn-outline { width: 100%; justify-content: center; }
.pricing-cta { width: 100%; justify-content: center; margin-top: auto; }

/* About */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
}
.about-stat-num { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--accent-2); line-height: 1; display: block; }
.about-stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; display: block; }
.about-visual {
  position: relative; height: 460px; border-radius: 12px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
}
.about-visual-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #12062e 0%, #2d1b69 50%, #0c0c1e 100%); }
.about-visual-text {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 9rem; font-weight: 800;
  color: rgba(124,58,237,0.15); letter-spacing: 0.05em; user-select: none;
}

/* Values */
.values-section { padding: 80px 0; background: var(--bg-2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px; transition: border-color 0.2s;
}
.value-card:hover { border-color: var(--accent-border); }
.value-num { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; color: var(--accent-2); display: block; margin-bottom: 16px; }
.value-title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.value-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Team */
.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--accent-border); transform: translateY(-2px); }
.team-avatar {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, #12062e 0%, #2d1b69 100%);
  color: var(--accent-2); letter-spacing: 0.05em;
}
.team-body { padding: 20px; }
.team-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* Contact */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.contact-form-title { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.contact-form-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.contact-form { 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-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-input {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; color: var(--text); font-size: 0.92rem;
  font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus { border-color: var(--accent-border); }
select.form-input option { background: var(--surface); }
.form-textarea { resize: vertical; }
.form-error {
  font-size: 0.82rem; color: #F87171;
  background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.2);
  border-radius: var(--radius); padding: 10px 14px;
}
.form-submit { width: 100%; padding: 14px; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; justify-content: center; margin-top: 4px; }
.form-success-msg { text-align: center; padding: 48px 24px; }
.form-success-msg svg { margin: 0 auto 16px; }
.form-success-msg h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success-msg p { font-size: 0.9rem; color: var(--text-muted); }

.contact-info-title { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); flex-shrink: 0;
}
.contact-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }
.contact-info-value a { color: var(--text-2); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--accent-2); }
.social-links { display: flex; gap: 12px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.social-link {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--accent-border); color: var(--accent-2); background: var(--accent-dim); }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header-inner > .btn-accent { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 60px 0 48px; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.wide { grid-column: span 1; }
  .portfolio-card.wide .portfolio-img { height: 260px; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   FAZ 1+2 PATCH (2026-06-13) — a11y skip-link + gerçek görsel pattern
   skip-link G4 · portfolio/service img pattern · z-index düzeni
   ════════════════════════════════════════════════════════════ */

/* Skip link (G4) */
.skip-link {
  position: absolute;
  top: -56px;
  left: 12px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--accent-2); }

/* Portfolio kartı görsel pattern */
.portfolio-img {
  overflow: hidden;
  position: relative;
}
.portfolio-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.portfolio-img:has(.portfolio-photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,15,0.05) 30%, rgba(6,6,15,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.portfolio-img .portfolio-overlay,
.portfolio-img .portfolio-tag { z-index: 2; }

/* Team avatar with image */
.team-avatar {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.team-avatar-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
