* {
  box-sizing: border-box
}

html:focus-within {
  scroll-behavior: smooth
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
}

:root {
  --navy-900: #0a224e;
  --navy-800: #0b2d66;
  --navy-700: #113a7a;
  --navy-600: #163b8c;
  --neutral-50: #f9fafb;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding: 0px 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 10px;
  padding: .9rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  border-color: transparent
}

.btn i {
  font-size: 1rem
}

.btn:hover {
  transform: translateY(-1px)
}

.btn:active {
  transform: translateY(0)
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
}

.btn-outline {
  color: var(--navy-900);
  border-color: var(--navy-700);
}

.btn-outline:hover {
  background: var(--navy-700);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--blue-800);
  border: 1px solid var(--border)
}

.btn-white:hover {
  background: #f7f9ff
}

.btn-lg {
  padding: 1rem 1.4rem;
  font-size: 1.05rem
}

.btn-sm {
  padding: .5rem .8rem;
  font-size: .9rem
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%
}

.section-intro {
  color: var(--muted);
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 50
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink)
}

.brand-icon {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-name {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700
}

.brand-tag {
  font-size: .78rem;
  color: var(--muted)
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none
}

.nav a {
  color: #0b1220;
  text-decoration: none;
  font-weight: 600
}

.nav a:hover {
  color: var(--blue-700)
}

.nav .btn {
  margin-left: 4px
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center
}

.nav-toggle .bar {
  width: 20px;
  height: 2px;
  background: #0b1220;
  border-radius: 1px
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--neutral-50) 100%);
}

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

.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin: .2rem 0 1rem;
  color: #0b1220
}

.hero p {
  font-size: 1.05rem;
  color: #243046;
  max-width: 720px
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #243046
}

.stars i {
  color: var(--gold)
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none
}

.hero-keywords li {
  font-size: .86rem;
  border: 1px dashed #cdd6e4;
  border-radius: 999px;
  padding: 6px 10px;
  color: #425466;
  background: #fff
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(13, 71, 161, .15)
}

.platforms {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff
}

.platforms-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 0;
  color: #475569
}

.platforms-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600
}

.services {
  padding: 68px 0;
  background: #fff
}

.services h2,
.gallery h2,
.testimonials h2,
.pricing h2,
.about h2,
.resources h2,
.pay h2,
.contact h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0px 0px 0.6rem;
}

.service-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.04)
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.card h3 {
  margin: .2rem 0 .2rem
}

.card p {
  color: #475569
}

.card-list {
  margin: .2rem 0 0;
  padding-left: 18px;
  color: #3f4d63
}

.gallery {
  padding: 68px 0;
  background: var(--bg)
}

.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.gallery figure {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px
}

.gallery figcaption {
  text-align: center;
  color: #475569;
  font-size: .9rem;
  margin-top: 8px
}

.testimonials {
  padding: 68px 0;
  background: #fff
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px
}

.t-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.04)
}

.t-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px
}

.g-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0F9D58;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.t-meta span {
  display: block;
  color: #64748b;
  font-size: .85rem
}

.t-stars i {
  color: var(--gold);
  margin-right: 2px
}

.pricing {
  padding: 68px 0px;
  background: var(--bg);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.04)
}

.price-card h3 {
  margin: .2rem 0
}

.price-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b1220
}

.price-card .price span {
  font-size: .9rem;
  color: #64748b;
  font-weight: 600
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3f4d63
}

.price-card.featured {
  border-color: var(--blue-600);
  box-shadow: 0 12px 50px rgba(31, 78, 216, .18)
}

.about {
  padding: 68px 0;
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center
}

.about p {
  color: #475569
}

.checks {
  list-style: none;
  padding: 0px;
  margin: 10px 0px;
  display: grid;
  gap: 8px;
}

.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgb(51, 65, 85);
}

.checks i {
  color: rgb(22, 163, 74);
  margin-top: 4px;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 42, 102, .18)
}

.resources {
  padding: 68px 0;
  background: #fff
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}

.link-cloud a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px dashed #cdd6e4;
  border-radius: 999px;
  color: #0b1220;
  text-decoration: none;
  background: #f8fbff
}

.link-cloud a:hover {
  background: #e9f1ff;
  color: #0a2a66
}

.pay {
  padding: 68px 0;
  background: var(--bg)
}

.pay-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center
}

.pay-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(13, 71, 161, .15)
}

.contact {
  padding: 68px 0;
  background: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: flex-start
}

.contact-points {
  list-style: none;
  padding: 0px;
  margin: 10px 0px 22px;
  display: grid;
  gap: 8px;
  color: rgb(51, 65, 85);
}

.contact-points i {
  color: var(--blue-700);
  width: 20px;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.04)
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

label {
  font-weight: 600
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
select,
textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
  background: #fff
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(31, 78, 216, .15)
}

textarea {
  resize: vertical
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0
}

.form-check input {
  margin-top: 4px
}

.site-footer {
  background: #0b1220;
  color: #d7e0ea
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 20px;
  padding: 28px 0
}

.site-footer a {
  color: #e6f0ff;
  text-decoration: none
}

.site-footer a:hover {
  color: #fff
}

.f-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgb(17, 24, 39);
  margin-right: 8px;
}

.f-social a:hover {
  background: rgb(15, 23, 42);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #142038
}

.to-top {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: #111827
}

.plan {
  border: 1px solid var(--muted);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.plan-header h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 0 0 4px;
}

.plan-header p {
  color: var(--muted);
  margin: 0 0 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 12px;
}

.plan-price .price {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
}

.plan-price .per {
  color: var(--muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: grid;
  gap: 8px;
}

.plan-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
}

.plan-features li::before {
  content: "✓";
}

.plan-cta {
  display: inline-block;
  text-align: center;
  border: 1px solid currentColor;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.plan-cta.primary {
  border-width: 2px;
}

.plan-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 10px 0 0;
}

.badge {
  align-self: flex-start;
  border: 1px solid var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.popular {
  border-width: 2px;
}

.disclaimer {
  color: var(--muted);
  margin-top: 16px;
  max-width: 780px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: -0.01em;
}

.portfolio h2 {
  margin-bottom: 0.6rem;
}

.process {
  padding: 68px 0;
  background: #fff;
}

.steps-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.04);
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.step-card h3 {
  margin: 0 0 6px;
}

.step-card p {
  color: #475569;
  margin: 0;
}

.services h2,
.portfolio h2,
.process h2,
.testimonials h2,
.about h2,
.contact h2 {
  font-weight: 900;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .testimonial-list {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .about-grid,
  .pay-inner,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex
  }

  .nav {
    position: absolute;
    inset: 64px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none
  }

  .nav.open {
    display: block
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px
  }

  .platforms-row {
    justify-content: flex-start
  }

  .service-grid,
  .gallery-grid,
  .testimonial-list,
  .price-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}