/* ========================
   RESET & BASE
   ======================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================
   DESIGN TOKENS
   ======================== */

:root {
  --bg:          #FAFAF8;
  --bg-alt:      #F2F1EE;
  --bg-dark:     #0D0B1A;
  --bg-dark-2:   #16132A;

  --ink:         #0D0C0A;
  --ink-2:       #3D3C3A;
  --ink-3:       #6B6A68;
  --ink-4:       #A8A7A5;

  --border:      #E4E3DF;
  --border-dark: rgba(255,255,255,0.07);

  --purple:      #6B42F0;
  --purple-h:    #5A31E0;
  --purple-l:    #8B65F7;
  --purple-faint:#F0EDFF;
  --purple-glow: rgba(107,66,240,0.18);

  --font-display:'Plus Jakarta Sans', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --dur:         0.25s;

  --max-w:       1200px;
  --r-sm:        6px;
  --r-md:        12px;
  --r-lg:        20px;
  --r-xl:        28px;
  --r-full:      9999px;

  --sh-sm:  0 1px 3px rgba(13,12,10,0.07);
  --sh-md:  0 4px 14px rgba(13,12,10,0.09), 0 1px 3px rgba(13,12,10,0.04);
  --sh-lg:  0 16px 48px rgba(13,12,10,0.1), 0 4px 12px rgba(13,12,10,0.05);
  --sh-pur: 0 8px 32px rgba(107,66,240,0.22), 0 2px 8px rgba(107,66,240,0.12);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ========================
   LAYOUT
   ======================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

/* ========================
   SECTION HEADERS
   ======================== */

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0.75rem auto 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-subtitle {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 520px;
  line-height: 1.7;
}

/* ========================
   BUTTONS
   ======================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: var(--sh-pur);
}
.btn-primary:hover {
  background: var(--purple-h);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(107,66,240,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--ink-4);
  background: var(--bg-alt);
  color: var(--ink);
}

.btn-white {
  background: white;
  color: var(--ink);
  box-shadow: var(--sh-md);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-lg);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-ghost-white:hover {
  color: white;
  border-color: rgba(255,255,255,0.45);
}

.btn-lg {
  padding: 0.75rem 1.6rem;
  font-size: 0.925rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========================
   ANIMATIONS
   ======================== */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes typing-dots {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%       { opacity: 1; transform: translateY(-3px); }
}

.fade-up { animation: fade-up 0.65s var(--ease-out) both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   NAVBAR
   ======================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.logo-code {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--purple);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-3);
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  padding: 4px;
  width: 30px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: var(--r-full);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.mobile-menu.open { max-height: 500px; }

.mobile-link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.mobile-link:hover {
  color: var(--purple);
  background: var(--purple-faint);
}

.mobile-cta {
  margin: 1rem 1.5rem;
  justify-content: center;
  border-bottom: none;
  text-align: center;
}

/* ========================
   HERO
   ======================== */

.hero {
  min-height: 100svh;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(107,66,240,0.065) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.05em;
  background: var(--purple-faint);
  border: 1px solid rgba(107,66,240,0.18);
  padding: 0.32rem 0.7rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  animation: blink 2s ease-in-out infinite;
}

/* Hero title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
}

.hero-title .line-tw {
  color: var(--purple);
  min-height: 1.15em;
}

.tw-cursor {
  display: inline-block;
  width: 3px;
  height: 0.78em;
  background: var(--purple);
  margin-left: 1px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 0.9s step-end infinite;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Hero CTA */
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Tech stack */
.hero-tech {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tech-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tech-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tech-tags span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-3);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-sm);
}

/* ========================
   HERO VISUAL (Code Card)
   ======================== */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,66,240,0.12) 0%, transparent 68%);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.code-card {
  background: #0D0B1A;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.055),
    0 24px 60px rgba(13,11,26,0.22),
    0 0 80px rgba(107,66,240,0.07);
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.code-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }

.code-filename {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
}

.code-body {
  padding: 22px 26px 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 2;
}

.code-line { display: block; }
.c-const      { color: #60A5FA; }
.c-var        { color: rgba(255,255,255,0.8); }
.c-punctuation{ color: rgba(255,255,255,0.32); }
.c-key        { color: #A78BFA; }
.c-string     { color: #34D399; }
.c-bool       { color: #FB923C; }
.c-comment    { color: rgba(255,255,255,0.22); font-style: italic; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--sh-md);
  z-index: 3;
}

.float-badge-1 {
  top: 10%;
  left: -4%;
  animation: float 5s ease-in-out 1s infinite;
}

.float-badge-2 {
  bottom: 12%;
  right: -4%;
  animation: float 5.5s ease-in-out 0.5s infinite;
}

.float-badge-3 {
  top: 48%;
  left: -6%;
  animation: float 6s ease-in-out 0.25s infinite;
}

.float-badge-4 {
  top: 28%;
  right: -6%;
  animation: float 4.5s ease-in-out 1.5s infinite;
}

.float-badge-icon { font-size: 1.1rem; line-height: 1; }

.fb-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.fb-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ink-4);
  line-height: 1.2;
}

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--purple);
  animation: slide-right 2s ease-in-out infinite;
}

@keyframes slide-right {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ========================
   TICKER
   ======================== */

.ticker {
  background: var(--bg-dark);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: ticker 28s linear infinite;
  align-items: center;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-l);
  flex-shrink: 0;
}

/* ========================
   SERVICES
   ======================== */

.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: rgba(107,66,240,0.18);
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
}
.service-card:hover::before { transform: scaleX(1); }

/* Featured card */
.service-card--featured {
  background: var(--bg-dark);
  border-color: transparent;
  color: white;
}
.service-card--featured::before { transform: scaleX(1); }
.service-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(13,11,26,0.28), var(--sh-pur);
}

.service-card--featured .service-title { color: white; }
.service-card--featured .service-desc  { color: rgba(255,255,255,0.55); }
.service-card--featured .service-link  { color: var(--purple-l); }
.service-card--featured .service-tech li {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.07);
}
.service-card--featured .service-icon-wrap {
  background: rgba(255,255,255,0.08);
}
.service-card--featured .service-number { color: rgba(255,255,255,0.18); }

.service-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ink-4);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 1.25rem;
}

.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--purple-l);
  background: rgba(107,66,240,0.18);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-tech li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-3);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-sm);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.service-link:hover { gap: 8px; }

/* ========================
   ABOUT
   ======================== */

.about { background: var(--bg-alt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Stats block - editorial grid */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.stat-block {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.45;
}

/* About content */
.about-text {
  font-size: 0.975rem;
  color: var(--ink-2);
  line-height: 1.8;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
}

.value-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========================
   PROCESS
   ======================== */

.process { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  position: absolute;
  top: calc(2rem - 4.5px);
  left: 1.5rem;
  box-shadow: 0 0 0 3px white, 0 0 0 4.5px rgba(107,66,240,0.3);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ========================
   PORTFOLIO
   ======================== */

.portfolio { background: var(--bg-alt); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: rgba(107,66,240,0.15);
}

.portfolio-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pv-purple   { background: linear-gradient(135deg, #4B2EB0 0%, #7B5CF0 100%); }
.pv-navy     { background: linear-gradient(135deg, #0D0B1A 0%, #1E1840 100%); }
.pv-gradient { background: linear-gradient(135deg, #6B42F0 0%, #A78BFA 50%, #60A5FA 100%); }

/* Mobile mockup */
.pm-mobile {
  width: 58px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.18);
  padding: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pm-notch {
  width: 20px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  align-self: center;
}

.pm-screen {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 6px 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-ui-bar {
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.pm-ui-card {
  height: 14px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

.pm-ui-card-sm { height: 10px; }

/* Desktop mockup */
.pm-desktop {
  width: 160px;
  height: 104px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pm-topbar {
  height: 18px;
  background: rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
}

.pm-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.pm-urlbar {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  margin-left: 4px;
}

.pm-content {
  flex: 1;
  display: flex;
}

.pm-sidebar {
  width: 32px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.pm-main {
  flex: 1;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pm-chart {
  flex: 1;
  background: rgba(107,66,240,0.2);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.pm-chart::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(107,66,240,0.4), transparent);
  border-radius: 0 0 3px 3px;
}

.pm-stats-row {
  display: flex;
  gap: 4px;
}

.pm-stat-box {
  flex: 1;
  height: 12px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
}

/* Chat mockup */
.pm-chat-ui {
  width: 160px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.chat-name {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.chat-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28C840;
}

.chat-messages {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-msg {
  font-family: var(--font-body);
  font-size: 7.5px;
  padding: 4px 7px;
  border-radius: 8px;
  max-width: 85%;
  line-height: 1.3;
}

.cm-user {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  align-self: flex-start;
}

.cm-bot {
  background: rgba(107,66,240,0.35);
  color: rgba(255,255,255,0.85);
  align-self: flex-end;
}

.chat-typing {
  display: flex;
  gap: 3px;
  padding: 5px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 36px;
}

.chat-typing span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: typing-dots 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--purple);
  background: var(--purple-faint);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ========================
   CTA DARK
   ======================== */

.cta-dark {
  background: var(--bg-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,66,240,0.18) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--purple-l);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ========================
   CONTACT
   ======================== */

.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--ink-3);
  line-height: 1.75;
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-2);
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: var(--purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-social {
  display: flex;
  gap: 0.6rem;
}

/* Contact form */
.contact-form-wrap { position: relative; }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.65rem 0.9rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-4); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,66,240,0.1);
  background: var(--bg);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%236B6A68' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--ink-4);
  margin-top: 0.65rem;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
}

/* Social links (shared) */
.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: all var(--dur) var(--ease);
}

.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  transform: translateY(-2px);
}

/* ========================
   FOOTER
   ======================== */

.footer { background: var(--bg-dark); }

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 5rem;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand .logo-name { color: white; }
.footer-brand .logo-code { color: var(--purple-l); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer .social-link {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
}

.footer .social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--dur) var(--ease);
}

.footer-col a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.055);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-bottom-inner span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  transition: color var(--dur) var(--ease);
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-actions  { justify-content: center; }
  .hero-tech     { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .float-badge-1 { left: -8%; }
  .float-badge-2 { right: -8%; }

  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .services-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .step-dot { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu{ display: flex; }
  .nav-actions { margin-left: auto; }

  .services-grid   { grid-template-columns: 1fr; }
  .portfolio-grid  { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; gap: 1.75rem; }
  .process-steps::before { display: none; }
  .step-dot { display: none; }

  .about-values { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .float-badge { display: none; }

  .hero-scroll-hint { display: none; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.35rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .code-card { max-width: 340px; }
  .code-body { padding: 16px 18px 20px; font-size: 11px; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ========================
   HERO CANVAS
   ======================== */

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-container { position: relative; z-index: 1; }
.hero-scroll-hint { position: absolute; z-index: 1; }

/* ========================
   SERVICE CARD SPOTLIGHT
   ======================== */

.service-card {
  --sx: 50%;
  --sy: 50%;
}

.service-card.spotlight-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: radial-gradient(300px circle at var(--sx) var(--sy), rgba(107,66,240,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.service-card > * { position: relative; z-index: 1; }

/* ========================
   TECHNOLOGIES SECTION
   ======================== */

.technologies { background: var(--bg); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 1rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.25s var(--ease);
  cursor: default;
}

.tech-item:hover {
  border-color: rgba(107,66,240,0.25);
  background: var(--purple-faint);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.tech-item svg, .tech-item img { transition: transform 0.25s var(--ease); }
.tech-item:hover svg, .tech-item:hover img { transform: scale(1.1); }

.tech-item span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-align: center;
}

.tech-item:hover span { color: var(--purple); }

/* ========================
   PORTFOLIO UPGRADE
   ======================== */

.portfolio-visual { height: 240px; transition: background 0.3s; overflow: hidden; }
.portfolio-visual > * { transition: transform 0.4s var(--ease); }

.portfolio-card {
  position: relative;
  overflow: hidden;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  height: 240px;
  background: rgba(107,66,240,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 2;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  background: white;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--r-full);
  transform: translateY(8px);
  transition: transform 0.3s var(--ease);
}

.portfolio-card:hover .portfolio-overlay-btn { transform: translateY(0); }

.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-card--wide {
  grid-column: span 2;
}

.portfolio-card--wide .portfolio-visual {
  height: 280px;
}

.portfolio-card--wide .portfolio-overlay {
  height: 280px;
}

/* ========================
   TESTIMONIALS
   ======================== */

.testimonials { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.25s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: rgba(107,66,240,0.18);
}

.testimonial-quote-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 0.925rem;
  color: var(--ink-2);
  line-height: 1.75;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars svg { color: #F59E0B; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.avatar-purple { background: linear-gradient(135deg, #6B42F0, #A78BFA); }
.avatar-teal   { background: linear-gradient(135deg, #0D9488, #34D399); }
.avatar-orange { background: linear-gradient(135deg, #EA580C, #FB923C); }

.testimonial-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--ink-4);
  margin-top: 1px;
}

/* ========================
   CTA DARK UPGRADE
   ======================== */

.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,66,240,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,66,240,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--purple-l);
  background: rgba(107,66,240,0.12);
  border: 1px solid rgba(107,66,240,0.22);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

.cta-guarantee svg { color: var(--purple-l); flex-shrink: 0; }

/* ========================
   FAQ SECTION
   ======================== */

.faq { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.faq-item.open {
  border-color: rgba(107,66,240,0.28);
  box-shadow: 0 0 0 3px rgba(107,66,240,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  background: var(--bg);
}

.faq-item.open .faq-question { color: var(--purple); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--purple-faint);
  border-color: rgba(107,66,240,0.25);
}

.faq-icon svg {
  transition: transform 0.3s var(--ease);
  color: var(--ink-3);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  color: var(--purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ========================
   FOOTER NEWSLETTER
   ======================== */

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.footer-newsletter p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: white;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  padding: 0.5rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-form input:focus { border-color: rgba(107,66,240,0.5); }

.newsletter-form button {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  background: var(--purple);
  border-radius: var(--r-full);
  padding: 0.5rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--purple-h); }

/* ========================
   RESPONSIVE ADDITIONS
   ======================== */

@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(5, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .tech-grid { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
  .tech-item { padding: 1rem 0.5rem; }
  .tech-item span { font-size: 0.6rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--wide { grid-column: span 1; }
  .cta-guarantees { gap: 1rem; }
  .footer-newsletter { display: none; }
}

@media (max-width: 600px) {
  .tech-grid { grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }
}

.hp-field { position:absolute; left:-9999px; opacity:0; pointer-events:none; }
