/* ════════════════════════════════════════
   wedesign — Creative Portfolio
   Warm minimal with amber accent
   ════════════════════════════════════════ */

:root {
  --bg: #faf9f6;
  --card: #ffffff;
  --text: #555;
  --heading: #1a1a1a;
  --subtle: #999;
  --border: rgba(0,0,0,0.06);
  --accent1: #378ADD;
  --accent2: #85B7EB;
  --grad: linear-gradient(135deg, #1a1a1a, #378ADD);
  --font: 'Sora', -apple-system, sans-serif;
  --font2: 'DM Sans', sans-serif;
  --r: 16px;
  --r-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font2);
  background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; align-items: center; gap: 40px;
  padding: 14px 28px;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  width: auto; max-width: calc(100% - 32px);
}
nav.scrolled {
  background: rgba(15,15,15,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.logo {
  display: flex; align-items: center;
  margin-right: 8px; white-space: nowrap;
}
.logo-img { height: 28px; width: auto; display: block; }
.logo-img-footer { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent2);
  border-radius: 1px; transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: linear-gradient(135deg, var(--accent1), var(--accent2)) !important;
  color: #fff !important;
  padding: 10px 24px !important; border-radius: 50px;
  font-weight: 600 !important; font-size: 0.82rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 12px rgba(55,138,221,0.3);
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(55,138,221,0.45) !important;
}
.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ═══ PARTICLES ═══ */
#particles {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 15%, #2d3a4a 30%, #3d5060 45%, #5a7a8a 58%, #a8c0cc 70%, #d4dfe5 80%, #eef2f4 90%, #faf9f6 100%);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 50px;
  background: rgba(55,138,221,0.12); border: 1px solid rgba(55,138,221,0.2);
  color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 600;
  margin-bottom: 32px; letter-spacing: 0.3px;
}
.hero-pill::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-pill { animation: fadeUp 0.8s ease 0.1s both; }
.hero h1 { animation: fadeUp 0.8s ease 0.25s both; }
.hero-sub { animation: fadeUp 0.8s ease 0.4s both; }
.hero-actions { animation: fadeUp 0.8s ease 0.6s both; }
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; letter-spacing: -2px;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #378ADD, #85B7EB);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .gradient-text {
  background: linear-gradient(135deg, #fff, #a8c0cc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.2rem; color: rgba(255,255,255,0.65);
  max-width: 500px; margin: 0 auto 40px;
  letter-spacing: 0.3px;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 60px;
}
.cta-ghost {
  background: rgba(255,255,255,0.15) !important; color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cta-ghost:hover {
  background: rgba(255,255,255,0.25) !important;
  color: #fff !important; border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fadeUp 1s ease 0.8s both;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-family: var(--font);
  font-size: 1.5rem; font-weight: 800; color: #0f0f0f;
}
.hero-stat span {
  font-size: 0.78rem; color: #3d3d3d;
  text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(0,0,0,0.2);
}

/* ═══ BUTTONS ═══ */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px;
  background: #fff; color: #0f0f0f;
  font-family: var(--font); font-size: 0.92rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.cta-full { width: 100%; justify-content: center; }

/* ═══ SECTIONS ═══ */
section { padding: 100px 0; position: relative; z-index: 1; }
.tag {
  font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: #378ADD; margin-bottom: 12px;
}
h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--heading);
  letter-spacing: -1px; margin-bottom: 40px;
}

/* ═══ PROJECTS ═══ */
.projects {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 12px;
}
.proj {
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.proj:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

/* Project color themes */
.proj-purple { background: #0A1628; }
.proj-purple .proj-info h3, .proj-purple .proj-info p, .proj-purple .proj-tag { color: rgba(255,255,255,0.7); }
.proj-purple .proj-info h3 { color: #fff; }
.proj-purple .proj-stat { color: #85B7EB; }
.proj-orange { background: #f0f4f8; }
.proj-green  { background: #0f2b1a; }
.proj-green .proj-info h3, .proj-green .proj-info p, .proj-green .proj-tag { color: rgba(255,255,255,0.7); }
.proj-green .proj-info h3 { color: #fff; }
.proj-green .proj-stat { color: #6ee7b7; }
.proj-blue   { background: #f0f4f8; }

.proj-visual { padding: 28px 28px 0; }
.proj-info { padding: 24px 28px 28px; }
.proj-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--subtle); margin-bottom: 4px;
}
.proj-info h3 {
  font-family: var(--font); font-size: 1.3rem;
  font-weight: 700; color: var(--heading); margin-bottom: 4px;
}
.proj-info p { font-size: 0.85rem; color: var(--text); margin-bottom: 10px; }
.proj-stat {
  font-family: var(--font); font-size: 0.82rem;
  font-weight: 700; color: #378ADD;
}

/* ═══ SCREEN MOCKS ═══ */
.screen {
  border-radius: 12px 12px 0 0; overflow: hidden;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sc-bar {
  display: flex; gap: 5px; padding: 10px 14px;
  background: #f7f7f5; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sc-bar span { width: 8px; height: 8px; border-radius: 50%; }
.sc-bar span:nth-child(1) { background: #ef4444; }
.sc-bar span:nth-child(2) { background: #378ADD; }
.sc-bar span:nth-child(3) { background: #22c55e; }
.sc-body { min-height: 160px; }

/* Dashboard mock */
.sc-dash { display: grid; grid-template-columns: 44px 1fr; }
.sd-side { background: var(--heading); padding: 10px 6px; display: flex; flex-direction: column; gap: 8px; }
.sd-dot { width: 16px; height: 16px; border-radius: 6px; background: rgba(255,255,255,0.1); margin: 0 auto 6px; }
.sd-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); margin: 0 4px; }
.sd-line.on { background: rgba(255,255,255,0.2); }
.sd-main { padding: 12px; }
.sd-cards { display: flex; gap: 6px; margin-bottom: 12px; }
.sd-card { flex: 1; height: 34px; border-radius: 8px; background: #f7f7f5; border: 1px solid rgba(0,0,0,0.04); }
.sd-chart { display: flex; gap: 5px; align-items: flex-end; height: 56px; padding: 0 4px; }
.sd-bar { flex: 1; background: var(--accent2); border-radius: 4px 4px 0 0; opacity: 0.6; }
.sd-bar:nth-child(odd) { background: var(--heading); opacity: 0.12; }

/* Restaurant mock */
.sc-resto { display: flex; flex-direction: column; }
.sr-hero { height: 70px; background: linear-gradient(135deg, #292524, #44403c); }
.sr-content { padding: 10px; }
.sr-h { height: 7px; width: 50%; background: #e7e5e4; border-radius: 4px; margin-bottom: 10px; }
.sr-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; }
.sr-grid div { height: 44px; border-radius: 6px; background: #f7f7f5; border: 1px solid rgba(0,0,0,0.04); }

/* Store mock */
.sc-store { display: flex; flex-direction: column; }
.ss-nav { height: 14px; background: #fafaf9; border-bottom: 1px solid rgba(0,0,0,0.04); }
.ss-banner { height: 32px; background: #f0f0ee; }
.ss-grid { display: flex; gap: 5px; padding: 8px; }
.ss-item { flex: 1; border-radius: 6px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.ss-img { height: 48px; background: #e8e6e3; }
.ss-img.v2 { background: #d6d3d1; }
.ss-img.v3 { background: #f0ebe5; }
.ss-txt { padding: 6px; }
.ss-txt::after { content:''; display: block; height: 4px; width: 50%; background: #e7e5e4; border-radius: 2px; }

/* Landing mock */
.sc-land { display: flex; flex-direction: column; }
.sl-nav { height: 12px; background: #fafaf9; border-bottom: 1px solid rgba(0,0,0,0.04); }
.sl-hero { padding: 18px 14px; text-align: center; }
.sl-h1 { height: 8px; width: 65%; background: var(--heading); opacity: 0.12; border-radius: 4px; margin: 0 auto 6px; }
.sl-h2 { height: 8px; width: 40%; background: var(--heading); opacity: 0.08; border-radius: 4px; margin: 0 auto; }
.sl-btn { width: 48px; height: 12px; background: var(--heading); border-radius: 6px; margin: 14px auto 0; opacity: 0.7; }
.sl-cols { display: flex; gap: 5px; padding: 0 10px 10px; }
.sl-cols div { flex: 1; height: 40px; border-radius: 6px; background: #f7f7f5; border: 1px solid rgba(0,0,0,0.04); }

/* ═══ SERVICES ═══ */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc {
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid #378ADD;
  border-radius: var(--r); padding: 28px 22px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(55,138,221,0.12); border-color: rgba(55,138,221,0.2); border-top-color: #378ADD; }
.svc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-i1 { background: #e8f0fa; color: #378ADD; }
.svc-i2 { background: #e8eef6; color: #3b82f6; }
.svc-i3 { background: #ecf5ef; color: #16a34a; }
.svc-i4 { background: #e8f0fa; color: #185FA5; }
.svc h3 { font-family: var(--font); font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.svc p { font-size: 0.88rem; color: var(--text); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r); padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(55,138,221,0.1); }
.testimonial-text {
  font-size: 0.95rem; color: var(--text);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #0A1628; color: #85B7EB;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 0.75rem; font-weight: 700;
}
.testimonial-author strong {
  display: block; font-family: var(--font); font-size: 0.88rem;
  color: var(--heading);
}
.testimonial-author span {
  font-size: 0.78rem; color: var(--subtle);
}

/* ═══ MARQUEE ═══ */
.marquee {
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex; align-items: center; gap: 28px;
  animation: scroll 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font); font-size: 0.88rem;
  font-weight: 700; color: var(--subtle);
  text-transform: uppercase; letter-spacing: 3px;
  white-space: nowrap;
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent1); flex-shrink: 0; display: inline-block !important; }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══ CONTACT ═══ */
.contact-section { display: flex; justify-content: center; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  max-width: 600px; width: 100%;
  text-align: center;
}
.contact-email {
  display: inline-block; margin-bottom: 28px;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  color: var(--accent1); letter-spacing: 0.3px;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--accent2); }
.contact-card h2 { margin-bottom: 32px; }
#contactForm { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#contactForm input,
#contactForm textarea {
  width: 100%; padding: 18px 22px;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  font-family: var(--font2); font-size: 1.05rem;
  color: var(--heading); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#contactForm input::placeholder,
#contactForm textarea::placeholder { color: #aaa; font-size: 0.95rem; }
#contactForm input:focus,
#contactForm textarea:focus { border-color: var(--accent1); box-shadow: 0 0 0 3px rgba(55,138,221,0.1); }
#contactForm textarea { resize: vertical; min-height: 100px; }
.form-msg {
  font-size: 0.9rem; text-align: center; padding: 0;
  border-radius: 10px; display: none;
  font-weight: 600; font-family: var(--font);
}
.form-msg.success { display: block; color: #2563EB; }
.form-msg.error { display: block; color: #dc2626; }
#contactForm .cta { margin-top: 4px; }

/* ═══ LANG SWITCH ═══ */
.lang-switch { position: relative; margin-left: 4px; }
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 6px 12px;
  font-family: var(--font); font-size: 0.75rem; font-weight: 700;
  color: #fff; cursor: pointer;
  letter-spacing: 1px; transition: border-color 0.2s;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.4); }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all 0.2s ease; min-width: 110px; z-index: 200;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button {
  display: block; width: 100%; text-align: left;
  padding: 10px 16px; border: none; background: none;
  font-family: var(--font2); font-size: 0.88rem;
  color: var(--text); cursor: pointer; transition: background 0.15s;
}
.lang-dropdown button:hover { background: var(--bg); }
.lang-dropdown button.active { color: var(--accent1); font-weight: 600; }

/* ═══ MODAL ═══ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 48px;
  max-width: 560px; width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; font-size: 1.8rem;
  color: var(--subtle); cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--heading); }
.modal-tag {
  font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent1); margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font); font-size: 1.6rem;
  font-weight: 800; color: var(--heading);
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.modal-desc {
  font-size: 0.95rem; color: var(--text);
  line-height: 1.7; margin-bottom: 24px;
}
.modal-highlights {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.modal-highlight {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text);
}
.modal-highlight::before {
  content: '✓'; font-weight: 700; color: #22c55e;
  flex-shrink: 0; margin-top: 1px;
}
.modal-stat-row {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.modal-stat-item {
  flex: 1; text-align: center;
  background: var(--bg); border-radius: 12px; padding: 14px 8px;
}
.modal-stat-item strong {
  display: block; font-family: var(--font);
  font-size: 1.2rem; font-weight: 800; color: var(--accent1);
}
.modal-stat-item span {
  font-size: 0.72rem; color: var(--subtle);
  text-transform: uppercase; letter-spacing: 1px;
}
.modal-cta { width: 100%; justify-content: center; background: var(--heading); color: #fff; }

/* ═══ LEGAL PAGES ═══ */
.legal-page { padding: 140px 0 80px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  color: #378ADD; margin-bottom: 24px;
  transition: opacity 0.2s;
}
.legal-back:hover { opacity: 0.7; }
.legal-card {
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 48px;
  max-width: 720px;
}
.legal-card h1 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--heading);
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.legal-date {
  font-size: 0.82rem; color: var(--subtle);
  margin-bottom: 32px;
}
.legal-card h3 {
  font-family: var(--font); font-size: 1.05rem;
  font-weight: 700; color: var(--heading);
  margin: 24px 0 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.legal-card h3:first-child { margin-top: 0; }
.legal-card p {
  font-size: 0.92rem; color: var(--text);
  line-height: 1.7; margin-bottom: 4px;
}
.legal-card a { color: #378ADD; font-weight: 600; }
.legal-card a:hover { text-decoration: underline; }

/* ═══ COOKIE BANNER ═══ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: #0A1628;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  margin: 0;
}
.cookie-banner a { color: #85B7EB; text-decoration: underline; }
.cookie-accept {
  background: #378ADD; color: #fff; border: none;
  padding: 8px 20px; border-radius: 50px;
  font-family: var(--font); font-size: 0.78rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.cookie-accept:hover { background: #2a6fba; }

/* ═══ FOOTER ═══ */
footer {
  padding: 40px 0;
  background: #0A1628;
}
.foot { display: flex; align-items: center; justify-content: space-between; }
.foot .logo-img-footer { height: 56px; }
.foot-links {
  display: flex; gap: 20px;
}
.foot-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  font-weight: 500; transition: color 0.2s;
}
.foot-links a:hover { color: #85B7EB; }
.foot-email {
  font-size: 0.82rem; color: #85B7EB;
  font-weight: 600; transition: color 0.2s;
}
.foot-email:hover { color: #fff; }
.foot p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero { padding: 120px 24px 60px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .cta { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-stat span { font-size: 0.7rem; }
  .nav-links { display: none; }
  nav { left: 16px; right: 16px; transform: none; border-radius: 20px; gap: 16px; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(16px);
    padding: 20px 24px; gap: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .burger { display: flex; }
  .projects { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; }
  section { padding: 64px 0; }
  .legal-card { padding: 32px 24px; }
  .cookie-banner { flex-direction: column; gap: 10px; padding: 16px 24px; text-align: center; }
  .foot { flex-wrap: wrap; gap: 20px; justify-content: center; text-align: center; flex-direction: column; align-items: center; }
  .foot-links { gap: 16px; }
}
