:root {
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --text: #07111f;
  --muted: #5d6878;
  --border: #dfe6f1;
  --blue: #145cff;
  --blue-dark: #003bb7;
  --navy: #061b36;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(7, 17, 31, 0.08);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

.light-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-box {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--blue);
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  color: #172235;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(20, 92, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 340px;
  background: rgba(20, 92, 255, 0.06);
  transform: rotate(-3deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 720px;
}

h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 14px 30px rgba(20, 92, 255, 0.24);
}

.btn-secondary {
  background: white;
  border-color: #b7c2d6;
  color: var(--text);
}

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-preview {
  position: relative;
  min-height: 440px;
}

.browser-card {
  background: #101721;
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  gap: 7px;
  padding: 5px 8px 13px;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #e8eef8;
}

.mock-site {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.mock-nav {
  min-height: 56px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.mock-nav small {
  color: var(--muted);
  font-weight: 700;
}

.mock-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  padding: 44px 28px;
  min-height: 300px;
  align-items: center;
}

.mock-body h2 {
  font-size: 2.1rem;
}

.mock-body p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.mock-body button,
.phone-card button {
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: white;
  padding: 10px 16px;
  font-weight: 800;
}

.mock-image {
  min-height: 220px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(20, 92, 255, 0.12), rgba(20, 92, 255, 0.02)),
    repeating-linear-gradient(135deg, #dfe8f8 0 18px, #f6f9ff 18px 36px);
}

.phone-card {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 190px;
  min-height: 280px;
  border: 10px solid #111;
  border-radius: 30px;
  background: white;
  padding: 28px 16px;
  box-shadow: 0 18px 35px rgba(7, 17, 31, 0.2);
}

.phone-speaker {
  width: 54px;
  height: 5px;
  background: #111;
  border-radius: 20px;
  margin: -14px auto 30px;
}

.phone-card h3 {
  font-size: 1.25rem;
}

.phone-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 12px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards,
.work-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.three-col,
.work-grid,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.work-card,
.process-step,
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 34px;
}

.icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--blue);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card p,
.process-step p {
  color: var(--muted);
}

.work-card {
  overflow: hidden;
}

.work-image {
  min-height: 210px;
  background-size: cover;
  background-position: center;
}

.image-one {
  background:
    linear-gradient(rgba(7,17,31,0.1), rgba(7,17,31,0.1)),
    linear-gradient(135deg, #e7edf6, #ffffff 45%, #9aa8bb);
}

.image-two {
  background:
    linear-gradient(rgba(7,17,31,0.1), rgba(7,17,31,0.1)),
    linear-gradient(135deg, #111827, #e7edf6 50%, #ffffff);
}

.image-three {
  background:
    radial-gradient(circle at 30% 35%, #b9d5bd 0 10%, transparent 11%),
    radial-gradient(circle at 65% 45%, #789980 0 14%, transparent 15%),
    linear-gradient(135deg, #f9fbff, #dceee2);
}

.work-content {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.work-content p {
  color: var(--muted);
  margin-top: 4px;
}

.work-content span {
  font-size: 2rem;
  color: var(--blue);
}

.price-card {
  padding: 34px;
}

.price-card .package {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card h3 {
  font-size: 3rem;
  margin: 14px 0;
}

.price-card ul {
  list-style: none;
  margin: 26px 0;
  display: grid;
  gap: 12px;
}

.price-card li {
  color: var(--muted);
}

.price-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 10px;
}

.featured-price {
  border: 2px solid var(--blue);
  transform: translateY(-10px);
}

.process-step {
  padding: 36px;
}

.process-step span {
  display: block;
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 22px;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at top right, rgba(20, 92, 255, 0.16), transparent 30%),
    var(--navy);
  color: white;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.cta-grid h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.cta-grid p:not(.eyebrow) {
  color: rgba(255,255,255,0.74);
  margin-top: 18px;
  font-size: 1.08rem;
}

.contact-form {
  padding: 30px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 92, 255, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  background: #050b13;
  color: white;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

.footer-brand .brand-box {
  border-color: white;
  color: white;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.72);
}

.site-footer h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .section-pad,
  .cta-section {
    padding: 68px 0;
  }

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

  .hero-preview {
    min-height: 380px;
  }

  .three-col,
  .work-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-price {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--bg-soft);
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .browser-card {
    padding: 10px;
  }

  .mock-nav small {
    display: none;
  }

  .mock-body {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .mock-image {
    min-height: 130px;
  }

  .phone-card {
    width: 150px;
    min-height: 230px;
    right: 8px;
  }

  .work-image {
    min-height: 180px;
  }
}
