:root {
  --bg: #060912;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-hover: rgba(20, 30, 55, 0.88);
  --border: rgba(148, 163, 184, 0.12);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --primary: #06b6d4;
  --primary-light: #22d3ee;
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --success: #34d399;
  --gradient: linear-gradient(135deg, #06b6d4 0%, #6366f1 50%, #8b5cf6 100%);
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: rgba(6, 182, 212, 0.15);
}

.bg-glow-2 {
  width: 500px; height: 500px;
  bottom: 10%; left: -150px;
  background: rgba(99, 102, 241, 0.12);
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: rgba(6, 9, 18, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-frame {
  display: inline-flex;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.55) 0%,
    rgba(99, 102, 241, 0.45) 50%,
    rgba(139, 92, 246, 0.4) 100%
  );
  box-shadow:
    0 0 20px rgba(6, 182, 212, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.logo:hover .logo-frame {
  box-shadow:
    0 0 28px rgba(6, 182, 212, 0.22),
    0 6px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.logo-img {
  height: 46px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
  padding: 6px 14px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 10px;
  border: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer .logo-frame {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.35) 0%,
    rgba(99, 102, 241, 0.3) 100%
  );
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.08);
}

.footer .logo-img {
  height: 42px;
  padding: 5px 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.925rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

.btn-nav {
  padding: 0.55rem 1.15rem !important;
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: var(--radius-sm);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 999px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.pulse {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat span {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.terminal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.terminal-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 1.25rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.825rem;
  line-height: 1.8;
}

.prompt { color: var(--primary-light); }
.ok { color: var(--success); }
.info { color: var(--text-muted); }
.blink { animation: blink 1s step-end infinite; color: var(--primary); }

@keyframes blink { 50% { opacity: 0; } }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.floating-card svg { width: 18px; height: 18px; color: var(--primary-light); }
.card-1 { top: -20px; right: -10px; animation-delay: 0s; }
.card-2 { bottom: 30px; left: -30px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */
section { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Services */
.services { padding: 6rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  backdrop-filter: blur(12px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.3);
  background: var(--bg-card-hover);
}

.service-card.featured {
  border-color: rgba(6, 182, 212, 0.35);
  background: linear-gradient(160deg, rgba(6, 182, 212, 0.08) 0%, var(--bg-card) 60%);
}

.service-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: rgba(6, 182, 212, 0.12);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.service-icon svg { width: 28px; height: 28px; color: var(--primary-light); }

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
}

.service-card ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Solutions */
.solutions {
  padding: 6rem 0;
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solutions-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.solutions-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.solutions-content > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.solution-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.solution-num {
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-light);
  flex-shrink: 0;
  padding-top: 2px;
}

.solution-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.solution-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tech-stack {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.tech-stack h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tech-tags span {
  padding: 0.4rem 0.85rem;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5b4fc;
}

.metrics-panel { display: flex; flex-direction: column; gap: 1.25rem; }

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: center;
}

.metric span { font-size: 0.825rem; color: var(--text-muted); grid-column: 1; }
.metric strong { font-size: 1rem; color: var(--primary-light); grid-column: 2; grid-row: 1 / 3; }

.metric-bar {
  grid-column: 1;
  height: 6px;
  background: rgba(148, 163, 184, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 999px;
  animation: growBar 1.5s ease-out forwards;
}

@keyframes growBar {
  from { width: 0 !important; }
}

/* About */
.about { padding: 6rem 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.025rem;
}

.about-card strong { color: var(--text); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: border-color 0.3s;
}

.feature:hover { border-color: rgba(6, 182, 212, 0.3); }

.feature-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

.feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature p { font-size: 0.825rem; color: var(--text-muted); }

/* Founder */
.founder {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem 4rem;
  align-items: start;
}

.founder-photo-wrap {
  flex-shrink: 0;
  padding-top: 0.25rem;
  text-align: center;
}

.founder-name {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.founder-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(6, 182, 212, 0.45);
  box-shadow:
    0 0 0 4px rgba(6, 182, 212, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.founder-message {
  padding-right: 0.5rem;
}

.founder-message .section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.founder-message h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-align: left;
}

.founder-message p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.15rem;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.founder-message strong {
  color: var(--text);
}

.founder-sign {
  margin-top: 1.75rem !important;
  margin-bottom: 0 !important;
  font-size: 1rem !important;
  font-weight: 700;
  font-style: italic;
  color: var(--primary-light) !important;
  letter-spacing: 0.02em;
  text-align: right;
}

/* Clients */
.clients {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-banner {
  background: transparent;
  padding: 0.5rem 0;
  overflow: hidden;
}

.clients-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(99, 102, 241, 0.12) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner { text-align: center; }

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact */
.contact { padding: 6rem 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary-light); }
.contact-link:hover { border-color: var(--primary); color: var(--primary-light); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.925rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-note.success { color: var(--success); }
.form-note.error { color: #f87171; }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p { font-size: 0.825rem; color: var(--text-muted); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive — tablet (1024px) */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; z-index: 1001; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6, 9, 18, 0.98);
    backdrop-filter: blur(16px);
    padding: 0.75rem 1rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.9rem 0.5rem;
    min-height: 44px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    margin-top: 0.5rem;
    padding-top: 0.25rem;
  }

  .nav-links li:last-child a {
    border-bottom: none;
    text-align: center;
  }

  .hero-inner,
  .solutions-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }

  .founder-message {
    width: 100%;
    padding-right: 0;
  }

  .services-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .floating-card { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Responsive — mobile (768px) */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { width: min(1140px, 94%); }

  .logo-img {
    height: 40px;
    max-width: 170px;
    padding: 5px 10px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 2rem) 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .hero-sub {
    font-size: 1rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .hero-actions .btn { width: 100%; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
  }

  .terminal-body {
    padding: 1rem;
    font-size: 0.75rem;
    overflow-x: auto;
  }

  .services,
  .solutions,
  .about,
  .founder,
  .clients,
  .contact,
  .cta-band {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header p {
    font-size: 0.975rem;
  }

  .service-card,
  .contact-form,
  .tech-stack {
    padding: 1.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: 180px;
    height: 180px;
  }

  .founder-name {
    font-size: 0.9rem;
  }

  .founder-message h2 {
    text-align: center;
  }

  .founder-message p {
    text-align: left;
    text-justify: auto;
    hyphens: none;
    font-size: 0.95rem;
  }

  .founder-sign {
    text-align: left;
  }

  .clients-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .contact-link {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Responsive — small phones (480px) */
@media (max-width: 480px) {
  .container { width: min(1140px, 96%); }

  .logo-img {
    height: 36px;
    max-width: 145px;
    padding: 4px 8px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat strong { font-size: 1.25rem; }

  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 0.925rem;
  }

  .founder-photo {
    width: 150px;
    height: 150px;
  }

  .founder-message .section-tag,
  .founder-message h2 {
    text-align: center;
  }
}
