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

:root {
  --green: #30b068;
  --green-light: color-mix(in srgb, #30b068 14%, #fafaf8);
  --green-mid: color-mix(in srgb, #30b068 55%, #fafaf8);
  --ink: #0d0d0b;
  --ink-soft: #444440;
  --ink-muted: #888882;
  --bg: #fafaf8;
  --bg-warm: #f5f4f0;
  --border: #e8e8e4;
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 12px;
  --max: 1220px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span {
  color: var(--green);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a.active {
  color: var(--green);
  position: relative;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover {
  opacity: 0.85;
}
.nav-mobile-cta {
  display: none;
  background: var(--green);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-mobile-cta:hover {
  opacity: 0.85;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE DRAWER */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 201;
  width: 280px;
  background: var(--bg);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-close {
  width: 36px;
  height: 36px;
  background: var(--bg-warm);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.drawer-close svg {
  width: 16px;
  height: 16px;
}
.drawer-nav {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}
.drawer-nav li a {
  display: block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.18s;
}
.drawer-nav li a:hover {
  color: var(--ink);
  border-left-color: var(--green);
  background: var(--green-light);
  padding-left: 32px;
}
.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-footer .btn-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* SECTION BASE */
section {
  padding: 80px 40px;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1.5px solid color-mix(in srgb, var(--green) 30%, transparent);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-name em {
  font-style: normal;
  color: var(--green);
}
.hero-desc {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--bg-warm);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
}
.stat-num span {
  color: var(--green);
}
.stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.hero-img-card {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-badge.top {
  top: -20px;
  right: -20px;
}
.hero-float-badge.bottom {
  bottom: 24px;
  left: -28px;
}
.hfb-icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hfb-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}
.hfb-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.hfb-sub {
  font-size: 11px;
  color: var(--ink-muted);
}

/* ABOUT */
#about {
  background: var(--bg-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.highlight-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SKILLS */
.skills-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.skill-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.skill-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.skill-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
}
.skill-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.skill-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* PROJECTS */
#projects {
  background: var(--bg-warm);
}
.projects-header {
  margin-bottom: 60px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--green-mid);
}
.project-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-card.featured .project-img {
  aspect-ratio: auto;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.project-card:hover .project-img img {
  transform: scale(1.04);
}
.project-body {
  padding: 28px;
}
.project-card.featured .project-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.p-tag {
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.project-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.project-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.project-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.metric-val {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
}
.metric-label {
  font-size: 12px;
  color: var(--ink-muted);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s;
}
.project-link:hover {
  gap: 10px;
}
.project-link svg {
  width: 14px;
  height: 14px;
}

/* SERVICES */
.services-header {
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.service-list {
  margin-top: 16px;
  list-style: none;
}
.service-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--bg-warm);
}
.testimonials-header {
  margin-bottom: 60px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
  color: #f59e0b;
}
.testi-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.testi-role {
  font-size: 12px;
  color: var(--ink-muted);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}
.ci-label {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 2px;
}
.ci-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.ci-value a {
  color: var(--green);
  text-decoration: none;
}
.ci-value a:hover {
  text-decoration: underline;
}
.contact-form {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--green);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.form-submit:hover {
  opacity: 0.88;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.form-status.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
}
.form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.footer-logo span {
  color: #5cd68a;
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.social-btn svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.resume-btn:hover {
  opacity: 0.85;
}
.resume-btn svg {
  width: 14px;
  height: 14px;
}

/* TWEAKS PANEL */
#tweaks-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 {
  animation-delay: 0.1s;
  opacity: 0;
}
.fade-up-2 {
  animation-delay: 0.2s;
  opacity: 0;
}
.fade-up-3 {
  animation-delay: 0.3s;
  opacity: 0;
}
.fade-up-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

/* HERO HEADLINE */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--green);
}

/* STATS BAR */
.stats-bar {
  background: var(--ink);
  padding: 64px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-bar-item {
  text-align: center;
  padding: 16px;
}
.sbi-num {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}
.sbi-num span {
  color: var(--green);
}
.sbi-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  letter-spacing: 0.01em;
}

/* ABOUT BULLETS */
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.ab-icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-bullet strong {
  color: var(--ink);
}

/* SERVICE OUTCOME */
.service-outcome {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  font-style: italic;
}
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.services-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

/* CASE STUDY BLOCKS */
.cs-block {
  margin-bottom: 14px;
}
.cs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.cs-text {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* RESULTS SECTION */
.results-section {
  background: var(--ink);
  padding: 80px 40px;
}
.results-header {
  text-align: center;
  margin-bottom: 64px;
}
.results-title {
  color: #fff !important;
}
.results-sub {
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 520px;
  margin: 0 auto;
}
.section-tag-light {
  background: rgba(48, 176, 104, 0.15);
  border-color: rgba(48, 176, 104, 0.35);
  color: #5cd68a;
}
.section-tag-light::before {
  background: #5cd68a;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.result-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.result-metric:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(48, 176, 104, 0.3);
}
.rm-num {
  font-family: var(--font-head);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -1.5px;
  line-height: 1;
}
.rm-num span {
  font-size: 0.7em;
}
.rm-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-top: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
}
.rm-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

/* TOOLS GROUPED */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tool-group-card {
  padding: 28px;
}
.tg-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.tg-category {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.tg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tg-tag {
  background: var(--green-light);
  border: 1px solid color-mix(in srgb, var(--green) 20%, transparent);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.tg-tag:hover {
  background: color-mix(in srgb, var(--green) 20%, var(--bg));
  border-color: color-mix(in srgb, var(--green) 40%, transparent);
}

/* FINAL CTA SECTION */
.final-cta-section {
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--green) 6%, var(--bg)) 0%,
    var(--bg) 60%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
  text-align: center;
}
.final-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}
.fca-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef9ec;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.fca-badge::before {
  content: "⚡";
  font-size: 14px;
}
.fca-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.fca-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.fca-btn {
  font-size: 17px;
  padding: 16px 32px;
}
.fca-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
}

/* CONTACT REPLY NOTE */
.contact-reply-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-top: 32px;
  padding: 10px 16px;
  background: var(--green-light);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--green) 25%, transparent);
}
.form-textarea-lg {
  min-height: 160px !important;
}

/* CASE STUDIES / PORTFOLIO */
#case-studies {
  background: var(--bg-warm);
}

/* HERO SOCIAL PROOF */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* SERVICE PROOF LINE */
.service-proof {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--green-light);
}

/* PORTFOLIO FILTER + CARDS */
.pf-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pf-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pf-btn:hover {
  border-color: var(--green);
  color: var(--green);
}
.pf-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pf-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pf-card:hover {
  transform: scale(1.02);
}
.pf-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--border);
}
.pf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pf-card:hover .pf-img img {
  transform: scale(1.06);
}
.pf-cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}
.pf-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    transparent 100%
  );
  padding: 28px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.pf-project-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.pf-result {
  font-size: 13px;
  font-weight: 600;
  color: #5cd68a;
  margin-bottom: 6px;
}
.pf-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.25s ease,
    padding 0.25s ease,
    opacity 0.2s ease;
}
.pf-card:hover .pf-live-btn {
  height: 36px;
  padding: 8px 16px;
  opacity: 1;
}

/* MERGED RESULTS — stats row inside dark section */
.results-stats-row {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-inner {
    padding: 0 16px;
    justify-content: space-between;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
    order: -1;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-cta {
    display: none !important;
  }
  .nav-mobile-cta {
    display: inline-flex !important;
  }
  section {
    padding: 48px 20px;
  }
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-float-badge.top {
    top: 10px;
    right: 0;
  }
  .hero-float-badge.bottom {
    bottom: 10px;
    left: 0;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-divider {
    display: none;
  }
  .trust-item {
    padding-right: 24px;
  }
  .stats-bar {
    padding: 50px 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-bar-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 16px;
  }
  .services-grid-3 {
    grid-template-columns: 1fr;
  }
  .results-section {
    padding: 70px 20px;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .result-metric {
    padding: 32px 20px;
  }
  .final-cta-section {
    padding: 48px 20px;
  }
  .results-section {
    padding: 48px 20px;
  }
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pf-img {
    aspect-ratio: 1 / 1;
  }
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
  .pf-img {
    aspect-ratio: 3 / 4;
  }
}
@media (max-width: 575px) {
  .hero-float-badge {
    display: none;
  }
  .services-header {
    margin-bottom: 40px;
  }
  .hero-social-proof {
    font-size: 12px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 475px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .service-card,
  .testi-card {
    padding: 20px;
  }
  .result-metric {
    padding: 24px 16px;
  }
  .btn-text-desktop {
    display: none;
  }
  .btn-text-mobile {
    display: inline;
  }
}
@media (min-width: 476px) {
  .btn-text-mobile {
    display: none;
  }
}
