/* =============================================================
   PUNTODEV — main.css
   Sections:
   01. Custom Properties
   02. CSS Reset & Base
   03. Layout Utilities
   04. Navigation
   05. Hero
   06. Services
   07. Pricing / Packages
   08. Tech Stack
   09. Process / Methodology
   10. Portfolio
   11. FAQ
   12. Contact
   13. Footer
   14. Scroll Reveal Animations
   15. Responsive
   ============================================================= */

/* ── 01. CUSTOM PROPERTIES ── */
:root {
  --bg:           #000000;
  --bg-alt:       #080600;
  --surface:      rgba(255, 255, 255, 0.04);
  --accent:       #FFB800;
  --accent-dim:   rgba(255, 184, 0, 0.10);
  --accent-glow:  0 0 24px rgba(255, 184, 0, 0.40);
  --text:         #FFFFFF;
  --muted:        #888888;
  --muted-dark:   #444444;
  --border:       rgba(255, 184, 0, 0.12);
  --border-hover: rgba(255, 184, 0, 0.40);
  --radius:       24px;
  --max-width:    1200px;
}

/* ── 02. CSS RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

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

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; font: inherit; }

/* ── 03. LAYOUT UTILITIES ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

.section-alt { background: var(--bg-alt); }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.20), transparent);
}

/* Section label (small eyebrow text) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.50;
}

/* Headings */
h1 { font-size: clamp(3rem, 5.5vw, 5.8rem); line-height: 1.00; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.10; letter-spacing: -0.03em; }
h3 { font-size: 1.20rem; font-weight: 700; }

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: #FFC933;
  transform: translateY(-2px);
  box-shadow: var(--accent-glow);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Base card */
.card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 184, 0, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.50), var(--accent-glow);
}

.card:hover::before { opacity: 1; }

/* Tags */
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }

.tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid rgba(255, 184, 0, 0.20);
  color: var(--accent);
  background: rgba(255, 184, 0, 0.05);
}

/* Particle canvas & cursor glow */
#cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left 0.1s ease, top 0.1s ease;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── 04. NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 184, 0, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.87rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.87rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #000;
  box-shadow: var(--accent-glow);
}

/* ── 05. HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.10) 0%, rgba(255, 140, 0, 0.05) 30%, transparent 70%);
  filter: blur(60px);
  top: -300px;
  right: -200px;
  animation: orb-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.15) translateY(-20px); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.20);
  color: var(--accent);
  font-size: 0.80rem;
  font-weight: 600;
  margin-bottom: 32px;
}

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero h1 { margin-bottom: 28px; }

.hero-description {
  font-size: 1.05rem;
  color: #aaaaaa;
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 44px;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat strong span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span { font-size: 0.80rem; color: var(--muted); }

/* Terminal widget */
.terminal {
  background: #0c0c0c;
  border: 1px solid rgba(255, 184, 0, 0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.70), var(--accent-glow);
}

.terminal-bar {
  padding: 14px 20px;
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.term-dot { width: 12px; height: 12px; border-radius: 50%; }
.term-dot:nth-child(1) { background: #ff5f57; }
.term-dot:nth-child(2) { background: #ffbd2e; }
.term-dot:nth-child(3) { background: #28ca41; }

.terminal-label {
  margin-left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: #555555;
}

.terminal-output {
  padding: 28px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  line-height: 2.0;
  min-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
}

.terminal-output::-webkit-scrollbar { display: none; }

/* Floating info badges */
.hero-badge {
  position: absolute;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.50);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--accent);
}

.badge--top-right { top: -18px; right: -18px; animation: float 4s ease-in-out infinite; }
.badge--bot-left  { bottom: 24px; left: -24px; animation: float 4s ease-in-out infinite 1.8s; }

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

/* ── 06. SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 184, 0, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 22px;
}

.service-card h3 { margin-bottom: 12px; }

.service-card p {
  color: #888888;
  line-height: 1.70;
  font-size: 0.93rem;
  margin-bottom: 18px;
}

/* ── 07. PRICING / PACKAGES ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  align-items: start;
}

.pricing-card {
  padding: 36px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.40);
}

.pricing-card--popular {
  background: rgba(255, 184, 0, 0.06);
  border-color: rgba(255, 184, 0, 0.40);
  box-shadow: 0 0 40px rgba(255, 184, 0, 0.10);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-size: 0.71rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-amount {
  margin-bottom: 10px;
}

.pricing-amount .currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  vertical-align: super;
}

.pricing-amount .value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 4px;
}

.pricing-description {
  font-size: 0.84rem;
  color: #666666;
  margin-bottom: 28px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  color: #aaaaaa;
}

.pricing-features .fa-check { color: var(--accent); width: 16px; flex-shrink: 0; }
.pricing-features .fa-xmark { color: #333333; width: 16px; flex-shrink: 0; }
.pricing-features li.excluded { color: #444444; }

.pricing-cta {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
  color: var(--text);
  font-size: 0.90rem;
  font-weight: 700;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  cursor: pointer;
}

.pricing-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-card--popular .pricing-cta {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.pricing-card--popular .pricing-cta:hover { background: #FFC933; }

/* ── 08. TECH STACK ── */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 60px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 108px;
  padding: 22px 10px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px) scale(1.05);
  border-color: var(--card-color, rgba(255, 184, 0, 0.40));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45),
              0 0 28px var(--card-shadow, rgba(255, 184, 0, 0.20));
}

.tech-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tech-card i {
  font-size: 44px;
  line-height: 48px;
  text-align: center;
  display: block;
}

.tech-card span {
  font-size: 0.71rem;
  font-weight: 600;
  color: #777777;
  text-align: center;
  line-height: 1.3;
}

/* ── 09. PROCESS / METHODOLOGY ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 39px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 184, 0, 0.10));
}

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

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  background: var(--accent-dim);
  border-color: var(--accent);
  box-shadow: var(--accent-glow);
}

.process-step h3 { margin-bottom: 12px; font-size: 1.05rem; }
.process-step p  { font-size: 0.88rem; color: #666666; line-height: 1.75; }

/* ── 10. PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.4s ease;
}

.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.50), var(--accent-glow);
}

.portfolio-thumbnail {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: #0d0a00;
}

.portfolio-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}

.portfolio-card:hover .portfolio-thumbnail img {
  transform: scale(1.04);
  opacity: 1;
}

.portfolio-info { padding: 24px; }
.portfolio-info h3 { margin-bottom: 8px; }

.portfolio-info p {
  font-size: 0.87rem;
  color: #777777;
  line-height: 1.65;
  margin-bottom: 16px;
}

.portfolio-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 184, 0, 0.07);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── 11. FAQ ── */
.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.is-open { border-color: rgba(255, 184, 0, 0.28); }

.faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.3s ease;
  gap: 20px;
  user-select: none;
  /* reset button defaults */
  width: 100%;
  background: transparent;
  color: inherit;
  text-align: left;
}

.faq-item.is-open .faq-question { color: var(--accent); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  line-height: 1;
  transition: all 0.35s ease;
}

.faq-item.is-open .faq-toggle {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: #888888;
  line-height: 1.75;
  font-size: 0.92rem;
}

.faq-item.is-open .faq-answer { max-height: 320px; }

/* ── 12. CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}

.contact-details { padding: 36px; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 184, 0, 0.14);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  color: #888888;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-text a,
.contact-text span { color: var(--text); font-weight: 600; font-size: 0.97rem; }

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* Contact form */
.contact-form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.80rem;
  font-weight: 700;
  color: #888888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 184, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.08);
}

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

/* ── Custom Select Dropdown ── */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-select:focus .custom-select__trigger,
.custom-select.is-open .custom-select__trigger {
  border-color: var(--accent);
  background: rgba(255, 184, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.08);
  outline: none;
}

.custom-select__value { color: #555555; }
.custom-select__value.has-value { color: var(--text); }

.custom-select__arrow {
  color: #555555;
  font-size: 0.75rem;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #111111;
  border: 1px solid rgba(255, 184, 0, 0.18);
  border-radius: 14px;
  list-style: none;
  padding: 8px;
  margin: 0;
  z-index: 200;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 184, 0, 0.06);
}

.custom-select.is-open .custom-select__options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.custom-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #888888;
  transition: background 0.18s ease, color 0.18s ease;
}

.custom-select__option:hover {
  background: rgba(255, 184, 0, 0.07);
  color: var(--text);
}

.custom-select__option.is-selected {
  color: var(--accent);
  background: rgba(255, 184, 0, 0.06);
}

.cs-opt-name { font-weight: 600; }

.cs-opt-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
  white-space: nowrap;
}

.custom-select__option.is-selected .cs-opt-price { opacity: 1; }
.custom-select__option:hover .cs-opt-price { opacity: 1; }

/* Honeypot: invisible to humans */
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #FFC933;
  transform: translateY(-2px);
  box-shadow: var(--accent-glow);
}

/* ── 13. FOOTER ── */
.footer {
  padding: 36px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer small { color: var(--muted-dark); font-size: 0.84rem; }

/* ── 14. SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }
.reveal.delay-3 { transition-delay: 0.30s; }
.reveal.delay-4 { transition-delay: 0.40s; }

/* ── 15. RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-connector { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  h1 { font-size: 2.8rem; }
  .section { padding: 80px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-details { padding: 0; }
  .contact-form { padding: 28px; }
  .tech-card { width: 88px; padding: 16px 6px 12px; }
  .tech-card i { font-size: 36px; line-height: 40px; }
  .tech-card img { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
