:root {
  --bg: #ffffff;
  --text: #17132f;
  --muted: #6c6d86;
  --purple: #6852d6;
  --purple-dark: #372776;
  --pink: #f8038c;
  --blue: #322cff;
  --soft: #f6f4ff;
  --card: #ffffff;
  --shadow: 0 22px 60px rgba(36, 31, 89, 0.13);
  --black: #0b0b0f;
  --black-2: #1c1c22;
  --black-soft: #f1f1f4;
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.section-pad {
  padding: 105px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 1px 0 rgba(30, 25, 80, 0.06);
}
.navbar {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 36px;
  align-items: center;
  font-weight: 700;
  color: #272444;
}
.nav-links a {
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--black), #5f5f68);
  transition: 0.25s;
}
.nav-links a:hover:after {
  right: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.82);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--black-2), var(--black));
  color: #fff;
  font-weight: 800;
  padding: 16px 31px;
  box-shadow:
    0 15px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: 0.22s;
}
.btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #27272f, #050507);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-small {
  padding: 12px 24px;
}
.btn.light:hover {
  background: #f7f7f8;
  color: #000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}
.btn.light {
  background: #fff;
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f2f2f5;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 24px;
  color: var(--black);
}
.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(248, 3, 140, 0.09),
      transparent 28%
    ),
    radial-gradient(circle at 4% 70%, rgba(104, 82, 214, 0.09), transparent 30%);
}
.hero:before {
  content: "";
  position: absolute;
  right: -170px;
  top: 90px;
  width: 375px;
  height: 375px;
  border-radius: 50%;
  background: rgba(104, 82, 214, 0.08);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.eyebrow {
  margin: 0 0 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  margin: 0 0 34px;
  letter-spacing: -0.06em;
  max-width: 620px;
}
.hero-visual {
  min-height: 490px;
  position: relative;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
}
.orb-pink {
  width: 320px;
  height: 320px;
  background: rgba(248, 3, 140, 0.13);
  right: 40px;
  top: 20px;
}
.orb-blue {
  width: 230px;
  height: 230px;
  background: rgba(50, 44, 255, 0.13);
  left: 20px;
  bottom: 10px;
}
.hero-check {
  position: absolute;
  width: 300px;
  right: 92px;
  top: 90px;
  filter: drop-shadow(0 30px 40px rgba(248, 3, 140, 0.2));
}
.feature-card {
  position: absolute;
  background: var(--card);
  border-radius: 24px;
  padding: 22px 25px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
  min-width: 270px;
}
.feature-card img {
  width: 56px;
  height: 56px;
}
.feature-card p {
  margin: 0 0 3px;
  color: var(--black);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.feature-card h3 {
  margin: 0;
  font-size: 19px;
}
.install {
  left: 0;
  top: 78px;
}
.support {
  right: 0;
  bottom: 60px;
}
.section-heading {
  text-align: center;
  margin-bottom: 42px;
}
.section-heading h2,
.section-copy h2,
.cta h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  box-shadow: 0 12px 36px rgba(37, 33, 86, 0.08);
  border: 1px solid rgba(104, 82, 214, 0.08);
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card .media {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card .media img {
  max-height: 188px;
  object-fit: contain;
}
.service-card h3 {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 13px;
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px;
}
.service-card a {
  color: var(--black);
  font-weight: 900;
}
.about,
.skills {
  background: linear-gradient(180deg, #fff 0%, #faf9ff 100%);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.about-image {
  position: relative;
}
.about-image > img:first-child {
  border-radius: 36px;
  box-shadow: var(--shadow);
  aspect-ratio: 1.18/1;
  object-fit: cover;
}
.badge-check {
  position: absolute;
  width: 118px;
  right: -34px;
  bottom: -34px;
  filter: drop-shadow(0 22px 36px rgba(50, 44, 255, 0.26));
}
.dots {
  position: absolute;
  width: 250px;
  left: -65px;
  bottom: -40px;
  z-index: -1;
  opacity: 0.75;
}
.section-copy h3 {
  font-size: 22px;
  color: var(--black);
  margin: 0 0 26px;
}
.mini-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 24px;
  padding: 21px 24px;
  width: max-content;
  box-shadow: var(--shadow);
}
.mini-row h4 {
  margin: 0;
}
.mini-row img {
  width: 52px;
}
.skill {
  margin: 24px 0;
}
.skill span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 800;
}
.skill:after {
  content: "";
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #e9e5ff;
}
.skill b {
  display: block;
  height: 12px;
  width: var(--w);
  margin-top: -12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--black), #686872);
}
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  background: #fff;
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-card > img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.contact-card > div {
  padding: 36px;
}
form {
  display: grid;
  gap: 14px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #e6e2f4;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #fbfbff;
  outline: none;
}
textarea {
  min-height: 118px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
} /* Premium black quote section */
.cta {
  padding: 96px 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at 86% 24%,
      rgba(255, 255, 255, 0.08),
      transparent 24%
    ),
    linear-gradient(135deg, #050506 0%, #101115 45%, #1b1c22 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.cta:before,
.cta:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta:before {
  width: 420px;
  height: 420px;
  left: -160px;
  top: -170px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.02) 58%,
    transparent 70%
  );
  filter: blur(2px);
}
.cta:after {
  width: 520px;
  height: 520px;
  right: -210px;
  bottom: -230px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.025) 55%,
    transparent 72%
  );
  filter: blur(2px);
}
.cta-inner {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 40px));
  padding: 58px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}
.cta .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #d9d9dc;
  opacity: 1;
  letter-spacing: 0.2em;
}
.cta h2 {
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}
.cta .btn.light {
  background: linear-gradient(180deg, #ffffff, #d7d7dc);
  color: #050506;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.cta .btn.light:hover {
  background: linear-gradient(180deg, #f5f5f6, #bfc0c7);
  color: #000;
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.footer {
  background: #111027;
  color: #fff;
  padding-top: 82px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.45fr;
  gap: 44px;
}
.footer-logo {
  width: 78px;
  border-radius: 50%;
  background: #fff;
}
.footer h4 {
  font-size: 18px;
  margin: 0 0 16px;
}
.footer h5 {
  font-size: 15px;
  line-height: 1.4;
  margin: 20px 0 12px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #c7c4dc;
}
.footer li {
  margin: 9px 0;
}
.socials {
  color: #c7c4dc;
}
.payments {
  width: 260px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 62px;
  text-align: center;
  padding: 24px 20px;
  color: #b9b6d0;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
@media (max-width: 980px) {
  .navbar {
    height: 78px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 80px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
    margin: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .navbar > .btn {
    display: none;
  }
  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    min-height: auto;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-card > img {
    min-height: 260px;
  }
  .section-pad {
    padding: 78px 0;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .section-pad {
    padding: 62px 0;
  }
  .brand span {
    font-size: 18px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-check {
    width: 220px;
    right: 15px;
    top: 70px;
  }
  .feature-card {
    min-width: 230px;
    padding: 17px;
  }
  .install {
    left: 0;
    top: 30px;
  }
  .support {
    right: 0;
    bottom: 38px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .badge-check {
    right: 8px;
    bottom: -26px;
    width: 88px;
  }
  .mini-row {
    width: 100%;
  }
  .contact-card > div {
    padding: 26px;
  }
  .payments {
    width: 220px;
  }
}

/* Added digital agency content sections */
.hero-subtitle {
  max-width: 580px;
  margin: -18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline {
  background: #fff;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.btn-outline:hover {
  background: #f3f3f5;
  color: #000;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 650px;
}
.hero-stats div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 16px 17px;
  box-shadow: 0 12px 30px rgba(37, 33, 86, 0.06);
}
.hero-stats strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 5px;
}
.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.section-intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}
.body-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  margin: 0 0 26px;
}
.growth {
  background: linear-gradient(180deg, #fff 0%, #f7f7fb 100%);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.benefit-card {
  padding: 34px 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
}
.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
}
.benefit-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #202126, #08080a);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.benefit-card h3,
.case-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}
.benefit-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
}
.process {
  background: #fff;
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: #fbfbfd;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.045);
}
.timeline-item b {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.timeline-item h3 {
  margin: 0 0 5px;
  font-size: 20px;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
}
.work {
  background: linear-gradient(180deg, #fbfbff 0%, #fff 100%);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.case-card {
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff, #f8f8fb);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
}
.case-card ul {
  padding-left: 19px;
  margin: 20px 0 0;
  color: #333;
  line-height: 1.9;
}
.faq {
  background: #fff;
}
.faq-list {
  display: grid;
  gap: 14px;
}
details {
  background: #f9f9fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--black);
  font-size: 17px;
}
details p {
  color: var(--muted);
  margin: 12px 0 0;
}
.cta-copy {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #d7d7dc;
  font-size: 17px;
  line-height: 1.75;
}
@media (max-width: 980px) {
  .hero-stats,
  .benefit-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    grid-template-columns: 54px 1fr;
  }
  .nav-links {
    gap: 18px;
  }
  .section-intro {
    font-size: 16px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .timeline-item b {
    width: 46px;
    height: 46px;
  }
  .benefit-card,
  .case-card {
    padding: 25px;
  }
  .hero-stats {
    margin-top: 24px;
  }
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 2px 0 0;
}
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #fff, #f7f7fb);
}
.thank-you-card {
  max-width: 760px;
  margin: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 36px;
  padding: 58px 42px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.thank-you-card h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.045em;
}
.thank-you-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 auto 28px;
  max-width: 560px;
}
