@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600&family=Fragment+Mono&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #171717;
  --card-bg:     #000000;
  --card-border: #262626;
  --orange:      #ff7300;
  --orange-dim:  rgba(255,115,0,0.12);
  --white:       #ffffff;
  --grey-100:    #d4d4d4;
  --grey-200:    #a3a3a3;
  --grey-300:    #737373;
  --grey-400:    #525252;
  --grey-500:    #404040;
  --grey-600:    #262626;
  --f-head:      'Exo 2', sans-serif;
  --f-body:      'Inter', sans-serif;
  --f-mono:      'Fragment Mono', monospace;
  --radius-card: 32px;
  --radius-btn:  100px;
  --transition:  0.3s cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  cursor: none;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; border: none; background: none; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-dot  { width: 8px; height: 8px; background: var(--orange); }
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,115,0,0.45);
  transition: width .35s var(--transition), height .35s var(--transition), border-color .35s;
}
#cursor-ring.hover { width: 54px; height: 54px; border-color: rgba(255,115,0,0.7); }
@media (max-width: 768px) { #cursor-dot, #cursor-ring { display: none; } }

/* ─── SITE WRAPPER ──────────────────────────────────────────────── */
.site-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 40px;
  min-height: 100vh;
}

/* ─── MAIN CARD ─────────────────────────────────────────────────── */
.card {
  width: 94%;
  max-width: 1480px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}

/* ─── NAV ───────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
}

/* ── LOGO ── */
.nav-logo { display: flex; align-items: center; }

/* The SVG carries its own #28293e dark background — display as a branded block */
.site-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand .site-logo-img { height: 54px; }

.nav-logo .mark {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: #000;
  flex-shrink: 0;
}
.nav-logo .word { color: var(--white); font-family: var(--f-head); font-weight: 800; font-size: 18px; letter-spacing:-0.02em; }
.nav-logo .word span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  font-size: 16px; font-weight: 500; color: var(--grey-100);
  padding: 8px 16px; border-radius: 100px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #111; border: 1px solid var(--card-border);
  border-radius: 14px; padding: 8px; min-width: 180px;
  opacity: 0; visibility: hidden;
  transition: all 0.2s; list-style: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 10px 16px; font-size: 16px; border-radius: 8px;
}
.dropdown-menu li a:hover { background: rgba(255,115,0,0.1); color: var(--orange); }

.nav-ctas { display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-btn);
  font-size: 16px; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
}
.btn-ghost  { border: 1px solid var(--grey-500); color: var(--grey-100); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-primary { background: var(--orange); color: #000; }
.btn-primary:hover { background: #ff8c26; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,115,0,0.35); }
.btn-large  { padding: 14px 32px; font-size: 18px; border-radius: var(--radius-btn); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

/* ─── INNER CONTENT WRAPPER ─────────────────────────────────────── */
.inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ─── SECTION SPACING ───────────────────────────────────────────── */
.section { padding: 48px 0; }
.section-sm { padding: 32px 0; }

/* ─── SECTION LABEL ─────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: inline-block; width: 20px; height: 1px; background: var(--orange);
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 70vh;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
  margin: 24px; border-radius: 24px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('https://framerusercontent.com/images/2TAgFTr95Jovzm6wqx7upqls.webp') center/cover no-repeat;
  opacity: 0.45;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

/* Corner decorators */
.hero-corners span {
  position: absolute; width: 50px; height: 50px;
  border-color: var(--card-border); border-style: solid;
}
.hero-corners .tl { top: 24px; left: 24px; border-width: 1px 0 0 1px; }
.hero-corners .tr { top: 24px; right: 24px; border-width: 1px 1px 0 0; }
.hero-corners .bl { bottom: 24px; left: 24px; border-width: 0 0 1px 1px; }
.hero-corners .br { bottom: 24px; right: 24px; border-width: 0 1px 1px 0; }

.hero-content {
  position: relative; z-index: 2; padding: 24px 40px; max-width: 720px;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,212,212,0.08); border: 1px solid rgba(212,212,212,0.15);
  border-radius: 100px; padding: 7px 16px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--grey-100); margin-top: 40px; margin-bottom: 28px;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,115,0,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(255,115,0,0); }
}

.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.hero h1 .orange { color: var(--orange); }

.hero-tagline {
  font-family: var(--f-head);
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--grey-100); margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px; line-height: 1.75; color: var(--grey-200);
  max-width: 520px; margin-bottom: 32px;
}

.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--card-border);
}
.hero-stat .val {
  font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--white);
}
.hero-stat .val .orange { color: var(--orange); }
.hero-stat .lbl {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--grey-300); text-transform: uppercase; margin-top: 2px;
}

/* ─── PROJECT CARDS ─────────────────────────────────────────────── */
.projects-section { border-top: 1px solid var(--card-border); }

.projects-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 20px;
}
.projects-header h2 {
  font-family: var(--f-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; max-width: 100%; white-space: nowrap;
}

.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.project-card {
  background: #0a0a0a; border: 1px solid var(--card-border);
  border-radius: 20px; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: none; display: flex; flex-direction: column;
}
.project-card:hover {
  border-color: rgba(255,115,0,0.4);
  transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.project-card-img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  filter: brightness(1);
  transition: filter var(--transition);
}
.project-card:hover .project-card-img { filter: brightness(1); }

.project-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }

.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.07em;
  color: var(--grey-300); background: rgba(255,255,255,0.04);
  border: 1px solid var(--grey-600); border-radius: 100px; padding: 3px 9px; text-transform: uppercase;
}
.tag.orange-tag { color: var(--orange); border-color: rgba(255,115,0,0.25); background: rgba(255,115,0,0.06); }

.project-card h3 {
  font-family: var(--f-head); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.project-card p {
  font-size: 17px; color: var(--grey-200); line-height: 1.65; margin-bottom: 16px; flex: 1;
}
.project-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--orange);
  transition: gap var(--transition); margin-top: auto;
}
.project-link:hover { gap: 10px; }
.project-link::after { content: '→'; }

/* ─── ABOUT SECTION ─────────────────────────────────────────────── */
.about-section { border-top: 1px solid var(--card-border); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }

.about-left h2 {
  font-family: var(--f-head); font-size: clamp(24px, 3vw, 40px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; white-space: nowrap;
}
.about-left p { font-size: 18px; color: var(--grey-200); line-height: 1.7; margin-bottom: 28px; }

.agents-list { margin-bottom: 28px; }
.agent-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--card-border);
}
.agent-item:first-child { border-top: 1px solid var(--card-border); }
.agent-num { font-family: var(--f-mono); font-size: 11px; color: var(--orange); padding-top: 2px; flex-shrink: 0; }
.agent-text h4 { font-family: var(--f-head); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.agent-text p  { font-size: 16px; color: var(--grey-200); line-height: 1.55; margin: 0; }

.about-right { position: relative; }
.about-img {
  width: 100%; height: 460px;
  object-fit: cover; border-radius: 18px; border: 1px solid var(--card-border);
}
.about-img-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--orange); color: #000;
  font-family: var(--f-head); font-weight: 800; font-size: 12px;
  padding: 14px 18px; border-radius: 14px; line-height: 1.3;
}
.about-img-badge span { display: block; font-size: 20px; font-weight: 900; }

/* ─── CAPABILITIES ──────────────────────────────────────────────── */
.capabilities-section { border-top: 1px solid var(--card-border); }

.caps-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.cap-tag {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em;
  padding: 9px 16px; border: 1px solid var(--grey-600);
  border-radius: 100px; color: var(--grey-100);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.cap-tag:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

.caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cap-card {
  background: #0a0a0a; padding: 28px 26px;
  border: 1px solid var(--card-border);
  transition: background var(--transition), border-color var(--transition);
}
.cap-card:hover { background: #111; border-color: rgba(255,115,0,0.2); }
.cap-icon {
  width: 40px; height: 40px; background: var(--orange-dim);
  border: 1px solid rgba(255,115,0,0.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px;
}
.cap-card h4 { font-family: var(--f-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.cap-card p  { font-size: 16px; color: var(--grey-200); line-height: 1.65; }

/* ─── TESTIMONIALS ──────────────────────────────────────────────── */
.testimonials-section { border-top: 1px solid var(--card-border); }

.section-header { margin-bottom: 24px; }
.section-header h2 {
  font-family: var(--f-head); font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; max-width: 100%; white-space: nowrap;
}

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card {
  background: #0a0a0a; border: 1px solid var(--card-border);
  border-radius: 18px; padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: rgba(255,115,0,0.25); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--orange); font-size: 13px; }
.testimonial-card blockquote {
  font-size: 16px; line-height: 1.7; color: var(--grey-100);
  font-style: italic; margin-bottom: 20px; border: none;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--card-border);
}
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--card-border); background: var(--grey-600);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--orange);
}
.author-info .name { font-family: var(--f-head); font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.author-info .role { font-size: 12px; color: var(--grey-300); }

/* ─── CTA BLOCK ─────────────────────────────────────────────────── */
.cta-section { border-top: 1px solid var(--card-border); position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 560px; height: 280px;
  background: radial-gradient(ellipse, rgba(255,115,0,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 1000px; margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--f-head); font-size: clamp(18px, 2.8vw, 36px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 14px; white-space: nowrap;
}
.cta-content p { font-size: 18px; color: var(--grey-200); margin: 0 auto 32px; max-width: 600px; }
.cta-content .section-label::after {
  content: ''; display: inline-block; width: 20px; height: 1px; background: var(--orange);
}
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--card-border); padding: 52px 40px 36px; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px; margin-bottom: 24px;
}
.footer-brand p {
  font-size: 16px; color: var(--white); line-height: 1.7;
  margin-top: 14px; max-width: 250px;
}
.footer-col h5 {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--white); text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 16px; color: var(--white); transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--card-border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 14px; color: var(--white); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 44px; height: 44px; border: 1px solid var(--grey-600);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white); transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); }

/* ─── MOBILE HAMBURGER ──────────────────────────────────────────── */
.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; cursor: none; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; height: 1.5px; background: var(--grey-100);
  border-radius: 2px; transition: all 0.25s;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE NAV DRAWER ─────────────────────────────────────────── */
.mobile-nav-drawer {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.97); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; backdrop-filter: blur(20px);
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  font-family: var(--f-head); font-size: 26px; font-weight: 700;
  color: var(--white); transition: color 0.2s;
}
.mobile-nav-drawer a:hover { color: var(--orange); }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; font-size: 26px; color: var(--grey-200); cursor: none; }

/* ─── INNER PAGE HERO ───────────────────────────────────────────── */
.inner-hero {
  padding: 56px 40px; margin: 24px; border-radius: 24px;
  background: #050505; border: 1px solid var(--card-border);
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  opacity: 0.4;
}

.hero-right-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1100px) {
  .hero-right-img { right: -100px; width: 400px; height: 400px; }
}
@media (max-width: 900px) {
  .hero-right-img { display: none; }
}

.inner-hero-glow {
  position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,115,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.inner-hero .page-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
}
.inner-hero h1 {
  font-family: var(--f-head); font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 16px; max-width: 640px;
}
.inner-hero p {
  font-size: 18px; color: var(--grey-200); line-height: 1.7;
  max-width: 520px; margin-bottom: 28px;
}

/* ─── PROBLEM / SOLUTION ────────────────────────────────────────── */
.problem-section { border-bottom: 1px solid var(--card-border); }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

.problem-left h2 {
  font-family: var(--f-head); font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px;
}
.problem-left p { font-size: 18px; color: var(--grey-200); line-height: 1.7; }
.inner-decorator-img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: 18px; border: 1px solid var(--card-border);
  margin-top: 32px; background: #050505;
}


.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid var(--card-border);
}
.step-item:last-child { border-bottom: none; }
.step-num { font-family: var(--f-mono); font-size: 11px; color: var(--orange); padding-top: 2px; flex-shrink: 0; width: 24px; }
.step-body h4 { font-family: var(--f-head); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-body p  { font-size: 16px; color: var(--grey-200); line-height: 1.65; }

/* ─── FEATURES GRID ─────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: #0a0a0a; border: 1px solid var(--card-border);
  border-radius: 18px; padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: rgba(255,115,0,0.3); transform: translateY(-3px); }
.feature-card .icon { font-size: 26px; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--f-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 16px; color: var(--grey-200); line-height: 1.65; }

/* ─── PRICING ───────────────────────────────────────────────────── */
.pricing-section { border-bottom: 1px solid var(--card-border); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  background: #0a0a0a; border: 1px solid var(--card-border);
  border-radius: 20px; padding: 36px 30px; position: relative;
  transition: all var(--transition);
}
.pricing-card.featured { background: #0d0d0d; border-color: rgba(255,115,0,0.4); }
.pricing-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--orange); color: #000;
  font-family: var(--f-mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; padding: 4px 14px; border-radius: 100px;
}
.pricing-card h3 { font-family: var(--f-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--f-head); font-size: 44px; font-weight: 900;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 4px;
}
.pricing-card .price span { font-size: 18px; color: var(--grey-300); }
.pricing-card .period { font-size: 13px; color: var(--grey-300); margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin-bottom: 24px; }
.pricing-card li {
  font-size: 16px; color: var(--grey-200); padding: 8px 0;
  border-bottom: 1px solid var(--card-border);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card li::before { content: '✓'; color: var(--orange); font-size: 12px; }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .caps-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .about-img      { height: 320px; }
  .about-img-badge { bottom: -12px; left: 12px; }
}

@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links, .nav-ctas { display: none; }
  .nav-mobile-toggle { display: flex; }
  .inner          { padding: 0 24px; }
  .hero-content   { padding: 64px 24px; }
  .projects-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .caps-grid      { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .problem-grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid    { grid-template-columns: 1fr; }
  footer          { padding: 40px 24px 28px; }
  .inner-hero     { padding: 56px 24px 48px; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .section        { padding: 56px 0; }
}

@media (max-width: 600px) {
  .hero h1         { font-size: 40px; }
  .hero-tagline    { font-size: 21px; }
  .hero-stats      { gap: 20px; }
  .hero-ctas       { flex-direction: column; }
  .hero-ctas .btn  { width: 100%; justify-content: center; }
  .cta-btns        { flex-direction: column; align-items: center; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
  .section         { padding: 48px 0; }
  .project-card-img { height: 180px; }
}
