/* ============================================================
   CUCUMBER STUDIOS — STYLESHEET
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --green-dark:   #1a4a2e;
  --green-mid:    #2d7a4a;
  --green-lime:   #6fcf5a;
  --green-light:  #c8f5b0;
  --blue-accent:  #5bb8f5;
  --blue-light:   #d0eeff;
  --cream:        #f7faf4;
  --white:        #ffffff;
  --ink:          #0e1f15;
  --ink-mid:      #2c4a35;
  --ink-soft:     #5a7a62;
  --border:       rgba(45, 122, 74, 0.15);
  --shadow-sm:    0 2px 12px rgba(26,74,46,.08);
  --shadow-md:    0 8px 32px rgba(26,74,46,.12);
  --shadow-lg:    0 20px 60px rgba(26,74,46,.18);
  --radius:       14px;
  --radius-lg:    24px;
  --font-display: 'Syne', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── UTILITIES ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(111, 207, 90, 0.15);
  border: 1px solid rgba(111, 207, 90, 0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag--light {
  color: var(--green-lime);
  background: rgba(111, 207, 90, 0.1);
  border-color: rgba(111, 207, 90, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header--light { color: var(--white); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
}

.section-title em {
  font-style: normal;
  color: var(--green-mid);
}

.section-title--light { color: var(--white); }
.section-title--light em { color: var(--green-lime); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
  transform: translateY(-2px);
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(247, 250, 244, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--green-mid); }

.nav__cta {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
}

.nav__mobile a:last-child { border-bottom: none; color: var(--green-mid); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero__orb--1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(111,207,90,.4), transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(91,184,245,.35), transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  top: 40%; left: 35%;
  background: radial-gradient(circle, rgba(45,122,74,.2), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,122,74,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,122,74,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero__content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  border: 1px solid rgba(45,122,74,.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero__headline em {
  font-style: normal;
  color: var(--green-mid);
  position: relative;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero__stat { text-align: center; }

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 420px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero__logo-float {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: logoPulse 4s ease-in-out infinite;
}

.hero__logo-float img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(26,74,46,.18), 0 0 0 0 rgba(111,207,90,.3); }
  50% { box-shadow: 0 20px 60px rgba(26,74,46,.18), 0 0 0 20px rgba(111,207,90,.0); }
}

.hero__card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero__card--1 { top: 10%; right: 0; animation: cardFloat 6s ease-in-out infinite; }
.hero__card--2 { top: 45%; left: -10px; animation: cardFloat 7s 1s ease-in-out infinite reverse; }
.hero__card--3 { bottom: 10%; right: 20px; animation: cardFloat 5s 2s ease-in-out infinite; }

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

.hero__card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__card-dot--green { background: var(--green-lime); box-shadow: 0 0 0 3px rgba(111,207,90,.25); }
.hero__card-dot--blue  { background: var(--blue-accent); box-shadow: 0 0 0 3px rgba(91,184,245,.25); }
.hero__card-dot--lime  { background: #a0e05a; box-shadow: 0 0 0 3px rgba(160,224,90,.25); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-light);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,122,74,.3);
}

.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(111,207,90,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green-mid);
}

.service-card__icon svg {
  width: 26px; height: 26px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card__tags li {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  background: rgba(45,122,74,.08);
  border: 1px solid rgba(45,122,74,.15);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── SKILLS ── */
.skills {
  padding: 100px 0;
  background:
    radial-gradient(circle at top right, rgba(91,184,245,.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(111,207,90,.12), transparent 30%),
    var(--cream);
}

.skills__intro {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.skills__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.skill-group {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(45,122,74,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.skill-group:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,122,74,.22);
}

.skill-group__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(111,207,90,.14);
  border: 1px solid rgba(45,122,74,.12);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 18px;
}

.skill-group h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}

.skill-group p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.skill-group__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-group__tags li {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  background: rgba(45,122,74,.08);
  border: 1px solid rgba(45,122,74,.14);
  border-radius: 999px;
  padding: 6px 10px;
}

.tech-stack {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.tech-stack__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.tech-stack__header .section-tag {
  margin-bottom: 12px;
}

.tech-stack__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.tech-stack__sub {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.tech-stack__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tech-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  background: linear-gradient(180deg, rgba(247,250,244,.9), rgba(255,255,255,1));
  border: 1px solid rgba(45,122,74,.12);
  border-radius: 20px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  transition: var(--transition);
}

.tech-logo__media {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tech-logo__img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.tech-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(45,122,74,.24);
  box-shadow: var(--shadow-sm);
}

.tech-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
}

.tech-logo__mark--react { background: #149eca; }
.tech-logo__mark--next { background: #111111; }
.tech-logo__mark--flutter { background: #3cb6f6; }
.tech-logo__mark--ts { background: #3178c6; }
.tech-logo__mark--node { background: #43853d; }
.tech-logo__mark--python { background: linear-gradient(135deg, #356d9d, #f0c14b); }
.tech-logo__mark--java { background: #e76f00; }
.tech-logo__mark--aws { background: #ff9900; color: #111111; }
.tech-logo__mark--gcp { background: #4285f4; }
.tech-logo__mark--docker { background: #2496ed; }
.tech-logo__mark--k8s { background: #326ce5; }
.tech-logo__mark--openai { background: #1f7a5a; }

/* ── PROCESS ── */
.process {
  padding: 100px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-lime);
  background: rgba(111,207,90,.12);
  border: 1px solid rgba(111,207,90,.2);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process__step-content {
  padding-bottom: 8px;
}

.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.process__step-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

.process__connector {
  width: 1px;
  height: 32px;
  background: rgba(111,207,90,.2);
  margin: 8px 0 8px 24px;
}

/* ── IMPACT ── */
.impact {
  background: var(--green-lime);
  padding: 60px 0;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.impact__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 28px;
  background: rgba(255,255,255,.25);
  border-radius: var(--radius);
}

.impact__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-dark);
}

.impact__desc {
  font-size: 0.85rem;
  color: var(--green-dark);
  line-height: 1.5;
  opacity: .8;
}

/* ── CLIENTS ── */
.clients {
  padding: 100px 0;
  background: var(--cream);
}

.clients__carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 72px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.clients__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: clientsMarquee 24s linear infinite;
}

.clients__carousel:hover .clients__track {
  animation-play-state: paused;
}

.clients__logo-item {
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(45,122,74,.12);
  background: linear-gradient(180deg, rgba(250,247,239,.8), rgba(255,255,255,.98));
  box-shadow: 0 12px 30px rgba(16, 24, 22, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.clients__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 24, 22, 0.1);
  border-color: rgba(45,122,74,.24);
}

.clients__logo-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45,122,74,.12), rgba(111,207,90,.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.clients__logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.clients__logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.04em;
}

.clients__logo-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clients__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.clients__logo-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--green-lime);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__left .section-tag { margin-bottom: 16px; }

.about__left .section-title { margin-bottom: 24px; }

.about__left p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__values {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__value {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about__value span { color: var(--green-mid); }

.about__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about__logo {
  width: 100px; height: 100px;
  object-fit: contain;
}

.about__tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.about__badges span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  background: rgba(45,122,74,.08);
  border: 1px solid rgba(45,122,74,.15);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 36px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.contact__info-item:hover { color: var(--green-lime); }

.contact__info-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--green-lime);
}

/* Form */
.contact__form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.3);
}

.form-group select option {
  background: var(--green-dark);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-lime);
  background: rgba(111,207,90,.08);
}

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

.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 12px;
}

.contact__success {
  background: rgba(111,207,90,.12);
  border: 1px solid rgba(111,207,90,.25);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}

.success-icon {
  width: 60px; height: 60px;
  background: var(--green-lime);
  color: var(--green-dark);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact__success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact__success p { color: rgba(255,255,255,.6); }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}

.footer__logo {
  width: 28px; height: 28px;
  object-fit: contain;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { height: 280px; }

  .services__grid { grid-template-columns: 1fr; }
  .skills__grid { grid-template-columns: repeat(2, 1fr); }
  .tech-stack__logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tech-stack__header { align-items: flex-start; flex-direction: column; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__logo-item { min-width: 220px; }
  .testimonials { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 90px 24px 60px; }
  .hero__visual { display: none; }
  .hero__content { grid-template-columns: 1fr; }

  .services, .skills, .process, .clients, .about, .contact { padding: 72px 0; }

  .impact__grid { grid-template-columns: 1fr 1fr; }
  .skills__grid { grid-template-columns: 1fr; }
  .tech-stack { padding: 28px 24px; border-radius: 24px; }
  .tech-stack__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clients__carousel { padding: 14px; }
  .clients__logo-item { min-width: 190px; padding: 16px; }
  .clients__logo-badge { width: 50px; height: 50px; border-radius: 16px; }
  .clients__logo-name { font-size: 0.92rem; }

  .testimonials { grid-template-columns: 1fr; }

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

  .contact__form { padding: 28px 24px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .impact__grid { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }
  .tech-stack__logos { grid-template-columns: 1fr; }
  .clients__logo-item { min-width: 170px; gap: 12px; }
  .clients__logo-note { font-size: 0.72rem; }
}
