/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #020617;
  --bg-soft: #07101d;
  --text: #e5e7eb;
  --text-muted: #b6c0cf;
  --text-soft: #94a3b8;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.06);
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --max-width: 1160px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
.hero-tag,
.section-label,
.pricing-tag,
.showcase-label {
  font-family: "Space Grotesk", sans-serif;
}

.container {
  width: min(var(--max-width), 90%);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-alt {
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.05), transparent 20%),
    linear-gradient(180deg, #06101d, #07121f);
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading.center {
  text-align: center;
}

.section-label,
.pricing-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-heading p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--text-muted);
}

/* =========================
   NAVBAR
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  border-bottom: 1px solid rgba(251, 191, 36, 0.14);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 88px;
  gap: 24px;
  position: relative;
  transition: min-height 0.3s ease;
}

.site-header.scrolled .nav {
  min-height: 74px;
}

/* PREMIUM TEXT LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.logo a:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 191, 36, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fff8e1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.logo-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.logo-text-wrap {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.logo-main {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.nav-links a {
  color: #f8fafc;
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

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

/* SOCIAL */
.header-social,
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-social:hover,
.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
}

.header-social svg,
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  transition: fill 0.25s ease;
}

.header-social:hover svg,
.footer-social:hover svg {
  fill: var(--accent);
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 191, 36, 0.26);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 50px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
  padding: 178px 0 118px;
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 191, 36, 0.12), transparent 22%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #020617 0%, #06101f 55%, #08111d 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 780px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 620px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.proof-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.proof-item span {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.hero-showcase {
  display: flex;
  justify-content: center;
}

.showcase-window {
  width: 100%;
  max-width: 460px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.97), rgba(9, 17, 31, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
}

.window-top span:nth-child(3) {
  background-color: rgba(251, 191, 36, 0.7);
}

.showcase-body {
  padding: 30px;
}

.showcase-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.showcase-body h3 {
  font-size: 1.95rem;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 14px;
}

.showcase-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.showcase-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
}

.stat-box strong {
  display: block;
  color: #ffffff;
  margin-bottom: 6px;
}

.stat-box span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #020617;
  box-shadow: 0 16px 32px rgba(251, 191, 36, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(251, 191, 36, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(251, 191, 36, 0.45);
  color: var(--accent);
  transform: translateY(-2px);
}

.text-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 700;
}

/* =========================
   ABOUT
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.about-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.about-box h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.about-box li {
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.about-box li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  position: absolute;
  left: 0;
  top: 11px;
}

/* =========================
   GRIDS / CARDS
========================= */
.card-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.project-card,
.testimonial-card,
.contact-card,
.pricing-card,
.calendly-wrapper,
.cta-box,
.offer-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.card,
.testimonial-card,
.contact-card,
.pricing-card,
.calendly-wrapper,
.offer-box {
  padding: 30px;
}

.card h3,
.project-content h3,
.contact-card h3,
.testimonial-card h4,
.pricing-card h3,
.offer-box h2 {
  color: #ffffff;
  margin-bottom: 12px;
}

.card p,
.project-content p,
.contact-card p,
.testimonial-text,
.pricing-text,
.calendly-text,
.offer-box p {
  color: var(--text-muted);
}

.card,
.project-card,
.testimonial-card,
.pricing-card,
.contact-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.project-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.22);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

/* =========================
   PROJECTS
========================= */
.project-card {
  overflow: hidden;
}

.project-image {
  height: 260px;
  overflow: hidden;
  background: #0b1220;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-content {
  padding: 26px;
}

/* =========================
   PRICING
========================= */
.featured-pricing {
  border: 1px solid rgba(251, 191, 36, 0.45);
  transform: translateY(-6px);
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.hosting-option {
  margin: 16px 0 20px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.14);
}

.hosting-option p {
  color: var(--text);
}

.hosting-price {
  color: var(--accent);
  font-weight: 800;
  margin-top: 4px;
}

.pricing-list {
  margin: 22px 0 26px;
}

.pricing-list li {
  color: var(--text);
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.pricing-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  position: absolute;
  left: 0;
  top: 11px;
}

.pricing-btn {
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin: 36px auto 0;
  text-align: center;
}

.pricing-note p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* =========================
   OFFER BOX
========================= */
.offer-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.offer-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.offer-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =========================
   UPDATES CTA
========================= */
.updates-cta {
  margin-top: 42px;
  text-align: center;
}

.updates-cta p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--text-muted);
}

/* =========================
   CTA
========================= */
.cta {
  padding: 120px 0;
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 72px 40px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 55px rgba(0,0,0,0.3);
}

.cta-box h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--text-muted);
}

/* =========================
   CONTACT
========================= */
.calendly-wrapper {
  text-align: center;
  margin-top: 28px;
}

.calendly-wrapper h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0;
  background: #01050f;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--text-soft);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1050px) {
  .hero-content,
  .about-grid,
  .pricing-grid,
  .contact-grid,
  .contact-grid-3 {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    justify-content: flex-start;
  }

  .featured-pricing {
    transform: none;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    z-index: 1100;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 290px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    display: block;
  }

  .site-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 18px;
  }

  .nav-links a {
    width: 100%;
    font-size: 1rem;
  }

  .header-social {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
    padding: 12px 14px;
    height: auto;
  }

  .header-social svg {
    width: 20px;
    height: 20px;
  }

  .logo a {
    gap: 10px;
    padding: 9px 12px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 150px 0 95px;
  }
}

@media (max-width: 700px) {
  .section,
  .cta {
    padding: 86px 0;
  }

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

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-buttons,
  .offer-actions {
    flex-direction: column;
  }

  .showcase-stats {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .nav {
    min-height: 80px;
  }

  .site-header.scrolled .nav {
    min-height: 68px;
  }

  .logo-divider {
    display: none;
  }

  .logo-text-wrap {
    gap: 4px;
  }

  .logo-main,
  .logo-accent {
    font-size: 0.98rem;
  }
}