*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #0f172a;
  --darker: #0a1120;
  --light: #f8fafc;
  --gold: #d4a853;
  --gold-dim: rgba(212, 168, 83, 0.15);
  --text-light: #e2e8f0;
  --text-dark: #1e293b;
  --text-muted: #94a3b8;
  --blue: #3b82f6;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--dark);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* --- LABEL --- */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 60px;
  letter-spacing: -1.5px;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -1px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

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

.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 4px;
  color: var(--gold) !important;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

.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-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
  animation: heroGlow 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-name {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-tagline {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 48px;
  line-height: 1.3;
  min-height: 1.3em;
}

.hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--gold);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  margin-bottom: 24px;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.hero-available {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- SECTIONS --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-light {
  background: var(--light);
  color: var(--text-dark);
}

.grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

/* --- SERVICES --- */
.services-intro {
  max-width: 900px;
  margin-bottom: 48px;
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
}

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

.service-card {
  position: relative;
  padding: 48px 40px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  line-height: 1;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-card p {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
}

.card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
}

.achievement-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}

.achievement-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* --- STEPS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.step-number {
  display: block;
  font-size: 64px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.06);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step p {
  color: #64748b;
  font-size: 15px;
}

.quote {
  border-left: 3px solid var(--gold);
  padding: 32px 40px;
  background: var(--gold-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote p {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}

/* --- TECH --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.tech-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-light);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- FAQ --- */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  transition: border-color 0.3s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 28px;
}

.faq-answer p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* --- CONTACT --- */
.section-contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #131c31 100%);
  color: var(--text-light);
  position: relative;
}

.contact-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 64px;
  line-height: 1.7;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

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

.btn-gold {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}

.contact-details {
  padding-top: 8px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
  font-size: 17px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* --- FOOTER --- */
.footer {
  background: var(--darker);
  padding: 48px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-sub {
  margin-top: 4px;
  margin-bottom: 8px;
  color: #475569;
}

.footer-location {
  margin-top: 8px;
  margin-bottom: 20px;
  color: #475569;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-links a {
  color: #475569;
  transition: color 0.2s;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold);
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- MOBILE --- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .tech-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 40px; }
}

@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .tech-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
}

/* --- PRINT --- */
@media print {
  .nav, .hero-grain, .grain-overlay, .hero::before { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .section { padding: 40px 0; }
  .section-dark, .section-contact { background: white; color: black; }
  .section-dark .section-heading,
  .section-contact .section-heading { color: black; }
  .stat-number { color: #333; }
  .tag { border: 1px solid #ccc; background: transparent; }
  body { font-size: 12pt; }
  .faq-item.active .faq-answer { max-height: none; opacity: 1; }
}
