/* ================================================
   HARSHIT — Websites That Bring You Clients
   CSS — Exact Replica
   ================================================ */

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #161616;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #f5f5f5;
  --text-muted: #888;
  --text-dim: #555;
  --accent: #c8f55a;
  --accent-dark: #a8d840;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --nav-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================
   SCROLLBAR
   ============================= */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

/* =============================
   NAV
   ============================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#navbar.scrolled {
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--white);
  margin-right: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.btn-hire {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  background: var(--accent);
  color: #111;
  border-radius: 100px;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-hire:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--text);
}
.btn-hire-mobile {
  margin-top: 8px;
  text-align: center;
  background: var(--accent) !important;
  color: #111 !important;
  border-radius: 100px;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
}

/* =============================
   HERO
   ============================= */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 245, 90, 0.08);
  border: 1px solid rgba(200, 245, 90, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
.hero-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 245, 90, 0.25);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Floating Card */
.hero-card {
  position: absolute;
  right: 40px;
  top: calc(var(--nav-h) + 80px);
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation:
    fadeUp 0.7s 0.5s ease both,
    float 4s 1.2s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-card-browser {
  background: #1a1a1a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}
.browser-dots span:nth-child(1) {
  background: #ff5f57;
}
.browser-dots span:nth-child(2) {
  background: #febc2e;
}
.browser-dots span:nth-child(3) {
  background: #28c840;
}
.browser-url {
  font-size: 11px;
  color: var(--text-dim);
  flex: 1;
  text-align: center;
  background: #222;
  border-radius: 4px;
  padding: 2px 8px;
}
.hero-card-body {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.hero-card-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.hero-card-chip.green {
  background: rgba(200, 245, 90, 0.12);
  color: var(--accent);
  border: 1px solid rgba(200, 245, 90, 0.2);
}
.hero-card-btn {
  font-size: 12px;
  font-weight: 600;
  background: var(--accent);
  color: #111;
  padding: 5px 14px;
  border-radius: 100px;
  transition: background 0.2s;
}
.hero-card-btn:hover {
  background: var(--accent-dark);
}
.hero-card-stats {
  padding: 12px 16px;
  display: flex;
  gap: 16px;
}
.stat-item {
  flex: 1;
}
.stat-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.stat-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.hero-trust {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 60px;
  animation: fadeUp 0.6s 0.5s ease both;
}

/* =============================
   ANIMATIONS
   ============================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   SECTION COMMON
   ============================= */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* =============================
   PROOF / MARQUEE
   ============================= */
.proof-section {
  padding: 80px 0;
  overflow: hidden;
}
.proof-section .section-label,
.proof-section .section-title {
  padding: 0 24px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.proof-section .section-title {
  margin-bottom: 48px;
}
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 80px,
    black calc(100% - 80px),
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 80px,
    black calc(100% - 80px),
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  padding: 8px 0;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 280px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.tc-reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 0;
}
.tc-avatar {
  width: 32px;
  height: 32px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}
.tc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.tc-role {
  font-size: 11px;
  color: var(--text-dim);
}
.tc-stars {
  margin-left: auto;
  font-size: 11px;
  color: #f59e0b;
  letter-spacing: 1px;
}
.tc-preview {
  margin: 12px;
  border-radius: 10px;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.tc-quote {
  padding: 12px 14px 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* Cafe Preview */
.cafe-preview {
  background: #1a0f00;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cafe-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.cafe-nav strong {
  font-size: 12px;
  color: #e8c97a;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.cafe-links {
  display: flex;
  gap: 8px;
  color: rgba(232, 201, 122, 0.5);
  font-size: 10px;
}
.cafe-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.cafe-h {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.25;
  color: #f5e8c8;
}
.cafe-s {
  font-size: 10px;
  color: rgba(232, 201, 122, 0.5);
}
.cafe-btn {
  display: inline-block;
  background: #e8c97a;
  color: #1a0f00;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 6px;
  width: fit-content;
  cursor: pointer;
}

/* Portfolio Preview */
.portfolio-preview {
  background: linear-gradient(135deg, #f0ebe4 0%, #e8e0d5 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.port-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.port-name span {
  font-size: 10px;
  font-weight: 400;
  color: #888;
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 8px;
  border-radius: 100px;
}
.port-h {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  color: #1a1a1a;
}

/* SaaS Preview */
.saas-preview {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.saas-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.saas-nav strong {
  color: #58a6ff;
  font-weight: 700;
}
.saas-try {
  font-size: 10px;
  background: #58a6ff;
  color: #0d1117;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.saas-h {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.25;
  color: #f0f6ff;
  flex: 1;
  display: flex;
  align-items: center;
}
.saas-s {
  font-size: 10px;
  color: rgba(240, 246, 255, 0.4);
}

/* Fitness Preview */
.fitness-preview {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fit-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fit-nav strong {
  font-size: 13px;
  font-weight: 900;
  color: #ff3333;
  letter-spacing: 1px;
}
.fit-join {
  font-size: 10px;
  background: #ff3333;
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.fit-h {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.2;
  color: white;
  flex: 1;
  display: flex;
  align-items: center;
}
.fit-stats {
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255, 51, 51, 0.2);
  padding-top: 8px;
}
.fit-stat {
  display: flex;
  flex-direction: column;
}
.fit-stat strong {
  font-size: 13px;
  font-weight: 700;
  color: #ff3333;
}
.fit-stat span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

/* Restaurant Preview */
.resto-preview {
  background: linear-gradient(135deg, #0c0906 0%, #1a1008 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.resto-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.resto-nav strong {
  color: #d4a96a;
  font-size: 12px;
}
.resto-nav span {
  color: rgba(212, 169, 106, 0.5);
  font-size: 10px;
}
.resto-h {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.3;
  color: #f5e8c8;
}
.resto-menu {
  border-top: 1px solid rgba(212, 169, 106, 0.15);
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.resto-menu div {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(212, 169, 106, 0.6);
}
.resto-menu div span:last-child {
  color: rgba(212, 169, 106, 0.4);
}

/* Agency Preview */
.agency-preview {
  background: linear-gradient(135deg, #0a0a0a 0%, #0a0a14 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.agency-logo {
  font-size: 18px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
}
.agency-nav {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
}
.agency-h {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.25;
  color: white;
  margin-top: 8px;
}
.agency-s {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

/* =============================
   SERVICES
   ============================= */
.services-section {
  padding: 80px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.services-col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.services-col-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}
.services-col-header .services-col-title {
  margin-bottom: 0;
}
.services-link {
  font-size: 12px;
  color: var(--accent);
  border-bottom: 1px solid rgba(200, 245, 90, 0.3);
  transition: border-color 0.2s;
}
.services-link:hover {
  border-color: var(--accent);
}

/* Pricing Card */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover {
  border-color: var(--border-hover);
}
.pricing-card.featured {
  border-color: rgba(200, 245, 90, 0.25);
  background: linear-gradient(135deg, #111 0%, #131a06 100%);
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 11px;
  font-weight: 600;
  background: var(--accent);
  color: #111;
  padding: 3px 12px;
  border-radius: 100px;
}
.pricing-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.pricing-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 4px;
}
.pricing-features {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.pricing-why {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(200, 245, 90, 0.3);
}
.pricing-why strong {
  color: var(--text-muted);
}
.full-width {
  width: 100%;
  text-align: center;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* Social Features */
.social-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.social-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.social-feature:hover {
  border-color: var(--border-hover);
}
.social-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.social-feat-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.social-feat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================
   LIVE PREVIEWS
   ============================= */
.previews-section {
  padding: 80px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.previews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.preview-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.preview-site {
  height: 220px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s;
}
.preview-card:hover .preview-site {
  transform: scale(1.02);
}

.cafe-full {
  background: #1a0f00;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cafe-full-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cafe-full-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.cafe-full-body .cafe-h {
  font-size: 22px;
}

.saas-full {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.saas-full-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.saas-full-body .saas-h {
  font-size: 22px;
  display: block;
}

.portfolio-full {
  background: linear-gradient(135deg, #f0ebe4 0%, #e8e0d5 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.port-full-name {
  font-size: 15px;
}
.port-full-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.port-full-body .port-h {
  font-size: 24px;
}

.preview-footer {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.preview-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.preview-type {
  font-size: 12px;
  color: var(--text-dim);
}
.preview-link {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  transition: gap 0.2s;
}
.preview-link:hover {
  text-decoration: underline;
}

.previews-cta {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.previews-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* =============================
   PROCESS
   ============================= */
.process-section {
  padding: 80px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.process-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  background: rgba(200, 245, 90, 0.08);
  border: 1px solid rgba(200, 245, 90, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
}

/* =============================
   CONTACT
   ============================= */
.contact-section {
  padding: 80px 24px;
}
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  width: 100%;
  justify-content: center;
}
.contact-btn:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
  transform: translateY(-2px);
}
.contact-btn.whatsapp {
  background: #0a1a10;
  border-color: rgba(37, 211, 102, 0.2);
  color: #25d366;
}
.contact-btn.whatsapp:hover {
  background: #0d2215;
  border-color: rgba(37, 211, 102, 0.4);
}
.contact-btn.whatsapp svg {
  fill: #25d366;
}
.contact-trust {
  font-size: 13px;
  color: var(--text-dim);
}

/* =============================
   FOOTER
   ============================= */
.footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer p {
  font-size: 13px;
  color: var(--text-dim);
}

/* =============================
   SCROLL REVEAL
   ============================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .hero-card {
    position: static;
    width: 100%;
    max-width: 340px;
    margin-top: 40px;
    animation: fadeUp 0.7s 0.5s ease both;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .previews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    flex-direction: column;
    gap: 8px;
  }
  .process-connector {
    width: 1px;
    height: 32px;
    margin: 0 0 0 22px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .btn-hire {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(32px, 8vw, 48px);
  }
  .previews-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    text-align: center;
    justify-content: center;
  }
  .process-steps {
    gap: 4px;
  }
  .step-desc {
    max-width: 100%;
  }
}
