@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --charcoal: #080c16;
  --slate: #121a2d;
  --navy: #16233e;
  --blue: #0a5adf;
  --cyan: #1ad6ff;
  --accent: #f05a4f;
  --cta: #ff6a1c;
  --paper: #f4f6fb;
  --text: #d5deff;
  --muted: #8591b8;
  --card: #10172a;
  --purple: #4b0b75;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: #1a2138;
  line-height: 1.6;
}

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

img { max-width: 100%; display: block; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.utility-bar {
  background: var(--charcoal);
  color: var(--muted);
  font-size: 0.8rem;
}

.utility-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-shell span { display: flex; gap: 1rem; align-items: center; }

nav {
  background: var(--slate);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-image {
  width: 76px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

.brand-copy h1 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.brand-copy span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-weight: 500;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.hero-wrapper {
  background: radial-gradient(circle at top, #1c305a, #0a1426);
  padding: 3rem 1.5rem 4rem;
  color: white;
}

.slider-shell {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 30px 70px rgba(3,6,25,0.6);
}

.slider-ribbon {
  position: absolute;
  top: -14px;
  left: 32px;
  background: linear-gradient(120deg, #f02c6e, #ff9a44);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.slider-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.slider-image {
  background: linear-gradient(140deg, #1745a3, #24a7ff);
  border-radius: 24px;
  padding: 2rem;
  min-height: 260px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
}

.slider-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}

.slider-copy p { color: rgba(255,255,255,0.8); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary { background: var(--cta); color: white; }
.btn-secondary { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); background: transparent; }

.slider-bullets {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.4rem;
}

.slider-bullets span {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.slider-bullets span.active { background: var(--cyan); }

.cta-band {
  background: var(--charcoal);
  padding: 1.5rem;
  text-align: center;
}

.latest-works {
  background: #0d0f18;
  color: white;
  padding: 2.5rem 1.5rem 3.5rem;
}

.latest-shell { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.work-card {
  border-radius: 18px;
  overflow: hidden;
  background: #1b2135;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.work-card img { width: 100%; height: 140px; object-fit: cover; }

.work-card span {
  display: block;
  padding: 0.8rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.info-panels {
  background: white;
  padding: 4rem 1.5rem;
}

.info-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: white;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(8,12,22,0.08);
  box-shadow: 0 15px 40px rgba(10,20,40,0.08);
}

.info-card h4 { margin-top: 0; }

.contact {
  background: #091024;
  color: white;
  padding: 3rem 1.5rem;
}

.contact-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
}

footer {
  background: linear-gradient(135deg, #4b0b75, #1d032f);
  color: rgba(255,255,255,0.8);
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.footer-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

.footer-nav { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.section { padding: 3rem 1.5rem; background: white; }
.section-shell { max-width: 1100px; margin: 0 auto; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.card { background: #fff; border-radius: 18px; padding: 1.5rem; border: 1px solid rgba(8,12,22,0.08); box-shadow: 0 15px 35px rgba(10,20,40,0.08); }
.badge-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge { background: rgba(10,90,223,0.1); color: #0a5adf; padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.85rem; }
.split-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; align-items: center; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: inline-flex; }
}

.hero {
  background: linear-gradient(135deg,#182447,#0b1327);
  color: white;
  padding: 3rem 1.5rem;
}
.hero h2 {
  margin: 0;
}
.hero p {
  color: rgba(255,255,255,0.75);
}

.offers-hero {
  background: linear-gradient(135deg,#192747,#050812);
  color: white;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 2rem;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,0.75);
}
.hero-points li { margin-bottom: 0.4rem; }
.offer-card {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.offer-card ul { padding-left: 1.2rem; }
.price-display {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}
.price-display .price {
  font-size: 2.4rem;
  font-weight: 700;
}
.price-display .note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.packages {
  background: #0d0f18;
  color: white;
  padding: 3rem 1.5rem;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem;
}
.package {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1.5rem;
}
.package .price {
  font-size: 1.8rem;
  margin: 0.3rem 0 1rem;
}
.timeline {
  background: #03050b;
  color: white;
  padding: 3rem 1.5rem;
}
.timeline ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.timeline .step {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
}
.faq {
  background: white;
  padding: 3rem 1.5rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem;
}
.faq-grid article {
  background: #f4f6fb;
  border-radius: 16px;
  padding: 1.5rem;
}
