:root {
  --bg: #eef1f7;
  --ink: #131a2e;
  --ink-soft: #3d455c;
  --primary: #153f8a;
  --primary-deep: #0f2d65;
  --line: #d3d9e8;
  --card: #ffffff;
  --shadow: 0 18px 42px rgba(19, 26, 46, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(238, 241, 247, 0.72), rgba(238, 241, 247, 0.72)),
    url("background.jpg") center/cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.06;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(238, 241, 247, 0.82);
  border-bottom: 1px solid rgba(61, 69, 92, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #131a2e;
  color: #f9fbff;
  border-radius: 999px;
  padding: 0.35rem 0.45rem 0.35rem 1.2rem;
}

.site-nav a {
  font-weight: 500;
}

.nav-cta {
  background: #f9fbff;
  color: #131a2e;
  border-radius: 999px;
  padding: 0.55rem 1rem;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.hero {
  padding: 7.2rem 0 4rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: #f4f6fb;
  font-weight: 500;
  color: #2f3751;
}

.hero h1 {
  margin: 1.2rem auto 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 780px;
  margin: 1.3rem auto 0;
  font-size: clamp(1.05rem, 1.8vw, 1.8rem);
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(125deg, var(--primary) 0%, #2a58b8 100%);
  box-shadow: 0 10px 24px rgba(21, 63, 138, 0.34);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.hero-stats {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats article {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid #e3e8f2;
  padding: 1rem;
}

.hero-stats h3 {
  font-size: 1.45rem;
}

.hero-stats p {
  color: var(--ink-soft);
}

.section {
  padding: 2.8rem 0;
}

.section-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.kicker {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  max-width: 700px;
  letter-spacing: -0.02em;
}

.cards,
.project-grid,
.pricing-grid,
.quotes {
  display: grid;
  gap: 1rem;
}

.cards {
  grid-template-columns: 1fr;
}

.project-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.project,
.price-card,
.quotes blockquote,
.contact-card {
  background: var(--card);
  border: 1px solid #e0e6f1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.project,
.price-card {
  padding: 1.45rem;
}

.card p,
.project p,
.price-card li {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.project-tag {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #e8edf9;
  color: #283867;
  font-weight: 700;
  font-size: 0.82rem;
}

.price-card .price {
  font-size: 2rem;
  margin-top: 0.45rem;
  font-family: "Sora", sans-serif;
  color: var(--primary-deep);
}

.price-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.featured {
  border: 2px solid var(--primary);
  transform: translateY(-7px);
}

.best {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.quotes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quotes blockquote {
  margin: 0;
  padding: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.quotes cite {
  display: block;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 1rem;
}

.contact p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  max-width: 620px;
}

.contact-card {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.contact-card a:not(.btn) {
  font-weight: 700;
  color: var(--primary-deep);
}

.form-section {
  background: transparent;
  border-block: none;
}

.form-shell {
  padding: 2.4rem 0;
}

.contact-head {
  margin-inline: auto;
  width: min(940px, 100%);
  margin-bottom: 1rem;
}

.contact-form-modern {
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  background: var(--card);
  border: 1px solid #e0e6f1;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.contact-form-modern input,
.contact-form-modern textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f9fbff;
  color: var(--ink);
  border-radius: 10px;
  padding: 1rem 1rem;
  font: inherit;
  font-size: 1rem;
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
  color: #6f7890;
}

.contact-form-modern textarea {
  min-height: 170px;
  resize: vertical;
}

.form-submit {
  border: 0;
  border-radius: 999px;
  padding: 1.1rem;
  background: linear-gradient(125deg, var(--primary) 0%, #2a58b8 100%);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(21, 63, 138, 0.28);
}

.form-submit:hover {
  background: linear-gradient(125deg, #1a4797 0%, #3565c8 100%);
  transform: translateY(-2px);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(61, 69, 92, 0.14);
  background: rgba(255, 255, 255, 0.75);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 1rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    right: 1rem;
    top: 72px;
    width: min(280px, calc(100% - 2rem));
    border-radius: 18px;
    padding: 0.9rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .cards,
  .project-grid,
  .pricing-grid,
  .hero-stats,
  .quotes,
  .contact {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .hero {
    padding-top: 5.8rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}
