/* ============================================================
   DESIGNYETU DIGITAL SOLUTIONS — style.css
   ============================================================ */

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

:root {
  --ink: #0a1f44;
  --paper: #f5f2eb;
  --accent: #f5a623;
  --accent2: #00c896;
  --muted: #888880;
  --card-bg: #ffffff;
  --border: #e0ddd5;
  --section-alt: #f0ede6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.25s, height 0.25s;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(245, 242, 235, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2rem;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--paper);
  font-size: 2rem;
  cursor: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-tag::before {
  content: '';
  width: 30px; height: 1.5px;
  background: var(--accent);
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  position: relative;
  animation: fadeUp 0.8s 0.2s both;
  max-width: 900px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}
.hero-sub {
  margin-top: 2rem;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  position: relative;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s both;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s, transform 0.2s;
  cursor: none;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 1rem 2rem;
  border-radius: 3rem;
  border: 1.5px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
  cursor: none;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.8s 0.8s both;
}
.hero-scroll::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--muted);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  51%  { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.65s both;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-dot { color: var(--accent); font-size: 1.2rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTION SHARED ── */
section { padding: 6rem 3rem; }
.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--accent);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.section-title em { color: var(--accent); font-style: italic; }

/* ── SERVICES ── */
#services { background: var(--section-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.service-card {
  background: var(--card-bg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #fff9f7; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--section-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon { background: #ffe8df; transform: rotate(-5deg) scale(1.08); }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.service-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 0.05em;
}

/* ── WORKS / PORTFOLIO ── */
#works { background: var(--paper); }

/* Filter tabs */
.works-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: none;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* Grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.work-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  cursor: none;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.4s;
}
.work-card.hidden { display: none; }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.work-card:nth-child(1) { grid-column: span 7; }
.work-card:nth-child(2) { grid-column: span 5; }
.work-card:nth-child(3) { grid-column: span 5; }
.work-card:nth-child(4) { grid-column: span 7; }
.work-card:nth-child(5) { grid-column: span 6; }
.work-card:nth-child(6) { grid-column: span 6; }

/* Screenshot visual */
.work-visual {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #1a1a2e;
}
.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  display: block;
}
.work-card:hover .work-visual img { transform: scale(1.04); }

/* Mockup fallback (for projects without screenshots) */
.work-mockup {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wm-1 { background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #111 100%); }
.wm-2 { background: linear-gradient(135deg, #0f1923 0%, #1a2f47 100%); }
.wm-3 { background: linear-gradient(135deg, #1a0a00 0%, #3d1500 100%); }

.mock-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.mock-browser {
  width: 85%;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.mock-bar { display: flex; gap: 5px; margin-bottom: 8px; align-items: center; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #febc2e; }
.mock-dot.g { background: #28c840; }
.mock-url {
  flex: 1; height: 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  margin-left: 6px;
}
.mock-hero { height: 55px; background: rgba(255,255,255,0.06); border-radius: 6px; margin-bottom: 7px; }
.mock-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); margin-bottom: 5px; }
.mock-line.s { width: 55%; }
.mock-line.m { width: 78%; }
.mock-line.f { width: 100%; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; margin-top: 7px; }
.mock-card-el { height: 28px; background: rgba(255,255,255,0.08); border-radius: 5px; }
.mock-phone {
  width: 55px; height: 95px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
  position: absolute;
  right: 12%; bottom: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 5px;
  gap: 4px;
}
.mock-phone-line { width: 80%; height: 5px; background: rgba(255,255,255,0.12); border-radius: 3px; }
.mock-phone-img { width: 90%; flex: 1; background: rgba(255,255,255,0.08); border-radius: 5px; }
.mock-news-row { display: flex; gap: 6px; margin-top: 6px; }
.mock-news-img { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 5px; flex-shrink: 0; }
.mock-news-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; justify-content: center; }

/* Overlay */
.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 1.5rem;
  text-align: center;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}
.work-overlay-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.work-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: none;
}
.work-overlay-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,77,0,0.4); }
.work-overlay-soon {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  border-radius: 2rem;
}
.work-info { padding: 1.4rem 1.5rem; }
.work-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.work-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ── PROCESS ── */
#process { background: var(--ink); color: var(--paper); }
#process .section-title { color: var(--paper); }
#process .section-label { color: var(--accent2); }
#process .section-label::before { background: var(--accent2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 2.5rem; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.process-step { padding: 2rem 1.5rem; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.step-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--paper);
}
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.6; }

/* ── ABOUT ── */
#about { background: var(--section-alt); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ink) 0%, #1a2744 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-inner div:first-child { font-size: 4rem; margin-bottom: 0.5rem; }
.about-inner .about-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  letter-spacing: -0.03em;
}
.about-inner .about-sub { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }
.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--accent);
  color: white;
  padding: 1.2rem;
  border-radius: 16px;
  text-align: center;
}
.about-badge .big { font-size: 2rem; font-weight: 800; font-family: 'Syne', sans-serif; display: block; }
.about-badge .small { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.about-content p { font-size: 1.05rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.about-features li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: #e8faf5;
  color: var(--accent2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--paper); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; }
.author-role { font-size: 0.78rem; color: var(--muted); }
.stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 1rem; }

/* ── CONTACT ── */
#contact { background: var(--ink); color: var(--paper); }
#contact .section-label { color: var(--accent2); }
#contact .section-label::before { background: var(--accent2); }
#contact .section-title { color: var(--paper); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-info p { font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--paper);
  transition: background 0.2s, transform 0.2s;
  cursor: none;
}
.contact-item:hover { background: rgba(255,77,0,0.15); transform: translateX(4px); }
.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.1rem; }
.contact-item-value { font-size: 0.95rem; font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  cursor: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255,77,0,0.05);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,77,0,0.35); }
#form-success {
  display: none;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 12px;
  padding: 1.5rem;
  color: var(--accent2);
  font-size: 0.95rem;
  text-align: center;
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: #050508;
  color: rgba(255,255,255,0.4);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
footer p { font-size: 0.82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: none;
  animation: waPulse 2.5s infinite;
}
.whatsapp-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .work-card:nth-child(1),
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card:nth-child(4),
  .work-card:nth-child(5),
  .work-card:nth-child(6) { grid-column: span 6; }
}
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  section { padding: 4rem 1.5rem; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card:nth-child(n) { grid-column: span 1; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { bottom: -0.5rem; right: 0; }
}
