/* ─── Variables ─────────────────────────────────── */
:root {
  --bg:       #060e1f;
  --bg-2:     #080f1e;
  --bg-card:  rgba(255,255,255,0.03);
  --accent:   #4a9eff;
  --navy:     #1e4d8c;
  --text:     #ffffff;
  --muted:    rgba(255,255,255,0.45);
  --border:   rgba(255,255,255,0.07);
  --glow:     rgba(74,158,255,0.14);
}

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Animations ────────────────────────────────── */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(80px, -60px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-60px, 80px); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(40px, 40px); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes borderRotate {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ─── Gradient text ─────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #4a9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ─── Scroll animations ─────────────────────────── */
.animate-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-fade.visible { will-change: auto; }

/* ─── Navbar ────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6, 14, 31, 0.85);
  border-color: var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #60a5fa;
  text-decoration: none;
  letter-spacing: -0.04em;
}
.logo span {
  font-size: 0.62rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 9px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0 auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-sep { color: var(--border); font-size: 0.8rem; }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 6px;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.lang-btn.active { color: var(--accent); }
.lang-btn:hover  { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #fff;
}

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-glow {
  background: linear-gradient(135deg, var(--accent), var(--navy));
  color: #fff;
  box-shadow: 0 0 24px rgba(0,212,255,0.3), 0 4px 16px rgba(0,0,0,0.3);
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(0,212,255,0.5), 0 8px 24px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,77,140,0.15) 0%, transparent 70%);
  bottom: -200px; left: -100px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
}

/* Skip painting below-the-fold sections until scrolled near (big scroll-paint win). */
#portfolio, #services, #faq, #contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-chevron {
  color: rgba(255,255,255,0.25);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(6px); opacity: 0.5; }
}
/* ─── Ticker ────────────────────────────────────── */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
}

.ticker-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 20px;
  vertical-align: middle;
  opacity: 0.6;
}

/* ─── Value Strip ───────────────────────────────── */
.value-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.value-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.value-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 40px;
  max-width: 360px;
}

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(74,158,255,0.25));
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.value-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Sections ──────────────────────────────────── */
.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 64px;
}

.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center;
}

.section-label {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: inherit;
  text-align: center;
  line-height: 1.1;
}

.section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* ─── Portfolio Cards ───────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1);
}

.card-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover .card-glow { opacity: 1; }

.card-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 5px;
}
.bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.bdot.red    { background: #ff5f57; }
.bdot.yellow { background: #febc2e; }
.bdot.green  { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--muted);
  font-family: monospace;
  margin-left: 8px;
}

.card-preview {
  height: 215px;
  position: relative;
  background-color: #0a1424;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(8,14,28,0.5) 76%, rgba(8,14,28,0.92) 100%);
  pointer-events: none;
}

.card-initial {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.15);
}

.card-preview--bakery  { background-image: url('../assets/screenshots/pekara.jpg'); }
.card-preview--sports  { background-image: url('../assets/screenshots/el3ven.jpg'); }
.card-preview--finance { background-image: url('../assets/screenshots/vzb.jpg'); }
.card-preview--study   { background-image: url('../assets/screenshots/studybuddy.jpg?v=2'); }

.card-body {
  padding: 20px 24px 28px;
}

.card-meta {
  margin-bottom: 10px;
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: monospace;
}

.card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.card-wip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.card-wip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #febc2e;
  box-shadow: 0 0 8px rgba(254,188,46,0.5);
}

.card-link:hover {
  color: #fff;
  gap: 8px;
}

/* ─── Services & Pricing ────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.features {
  list-style: none;
  display: grid;
  gap: 20px;
}

.features li {
  padding-left: 24px;
  position: relative;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(74,158,255,0.05));
  pointer-events: none;
}

.pricing-card-glow {
  position: absolute;
  top: -1px; left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--navy), transparent);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-family: monospace;
}

.pricing-amount-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-from {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 20px;
  margin-right: 4px;
}

.pricing-currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 12px;
}

.pricing-amount {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-monthly-amount {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.pricing-monthly-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-includes {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0.6;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent), var(--navy));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,212,255,0.25);
}

.pricing-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.4);
}

/* ─── FAQ ───────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  line-height: 1.4;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-q:hover { color: rgba(255,255,255,0.9); }
.faq-q:hover::after { color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 240px;
}

.faq-a p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ─── Contact ───────────────────────────────────── */
#contact { padding-top: 80px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--accent); }

.contact-link-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  color: var(--accent);
  padding: 10px;
}

.contact-link-icon svg {
  width: 100%;
  height: 100%;
}

.contact-link:hover .contact-link-icon {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { position: relative; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
  background: rgba(0,212,255,0.03);
}

.contact-form textarea { resize: vertical; }

.form-privacy {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.form-success {
  background: rgba(40, 200, 64, 0.08);
  border: 1px solid rgba(40, 200, 64, 0.35);
  color: #6ee787;
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ─── Footer ────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

.footer-email {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--accent); }

.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #60a5fa;
}
.footer-logo span { color: var(--accent); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .orb-1, .orb-2, .orb-3 { animation: none; }
  .ticker-track { animation: none; }
  .badge-dot { animation: none; }
  .scroll-chevron { animation: none; }
  .animate-fade { transition: none; }
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(4,6,15,0.97);
    padding: 28px 24px;
    border-top: 1px solid var(--border);
    gap: 24px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); max-width: 100%; overflow-wrap: break-word; }
  .hero p { font-size: 1rem; max-width: 100%; overflow-wrap: break-word; }
  .hero { display: block; }
  .hero-inner { width: 100%; max-width: 100%; min-width: 0; padding: 130px 20px 80px; }
  .navbar-inner { max-width: 100%; min-width: 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; }

  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3 { display: none; }

  .value-strip-inner { flex-direction: column; gap: 32px; }
  .value-item { padding: 0; width: 300px; max-width: 100%; }
  .value-divider { width: 60px; height: 1px; }

  .cards { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; gap: 48px; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 16px; }

  .section { padding: 80px 0; }
  #contact { padding-top: 60px; }
}
