/* ===================== wey2creative — global styles ===================== */

:root{
  --bg: #08080d;
  --bg-soft: #0e0e17;
  --surface: rgba(255,255,255,0.04);
  --surface-strong: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.09);
  --text: #f2f2f6;
  --text-muted: #9a9aad;
  --text-faint: #6b6b7c;
  --violet: #7c5cfc;
  --cyan: #22d3ee;
  --coral: #ff6b6b;
  --grad: linear-gradient(120deg, var(--violet), var(--cyan));
  --grad-soft: linear-gradient(120deg, rgba(124,92,252,0.18), rgba(34,211,238,0.14));
  --radius: 18px;
  --nav-h: 84px;
  --ease: cubic-bezier(.16,1,.3,1);
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; }

::selection{ background: var(--violet); color: #fff; }

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,h2,h3,h4{
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
}

h1{ font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2{ font-size: clamp(2rem, 4vw, 3.2rem); }
h3{ font-size: clamp(1.2rem, 2vw, 1.6rem); }

p{ color: var(--text-muted); margin: 0 0 16px; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px var(--cyan);
}

.gradient-text{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--grad);
  color: #08080d;
  box-shadow: 0 8px 30px -8px rgba(124,92,252,0.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(34,211,238,0.6); }

.btn-ghost{
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover{ background: var(--surface-strong); transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }

.btn-block{ width: 100%; }

/* ===================== NAV ===================== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(8,8,13,0.55);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s ease, border-color .3s ease;
}

.nav-inner{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand img{ height: 30px; width: auto; }
.brand .dot{ color: var(--cyan); }

.nav-links{
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a{
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav-links a::after{
  content:"";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--grad);
  transition: width .3s var(--ease);
}
.nav-links a:hover{ color: var(--text); }
.nav-links a:hover::after{ width: 100%; }
.nav-links a.active{ color: var(--text); }
.nav-links a.active::after{ width: 100%; }

/* ---- nav dropdown (Locations) ---- */
.nav-dropdown{ position: relative; }
.nav-dropdown-toggle{ display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown-toggle .chev{ font-size: 0.65rem; transition: transform .25s ease; }
.nav-dropdown:hover .nav-dropdown-toggle .chev{ transform: rotate(180deg); }
/* invisible bridge so the menu doesn't drop when moving the cursor down */
.nav-dropdown::after{ content:""; position:absolute; top:100%; left:-10px; right:-10px; height:20px; }
.nav-dropdown-menu{
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: rgba(14,14,23,0.94);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  z-index: 1001;
}
.nav-dropdown-menu.grid-cols-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2px;
  min-width: 380px;
}
.nav-dropdown-menu .dd-featured{
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a{
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background .2s ease, color .2s ease;
}
.nav-dropdown-menu a::after{ display: none; }
.nav-dropdown-menu a:hover{ background: var(--surface-strong); color: var(--text); }
.nav-dropdown-menu a.dd-all{ color: var(--cyan); }

/* mobile Locations group */
.mobile-group-label{
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-faint); font-weight: 800; margin-top: 2px;
}
.mobile-panel a.mob-loc{ padding-left: 16px; font-size: 1rem; font-weight: 600; color: var(--text-muted); }

.nav-cta{ display: flex; align-items: center; gap: 18px; }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
  transition: all .25s ease;
}
.nav-toggle span::before{ position: absolute; top: -6px; }
.nav-toggle span::after{ position: absolute; top: 6px; }

.mobile-panel{
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #0b0b13;
  border-bottom: 1px solid var(--border);
  padding: 24px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 22px;
  z-index: 999;
}
.mobile-panel.open{ display: flex; }
.mobile-panel a{ font-size: 1.1rem; font-weight: 700; color: var(--text); }

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-cta .btn-ghost{ display: none; }
  .nav-toggle{ display: flex; }
}

@media (max-width: 480px){
  .nav-inner{ padding: 0 20px; }
  .nav-cta .btn-primary{ display: none; }
  .brand{ font-size: 1rem; }
}

/* ===================== HERO / full screen sections ===================== */
.screen{
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.mesh-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.mesh-bg .blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 18s var(--ease) infinite alternate;
}
.mesh-bg .b1{ width: 520px; height: 520px; background: var(--violet); top: -120px; left: -80px; }
.mesh-bg .b2{ width: 480px; height: 480px; background: var(--cyan); bottom: -140px; right: -60px; animation-delay: -6s; }
.mesh-bg .b3{ width: 340px; height: 340px; background: var(--coral); top: 40%; left: 55%; opacity: 0.28; animation-delay: -11s; }

@keyframes float{
  0%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(40px,-30px) scale(1.08); }
  100%{ transform: translate(-30px,20px) scale(0.96); }
}

.grid-overlay{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

.hero-content{ position: relative; z-index: 2; width: 100%; }

.hero-grid{
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 60px;
  align-items: center;
}

.hero-copy p.lead{ font-size: 1.15rem; max-width: 520px; }

.hero-cta-row{ display: flex; align-items: center; gap: 20px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats{
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats .stat b{
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats .stat span{ color: var(--text-faint); font-size: 0.85rem; }

/* floating panel visual */
.hero-visual{
  position: relative;
  z-index: 2;
}
.glass-panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  padding: 28px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.mock-window{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c0c16;
}
.mock-bar{
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #101019;
  border-bottom: 1px solid var(--border);
}
.mock-bar span{ width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-body{ padding: 22px; }
.mock-line{ height: 10px; border-radius: 6px; background: rgba(255,255,255,0.08); margin-bottom: 12px; }
.mock-line.grad{ background: var(--grad); opacity: .8; }
.mock-line.w60{ width: 60%; }
.mock-line.w80{ width: 80%; }
.mock-line.w40{ width: 40%; }
.mock-card{
  margin-top: 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mock-card .swatch{ width: 36px; height: 36px; border-radius: 8px; background: var(--grad); flex-shrink: 0; }

.float-chip{
  position: absolute;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: bob 6s ease-in-out infinite;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.float-chip.c1{ top: -18px; right: -18px; animation-delay: 0s; }
.float-chip.c2{ bottom: -16px; left: -24px; animation-delay: -3s; }
.float-chip .pulse-dot{ width: 8px; height: 8px; border-radius: 50%; background: #3ee08e; box-shadow: 0 0 10px #3ee08e; }

@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

.scroll-cue{
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .line{
  width: 1px; height: 40px;
  background: linear-gradient(var(--cyan), transparent);
  animation: scrolldown 2s ease infinite;
}
@keyframes scrolldown{
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  50.1%{ transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== sections ===================== */
section{ position: relative; padding: 130px 0; }
.section-bg-soft{ background: var(--bg-soft); }

.section-head{ max-width: 680px; margin: 0 auto 70px; text-align: center; }
.section-head.left{ margin: 0 0 70px; text-align: left; }

/* reveal on scroll */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{ opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: .55s; }

/* ---------- cards / grid ---------- */
.grid{ display: grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(14px);
  transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
  position: relative;
  overflow: hidden;
}
.card:hover{ transform: translateY(-6px); border-color: rgba(255,255,255,0.22); background: var(--surface-strong); }
.card .icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.card h3{ margin-bottom: 10px; }
.card p{ margin-bottom: 0; font-size: 0.95rem; }

/* ---------- comparison / why AI ---------- */
.compare{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.compare .col{
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.compare .col.old{ background: rgba(255,255,255,0.02); }
.compare .col.new{ background: var(--grad-soft); border-color: rgba(124,92,252,0.35); position: relative; }
.compare .col.new::before{
  content: "wey2creative way";
  position: absolute; top: -13px; left: 28px;
  background: var(--grad);
  color: #08080d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.compare .col h4{ font-size: 1.1rem; margin-bottom: 18px; color: var(--text-faint); font-weight: 700; }
.compare ul li{
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.compare ul li:last-child{ border-bottom: none; }
.compare .col.old ul li::before{ content: "✕"; color: var(--coral); font-weight: 800; }
.compare .col.new ul li{ color: var(--text); }
.compare .col.new ul li::before{ content: "✓"; color: var(--cyan); font-weight: 800; }

/* ---------- process steps ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  counter-reset: step;
}
.step{ position: relative; padding-top: 10px; }
.step .num{
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  margin-bottom: 12px;
}
.step h3{ margin-bottom: 10px; }
.step p{ font-size: 0.92rem; }

/* ---------- pricing ---------- */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 26px;
  align-items: stretch;
}
.price-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  transition: transform .4s var(--ease), border-color .3s ease;
  position: relative;
}
.price-card:hover{ transform: translateY(-8px); }
.price-card.featured{
  border-color: rgba(124,92,252,0.5);
  background: linear-gradient(180deg, rgba(124,92,252,0.1), rgba(255,255,255,0.03));
  box-shadow: 0 30px 80px -30px rgba(124,92,252,0.4);
}
.price-card.featured::after{
  content: "Most popular";
  position: absolute; top: -14px; right: 32px;
  background: var(--grad);
  color: #08080d;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.price-card .tier{ font-weight: 700; color: var(--text-faint); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 14px; }
.price-card .amount{ font-size: 2.6rem; font-weight: 800; margin-bottom: 4px; }
.price-card .amount span{ font-size: 1rem; font-weight: 600; color: var(--text-faint); }
.price-card .vat{ color: var(--text-faint); font-size: 0.85rem; margin-bottom: 26px; }
.price-card ul{ margin-bottom: 30px; flex-grow: 1; }
.price-card ul li{
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.price-card ul li::before{ content: "✓"; color: var(--cyan); font-weight: 800; }

/* ---------- portfolio ---------- */
.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}
.portfolio-item{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--surface);
}
.portfolio-thumb{
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-thumb::before{
  content: "";
  position: absolute; inset: 0;
  opacity: 0.9;
}
.portfolio-thumb.t1::before{ background: linear-gradient(135deg,#7c5cfc,#2b1f6b); }
.portfolio-thumb.t2::before{ background: linear-gradient(135deg,#22d3ee,#14324a); }
.portfolio-thumb.t3::before{ background: linear-gradient(135deg,#ff6b6b,#5a1f2e); }
.portfolio-thumb.t4::before{ background: linear-gradient(135deg,#3ee08e,#123a2a); }
.portfolio-thumb span{ position: relative; z-index: 1; font-weight: 800; font-size: 1.4rem; color: rgba(255,255,255,0.92); }
.portfolio-body{ padding: 26px 28px 30px; }
.portfolio-body .tag{ color: var(--cyan); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.portfolio-body h3{ margin: 10px 0; }

/* ---------- testimonials ---------- */
.testimonial-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card .stars{ color: #ffcf5c; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card p.quote{ color: var(--text); font-size: 1rem; margin-bottom: 20px; }
.testimonial-who{ display: flex; align-items: center; gap: 12px; }
.testimonial-avatar{ width: 42px; height: 42px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
.testimonial-who b{ display: block; font-size: 0.9rem; }
.testimonial-who span{ font-size: 0.8rem; color: var(--text-faint); }

/* ---------- faq ---------- */
.faq-item{
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.faq-q{
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
}
.faq-q .plus{ font-size: 1.4rem; color: var(--cyan); transition: transform .3s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .plus{ transform: rotate(45deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), opacity .3s ease, margin .3s ease;
  opacity: 0;
}
.faq-item.open .faq-a{ max-height: 260px; opacity: 1; margin-top: 14px; }

/* ---------- team ---------- */
.team-card{ text-align: center; }
.team-avatar{
  width: 92px; height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.6rem;
  color: #08080d;
}
.team-card span{ color: var(--cyan); font-size: 0.85rem; font-weight: 700; }

/* ---------- values ---------- */
.value-row{ display: flex; gap: 22px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid var(--border); }
.value-row:last-child{ border-bottom: none; }
.value-num{ font-size: 1.6rem; font-weight: 800; color: var(--text-faint); width: 50px; flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band{
  border-radius: 28px;
  padding: 70px 60px;
  background: var(--grad-soft);
  border: 1px solid rgba(124,92,252,0.35);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2{ margin-bottom: 18px; }
.cta-band p{ max-width: 520px; margin: 0 auto 34px; }

/* ---------- forms ---------- */
.form-grid{ display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.form-field{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size: 0.85rem; font-weight: 700; color: var(--text-muted); }
.form-field input, .form-field select, .form-field textarea{
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .25s ease, background .25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none;
  border-color: var(--cyan);
  background: rgba(255,255,255,0.05);
}
.form-field textarea{ resize: vertical; min-height: 130px; }

.contact-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 60px;
  align-items: flex-start;
}
.contact-info-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  margin-bottom: 18px;
}
.contact-info-card .icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.contact-info-card h3{ font-size: 1rem; margin-bottom: 6px; }
.contact-info-card p{ margin-bottom: 0; font-size: 0.92rem; }

.form-success{
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success.show{ display: block; }
.form-success .icon-big{
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: #08080d;
}

/* ---------- footer ---------- */
footer{
  border-top: 1px solid var(--border);
  padding: 70px 0 34px;
  background: var(--bg-soft);
}
.footer-grid{
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .brand{ margin-bottom: 16px; }
.footer-brand p{ max-width: 300px; font-size: 0.9rem; }
.footer-col h4{ font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 18px; }
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a{ color: var(--text-muted); font-size: 0.92rem; transition: color .2s ease; }
.footer-col a:hover{ color: var(--cyan); }
.footer-social{ display: flex; gap: 12px; margin-top: 20px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover{ background: var(--surface-strong); border-color: rgba(255,255,255,0.25); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- page hero (non-home) ---------- */
.page-hero{
  min-height: 62vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
}
.page-hero .container{ position: relative; z-index: 2; }
.breadcrumb{ color: var(--text-faint); font-size: 0.9rem; margin-bottom: 18px; }
.breadcrumb .sep{ margin: 0 8px; }

/* ===================== responsive ===================== */
@media (max-width: 1080px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .compare{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }
  .contact-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .compare .col{ padding: 26px; }
  section{ padding: 90px 0; }
  .cta-band{ padding: 50px 28px; }
}
