/* =============================================
   ROOT & TOKENS
   ============================================= */
:root {
  --bg: #F7F8FA;
  --dark: #0A1628;
  --cyan: #00C8F0;
  --muted: #8A9BB0;
  --white: #FFFFFF;
  --border: #E2E6EE;
  --card-bg: #EAF6FB;
  --space: 'Space Grotesk', sans-serif;
  --inter: 'Inter', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--inter); background: var(--bg); color: var(--dark); line-height: 1.6; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3 { font-family: var(--space); font-weight: 700; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(3rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { font-family: var(--inter); line-height: 1.75; color: var(--muted); }

.cyan { color: var(--cyan); }

.micro-label {
  display: block;
  font-family: var(--inter);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1024px) { .container { padding: 0 40px; } }
@media (max-width: 768px)  { .container { padding: 0 20px; } }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--inter);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 13px 32px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: var(--cyan);
  color: var(--dark);
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0,200,240,0.35);
  opacity: 0.93;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
}
.btn-ghost:hover {
  border-color: var(--dark);
  color: var(--dark);
  transform: scale(1.04);
}

.btn-nav {
  background: var(--dark);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn-nav:hover { transform: scale(1.04); opacity: 0.9; }

/* =============================================
   NAVBAR
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(10,22,40,0.08);
}

.logo {
  font-family: var(--space);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dark);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--inter);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  padding: 7px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--cyan); background: rgba(0,200,240,0.07); }
.nav-links a.active {
  color: var(--cyan);
  background: rgba(0,200,240,0.08);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem 20px;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0; padding-bottom: 0;
  }
  .nav-links.open {
    max-height: 400px;
    padding: 1.5rem 20px;
  }
  .nav-links a { font-size: 1rem; padding: 10px 16px; }
  .btn-nav { display: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  nav { padding: 0 40px; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 100px 64px 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-left .micro-label { margin-bottom: 1.2rem; }

.hero-left h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0 1.25rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-body {
  font-size: 1rem;
  color: rgba(10,22,40,0.6);
  max-width: 400px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Right */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.hero-img-wrap {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(0,200,240,0.18);
  flex-shrink: 0;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(10,22,40,0.12);
  border: 1px solid var(--border);
}

.float-top {
  top: 24px;
  right: -20px;
  text-align: center;
  animation: slideDown 0.8s ease-out 0.3s both;
}
.float-number {
  font-family: var(--space);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.float-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--dark);
  text-transform: uppercase;
  margin-top: 2px;
}

.float-bottom {
  bottom: 60px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.8s ease-out 0.5s both;
}
.float-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.float-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
}
.float-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  animation: fadeIn 1s ease 2s both;
}
.scroll-hint span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.scroll-hint svg {
  width: 14px; height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  animation: bounce 1.2s ease-in-out infinite;
}

@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
@keyframes pulse  { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes slideDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp   { from{opacity:0;transform:translateY(16px)}  to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
    min-height: auto;
    gap: 3rem;
  }
  .hero-right { height: 360px; }
  .hero-img-wrap { width: 340px; height: 340px; }
  .float-top  { right: 0; }
  .float-bottom { left: 0; }
}

@media (max-width: 768px) {
  .hero { padding: 88px 20px 48px; gap: 2rem; }
  .hero-right { height: 300px; }
  .hero-img-wrap { width: 260px; height: 260px; }
  .float-card { display: none; }
  .hero-btns .btn { flex: 1; justify-content: center; }
  .scroll-hint { display: none; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark);
  padding: 36px 0;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  text-align: center;
}
.stat {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 16px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--space);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.2;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

@media (max-width: 1024px) { .stats-inner { padding: 0 40px; } }
@media (max-width: 768px) {
  .stats-inner { padding: 0 20px; grid-template-columns: repeat(3,1fr); gap: 1.5rem 0; }
  .stat { border-right: none; padding: 0; }
}

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

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1rem;
}
.sec-header h2 { margin-top: 0.25rem; }
.sec-link {
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.sec-link:hover { opacity: 0.75; }

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

.svc-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,200,240,0.2);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,22,40,0.1);
}

.svc-icon {
  width: 48px; height: 48px;
  background: rgba(0,200,240,0.15);
  border: 1px solid rgba(0,200,240,0.28);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.svc-card:hover .svc-icon { transform: scale(1.08); }
.svc-icon svg {
  width: 20px; height: 20px;
  stroke: var(--cyan);
  stroke-width: 1.5;
  fill: none;
}

.svc-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,140,180,0.85);
  margin-bottom: 0.4rem;
  font-family: var(--inter);
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.svc-divider {
  width: 28px; height: 1.5px;
  background: rgba(0,200,240,0.45);
  margin-bottom: 1rem;
  transition: width 0.3s ease;
}
.svc-card:hover .svc-divider { width: 56px; }

.svc-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.svc-link {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  margin-top: auto;
}
.svc-link:hover { opacity: 0.7; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

/* =============================================
   HOW WE WORK
   ============================================= */
.process {
  background: var(--bg);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.process h2 { margin-bottom: 3rem; margin-top: 0.25rem; }

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

.proc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
}

.proc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.proc-icon {
  width: 44px; height: 44px;
  background: rgba(0,200,240,0.1);
  border: 1px solid rgba(0,200,240,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proc-icon svg {
  width: 18px; height: 18px;
  stroke: var(--cyan);
  stroke-width: 1.5;
  fill: none;
}

.proc-num {
  font-family: var(--space);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0,200,240,0.15);
  line-height: 1;
}

.proc-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.proc-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .process-grid { grid-template-columns: 1fr; } }

/* =============================================
   RECENT PROJECTS
   ============================================= */
.projects {
  background: var(--bg);
  padding: 96px 0;
}

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

.proj-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.proj-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.01);
  transition: filter 700ms ease, transform 700ms ease;
}
.proj-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.07);
}
.proj-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, transparent 70%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proj-cat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.proj-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .projects-grid { grid-template-columns: 1fr; } }

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  background: var(--white);
  padding: 96px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-left { display: flex; flex-direction: column; gap: 0; }
.about-left .micro-label { margin-bottom: 0.75rem; }
.about-left h2 { margin-bottom: 1.25rem; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.about-left p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.75rem;
}
.astat-num {
  font-family: var(--space);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 2px;
}
.astat-lbl {
  font-size: 0.75rem;
  color: var(--muted);
}

.about-link {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.about-link:hover { opacity: 0.7; }

.about-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-right img { height: 300px; }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--card-bg);
  padding: 96px 0;
  border-top: 1px solid rgba(0,200,240,0.12);
}
.testimonials h2 { margin-bottom: 3rem; margin-top: 0.25rem; }

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

.testi-card {
  background: var(--white);
  border: 1px solid rgba(0,200,240,0.12);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s ease;
}
.testi-card:hover { box-shadow: 0 16px 40px rgba(10,22,40,0.1); }

.testi-quote {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.testi-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0.5rem;
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,200,240,0.15);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--space);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.testi-role {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1024px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .testi-grid { grid-template-columns: 1fr; } }

/* =============================================
   CTA
   ============================================= */
.cta {
  background: var(--dark);
  padding: 96px 0;
}
.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}
.cta-inner p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--space);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fsoc {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.fsoc svg { width: 16px; height: 16px; }
.fsoc:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,200,240,0.06);
}

.footer-nav-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--dark); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 64px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .footer-grid { gap: 2.5rem; padding: 0 40px 3rem; }
  .footer-bottom { padding: 1.5rem 40px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 20px 3rem; }
  .footer-bottom { padding: 1.5rem 20px; }
}

/* =============================================
   OTHER PAGES — reused components
   ============================================= */

/* Page hero (about, services, work, contact) */
.page-hero {
  padding: 140px 0 64px;
  background: var(--bg);
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 5rem); line-height: 1.05; }
.page-hero .divider {
  width: 56px; height: 3px;
  background: var(--cyan);
  margin: 1.5rem 0;
  transform-origin: left;
  animation: scaleX 0.6s ease 0.6s both;
}
@keyframes scaleX { from{transform:scaleX(0)} to{transform:scaleX(1)} }

/* Story / about page */
.story-section { background: var(--white); padding: 80px 0; }
.story-section h2 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 1.5rem; }
.story-content { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.story-content p { color: var(--muted); font-size: 0.95rem; }
.checkpoints { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.checkpoint { display: flex; gap: 0.75rem; align-items: flex-start; }
.checkpoint-check { color: var(--cyan); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.checkpoint-text { font-weight: 600; color: var(--dark); font-size: 0.9rem; }

/* Skills */
.skills-section { background: var(--bg); padding: 80px 0; }
.skills-section h2 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 2.5rem; }
.skills-grid { display: grid; gap: 1.75rem; }
.skill-item { display: flex; flex-direction: column; gap: 0.6rem; }
.skill-header { display: flex; justify-content: space-between; }
.skill-name { font-family: var(--space); font-weight: 600; color: var(--dark); }
.skill-percentage { color: var(--cyan); font-weight: 600; font-size: 0.9rem; }
.skill-bar { height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #00a8d0);
  border-radius: 4px;
  width: 0;
  transition: width 1.1s ease;
}

/* Services page full cards */
.services-full { background: var(--white); padding: 80px 0; }
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-full-card:hover { box-shadow: 0 12px 36px rgba(10,22,40,0.08); transform: translateY(-2px); }
.service-full-icon {
  width: 72px; height: 72px;
  background: var(--card-bg);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.service-full-icon svg { width: 28px; height: 28px; stroke: var(--cyan); stroke-width: 1.5; fill: none; }
.service-full-content h3 { margin-bottom: 0.4rem; }
.service-full-content > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.service-tag {
  background: rgba(0,200,240,0.1);
  border: 1px solid rgba(0,200,240,0.22);
  color: rgba(0,120,160,0.9);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}
.service-inquire { color: var(--cyan); font-weight: 600; font-size: 0.875rem; transition: opacity 0.2s; }
.service-inquire:hover { opacity: 0.7; }
@media (max-width: 640px) {
  .service-full-card { grid-template-columns: 52px 1fr; padding: 1.5rem; gap: 1rem; }
  .service-full-icon { width: 52px; height: 52px; }
}

/* Work page */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.work-card:hover { box-shadow: 0 12px 36px rgba(10,22,40,0.1); transform: translateY(-3px); }
.work-card-image { width: 100%; height: 220px; object-fit: cover; }
.work-card-content { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.work-card h3 { color: var(--dark); }
.work-card-desc { color: var(--muted); font-size: 0.875rem; flex-grow: 1; }
.work-tech-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.work-tech-tag {
  background: var(--card-bg);
  color: var(--cyan);
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Contact page */
.contact-hero { padding: 140px 0 48px; background: var(--bg); }
.contact-hero h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
.contact-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  padding: 64px 0;
  align-items: start;
}
@media (max-width: 1024px) { .contact-content { grid-template-columns: 1fr; gap: 3rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.form-group .required { color: #ef4444; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--inter);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,240,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.success-message {
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  display: none;
}
.success-message.show { display: block; animation: fadeIn 0.3s ease; }
.success-icon {
  width: 48px; height: 48px;
  background: #22c55e;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.success-message h3 { color: #166534; margin-bottom: 0.4rem; }
.success-message p  { color: #166534; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-sidebar > p { font-size: 0.9rem; color: var(--muted); }
.contact-status {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.status-badge {
  width: 11px; height: 11px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  animation: pulse 2s infinite;
}
.status-content h4 { font-weight: 600; font-size: 0.875rem; color: var(--dark); margin-bottom: 2px; }
.status-content p  { font-size: 0.8rem; color: var(--muted); margin: 0; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-item-icon {
  width: 38px; height: 38px;
  background: var(--card-bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-content h4 { font-size: 0.825rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.contact-item-content a { color: var(--cyan); font-size: 0.85rem; transition: opacity 0.2s; }
.contact-item-content a:hover { opacity: 0.7; }

/* =============================================
   DIVIDER (about hero)
   ============================================= */
.divider {
  width: 56px; height: 3px;
  background: var(--cyan);
  margin: 1.5rem 0;
  border-radius: 2px;
}