/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #13151f;
  --bg2:       #1a1d2a;
  --bg3:       #1f2235;
  --orange:    #f07820;
  --orange2:   #ff9640;
  --white:     #ffffff;
  --muted:     #8b91a8;
  --border:    rgba(240,120,32,0.18);
  --card-bg:   rgba(255,255,255,0.03);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(19,21,31,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 132px;
  width: 132px;
  object-fit: contain;
  border-radius: 0;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-brand span { color: var(--orange); }

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange2) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240,120,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 480px;
  height: 480px;
  object-fit: contain;
  margin-bottom: 8px;
  animation: floatLogo 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.hero h1 .orange { color: var(--orange); }

.hero-tag {
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--orange);
  opacity: 0.6;
}

.hero-sub {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--bg);
  padding: 15px 36px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(240,120,32,0.35);
}
.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(240,120,32,0.5);
}

.btn-secondary {
  border: 2px solid var(--border);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint svg { opacity: 0.5; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ── */
.stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 5%;
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 96px);
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── PROJECTS ── */
.project-preview {
  padding: 140px 20px 80px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.project-preview h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.project-preview p {
  font-size: 1.1rem;
  opacity: .8;
  line-height: 1.7;
}

.project-grid {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 40px;
}

.project-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  overflow: hidden;
  transition: .3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Vestiga card — expand on hover to reveal full portrait image */
#vestiga-card .project-image {
  object-fit: contain;
  background: #111;
  transition: height 0.4s ease;
}

#vestiga-card:hover .project-image {
  height: 500px;
}

.project-content {
  padding: 30px;
}

.project-status {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.project-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.project-subtitle {
  color: #ff7a00;
  font-weight: 600;
  margin-bottom: 20px;
}

.project-description {
  line-height: 1.8;
  opacity: .9;
  margin-bottom: 25px;
}


.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.tech-stack span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
}

.project-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.project-links a {
  text-decoration: none;
}

.btn-project {
  background: #ff7a00;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-secondary-project {
  border: 1px solid #ff7a00;
  color: #ff7a00;
  padding: 12px 20px;
  border-radius: 10px;
}

.tech-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.tech-grid span {
  padding: 12px 18px;
  background: #111;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.github-cta {
  text-align: center;
  padding: 80px 20px;
}

.github-cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}

.project-btn {
  margin-top: 40px;
  text-align: center;
}

.project-btn .btn-primary {
  position: static;
  display: inline-block;
}

.project-preview {
  text-align: center;
  padding: 100px 20px;
}

.project-mini-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
}

.project-mini-card {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.project-btn {
  margin-top: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.project-preview-card:hover {
  transform: translateY(-6px);
  border-color: #ffb547;
}

.project-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.project-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.project-image {
  width: 100%;
  height: 220px;
  /* pick whatever height feels right */
  object-fit: cover;
  object-position: center;
  /* you can tweak this per-image if needed */
  display: block;
}



/* ── SECTION SHARED ── */
section {
  padding: 100px 5%;
  position: relative;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}
.section-title span { color: var(--orange); }

.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ── SERVICES ── */
#services { background: var(--bg); }

.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header .section-sub { margin: 16px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--bg2);
  padding: 40px 36px;
  position: relative;
  transition: background 0.25s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

.service-card:hover { background: var(--bg3); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(240,120,32,0.1);
  border: 1px solid rgba(240,120,32,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  transition: background 0.25s, border-color 0.25s;
}
.service-card:hover .service-icon {
  background: rgba(240,120,32,0.2);
  border-color: rgba(240,120,32,0.5);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
  filter: saturate(0.7) brightness(0.85);
  transition: filter 0.3s;
}
.service-card:hover .service-img { filter: saturate(0.9) brightness(0.95); }

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── WHY US ── */
#why {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-num {
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(240,120,32,0.08);
  border: 1px solid rgba(240,120,32,0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-top: 2px;
}

.why-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.why-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-visual { position: relative; }

.why-visual-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-visual-box::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,120,32,0.15) 0%, transparent 70%);
}

.why-big-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.why-big-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 8px;
}
.why-divider {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin: 24px auto;
}

/* ── PROCESS ── */
#process { background: var(--bg); }

.process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-header .section-sub { margin: 16px auto 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(240,120,32,0.2));
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(240,120,32,0.2);
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 16px;
}

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  background: rgba(240,120,32,0.1);
  border: 1px solid rgba(240,120,32,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: inherit;
  text-decoration: none;
}

.contact-row-text { font-size: 0.9rem; }

.contact-row-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 16px;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

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

.form-group select option { background: var(--bg3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  margin-top: 8px;
  background: var(--orange);
  color: var(--bg);
  border: none;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(240,120,32,0.3);
}
.form-submit:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(240,120,32,0.45);
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-brand span { color: var(--orange); }

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

/* ── FOOTER SOCIAL LINKS ── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-social a,
.footer-social a:link,
.footer-social a:visited,
.footer-social a:hover,
.footer-social a:active {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 1 !important; }
.footer-social a svg { flex-shrink: 0; }

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 149;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
}

/* ── SIDE DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.4);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer ul li a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.nav-drawer ul li a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.nav-drawer ul li:last-child a {
  border-bottom: none;
}

.nav-drawer .drawer-cta {
  margin-top: 32px;
}

.nav-drawer .drawer-cta a {
  display: block;
  background: var(--orange);
  color: var(--bg) !important;
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: none !important;
}
.nav-drawer .drawer-cta a:hover {
  background: var(--orange2);
  padding-left: 0 !important;
}

.nav-drawer-brand {
  margin-top: auto;
  padding-top: 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.nav-drawer-brand span { color: var(--orange); }

@media (max-width: 900px) {
  nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .nav-overlay { display: block; }
  .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .offer-banner {
    font-size: 0.78rem;
    padding: 10px 4%;
    gap: 8px;
  }
  .offer-banner-label { display: none; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats { gap: 32px; }
}

/* ── PRICING ── */
#pricing {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-header .section-sub { margin: 16px auto 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.pricing-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.pricing-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 14px;
}

.pricing-price span {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0;
  margin-top: 2px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-disclaimer {
  margin-top: 48px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(240,120,32,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-disclaimer strong { color: var(--white); }

/* ── ABOUT ── */
#about {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.about-para {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
}

.about-para strong {
  color: var(--white);
  font-weight: 600;
}

.about-conditions {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-condition {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 20px 24px;
}

.about-condition-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 8px;
}

.about-condition p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-condition a {
  color: var(--orange);
  text-decoration: none;
}
.about-condition a:hover {
  text-decoration: underline;
}

/* About sidebar */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.about-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
  transition: border-color 0.25s;
}

.about-card:hover {
  border-color: var(--orange);
}

.about-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.about-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.about-card-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.about-card-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-sidebar {
    position: static;
  }
}

/* ── COMING SOON BADGE ── */
.coming-soon-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--bg);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

/* ── FORM VALIDATION ── */
.field-error {
  color: #e74c3c;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.input-error {
  border-color: #e74c3c !important;
}

.input-error:focus {
  border-color: #e74c3c !important;
}

/* ── WHATSAPP ROW LINK FIX ── */
.contact-row a,
.contact-details a {
  color: var(--white) !important;
  text-decoration: none !important;
}

.contact-row a .contact-row-label {
  color: var(--muted) !important;
}



