:root {
  --bg-1: #e6f4ff;
  --bg-2: #d6efea;
  --ink: #0f1c31;
  --muted: #4f6179;
  --accent: #1d9df8;
  --accent-2: #30c6ff;
  --white: #ffffff;
  --line: rgba(12, 35, 66, 0.18);
  --shadow-soft: 0 18px 45px rgba(10, 34, 70, 0.14);
  --shadow-strong: 0 25px 55px rgba(10, 34, 70, 0.22);
  --radius-pill: 999px;
  --radius-lg: 24px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(130deg, var(--bg-1), #f8fdff 45%, var(--bg-2));
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(112, 156, 255, 0.23), transparent 38%),
    radial-gradient(circle at 84% 20%, rgba(61, 241, 223, 0.19), transparent 33%);
  z-index: -2;
}

.sparkles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%);
  animation: twinkle var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.45);
    opacity: 0;
  }
  45% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(11px);
  background: rgba(246, 251, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.header-inner {
  position: relative;
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 174px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.96rem;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: transform 0.26s ease;
}

.main-nav a:hover {
  color: #187fcf;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.help-line {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

.help-text {
  font-size: 0.88rem;
  color: var(--muted);
}

.phone {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  padding: 13px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-secondary {
  position: relative;
  color: var(--white);
  background: linear-gradient(125deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 28px rgba(28, 143, 223, 0.28);
}

.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn-primary:hover,
.btn-secondary:hover {
  background: linear-gradient(125deg, #2aa6fa, #46d1ff);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(14, 29, 52, 0.16);
  box-shadow: 0 7px 20px rgba(12, 37, 80, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.94);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: var(--ink);
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero {
  position: relative;
  padding: 86px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(245, 252, 255, 0.75) 0%, rgba(245, 252, 255, 0.95) 78%),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroPan 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 17% 24%, rgba(84, 160, 255, 0.2), transparent 35%),
    radial-gradient(circle at 82% 72%, rgba(20, 206, 196, 0.16), transparent 38%);
}

@keyframes heroPan {
  0% {
    transform: scale(1.08) translateX(-1.2%);
  }
  100% {
    transform: scale(1.12) translateX(1.2%);
  }
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
}

.hero-orb-left {
  width: 190px;
  aspect-ratio: 1;
  left: -50px;
  top: 90px;
  background: radial-gradient(circle at 30% 30%, rgba(155, 193, 255, 0.85), rgba(146, 225, 255, 0.28));
  animation: driftOrb 6s ease-in-out infinite;
}

.hero-orb-right {
  width: 250px;
  aspect-ratio: 1;
  right: -75px;
  top: 245px;
  background: radial-gradient(circle at 40% 35%, rgba(135, 242, 227, 0.86), rgba(126, 195, 255, 0.2));
  animation: driftOrb 7s ease-in-out infinite reverse;
}

@keyframes driftOrb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 940px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: rgba(38, 158, 247, 0.14);
  color: #1f88de;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 10px 18px;
}

h1 {
  margin: 28px auto 16px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 7.2vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -1.8px;
}

h1 span {
  display: inline-block;
  background: linear-gradient(120deg, #0f1c31 15%, #1d8de1 42%, #36cfff 55%, #0f1c31 88%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShine 5s linear infinite;
}

@keyframes textShine {
  to {
    background-position: 220% center;
  }
}

.hero p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1.02rem, 1.45vw, 1.34rem);
  line-height: 1.72;
  color: var(--muted);
}

.hero-cta-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-tools {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 950px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.tool-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  min-height: 212px;
  text-align: left;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(243, 252, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.tool-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  font-size: 2rem;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(203, 235, 255, 0.35));
}

.tool-card h3 {
  margin: 0 0 8px;
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.2px;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.tool-card-left {
  animation: floatLeft 4.2s ease-in-out infinite;
}

.tool-card-center {
  animation: floatMid 4s ease-in-out infinite;
}

.tool-card-right {
  animation: floatRight 4.4s ease-in-out infinite;
}

@keyframes floatLeft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatMid {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-showcase {
  position: relative;
  background: #104395;
  color: #eaf3ff;
  padding: 88px 0 94px;
  overflow: hidden;
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(68, 143, 255, 0.26), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(116, 201, 255, 0.23), transparent 33%);
  pointer-events: none;
}

.about-showcase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.about-copy {
  max-width: 700px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.84rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: #d7ebff;
  background: rgba(52, 120, 216, 0.78);
}

.about-copy h2 {
  margin: 24px 0 20px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3.8vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.6px;
  color: #f3f8ff;
}

.about-copy p {
  margin: 0;
  max-width: 645px;
  font-size: clamp(1rem, 1.05vw, 1.26rem);
  line-height: 1.75;
  color: rgba(231, 241, 255, 0.9);
}

.btn-gold {
  margin-top: 30px;
  color: #ffffff;
  background: linear-gradient(125deg, #38bdf8, #0ea5e9);
  box-shadow: 0 12px 26px rgba(8, 17, 32, 0.33);
}

.btn-gold:hover {
  background: linear-gradient(125deg, #56c9fb, #1ab3f1);
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  grid-template-areas:
    "a b"
    "c b"
    "c d";
}

.collage-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 13, 38, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.collage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 13, 38, 0.38);
}

.collage-card:hover img {
  transform: scale(1.08);
}

.collage-a {
  grid-area: a;
  min-height: 200px;
}

.collage-b {
  grid-area: b;
  min-height: 380px;
}

.collage-c {
  grid-area: c;
  min-height: 350px;
}

.collage-d {
  grid-area: d;
  min-height: 210px;
}

.services-showcase {
  position: relative;
  padding: 72px 0 92px;
  background: linear-gradient(180deg, #124795 0 58%, #f4f6fa 58% 100%);
  overflow: hidden;
}

.services-spark {
  position: absolute;
  z-index: 0;
  background: #ffe856;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  filter: drop-shadow(0 6px 10px rgba(11, 25, 54, 0.25));
}

.services-spark-main {
  width: 150px;
  height: 150px;
  top: -18px;
  left: 82px;
}

.services-spark-small {
  width: 38px;
  height: 38px;
  top: 24px;
  left: 118px;
}

.services-inner {
  position: relative;
  z-index: 1;
}

.services-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  color: #e8f2ff;
}

.services-chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.84rem;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(59, 132, 230, 0.65);
}

.services-head h2 {
  margin: 24px 0 14px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.7px;
}

.services-head p {
  margin: 0 auto;
  max-width: 740px;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  line-height: 1.72;
  color: rgba(225, 238, 255, 0.84);
}

.services-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(14, 31, 64, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(14, 31, 64, 0.22);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  margin: 22px 18px 8px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.25rem, 1.45vw, 1.58rem);
  line-height: 1.22;
  color: #111f3a;
  letter-spacing: -0.2px;
}

.service-card p {
  margin: 0 18px 24px;
  color: #5b6373;
  font-size: clamp(0.98rem, 0.9vw, 1.06rem);
  line-height: 1.62;
}

.trust-stats-section {
  background: #f1f2f4;
  padding: 90px 0 82px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.trust-card {
  text-align: center;
}

.trust-icon-box {
  width: 112px;
  height: 112px;
  border-radius: 14px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1f93e5, #0e80da);
  box-shadow: 0 12px 24px rgba(15, 67, 126, 0.22);
}

.trust-icon {
  width: 54px;
  height: 54px;
  stroke: #ffffff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.32rem, 1.5vw, 1.62rem);
  color: #15213c;
  letter-spacing: -0.4px;
}

.trust-card p {
  margin: 18px auto 0;
  max-width: 420px;
  color: #5e626b;
  font-size: clamp(0.98rem, 0.88vw, 1.05rem);
  line-height: 1.66;
}

.stats-panel {
  margin-top: 72px;
  border-radius: 20px;
  padding: 34px 28px;
  background: #f4df45;
  box-shadow: 0 14px 28px rgba(15, 24, 44, 0.08);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #0f1d3d;
}

.stat-number.is-counting {
  animation: statPulse 0.7s ease;
}

@keyframes statPulse {
  0% {
    transform: translateY(6px) scale(0.96);
    opacity: 0.45;
  }
  60% {
    transform: translateY(0) scale(1.03);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.stat-item p {
  margin: 12px 0 0;
  color: #1e3f79;
  font-size: 1.08rem;
  line-height: 1.45;
}

.pricing-showcase {
  position: relative;
  padding: 84px 0 88px;
  background: linear-gradient(180deg, #124795 0 60%, #f4f6fa 60% 100%);
  overflow: hidden;
}

.pricing-spark {
  position: absolute;
  z-index: 0;
  background: #ffe856;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  filter: drop-shadow(0 6px 10px rgba(11, 25, 54, 0.25));
}

.pricing-spark-main {
  width: 170px;
  height: 170px;
  top: 82px;
  right: 170px;
}

.pricing-spark-small {
  width: 48px;
  height: 48px;
  top: 170px;
  right: 330px;
}

.pricing-inner {
  position: relative;
  z-index: 1;
}

.pricing-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  color: #e9f3ff;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 8px 22px;
  font-size: 0.84rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(59, 132, 230, 0.65);
}

.pricing-head h2 {
  margin: 24px 0 14px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.7px;
}

.pricing-head p {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(1rem, 1.2vw, 1.36rem);
  line-height: 1.7;
  color: rgba(226, 239, 255, 0.84);
}

.pricing-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.price-card {
  background: #eceef2;
  border-radius: 16px;
  padding: 42px 24px 34px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(14, 31, 64, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(14, 31, 64, 0.2);
}

.price-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.66rem);
  line-height: 1.32;
  color: #1a2640;
}

.price-line {
  margin: 24px 0 26px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.currency {
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  color: #19263f;
}

.price-value {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1;
  color: #111d38;
  letter-spacing: -0.8px;
}

.unit {
  font-size: clamp(1.15rem, 1.2vw, 1.55rem);
  color: #6b707a;
  font-weight: 600;
}

.pricing-btn {
  min-width: 154px;
  color: #ffffff;
  background: linear-gradient(125deg, #38bdf8, #0ea5e9);
  box-shadow: 0 12px 26px rgba(8, 17, 32, 0.2);
}

.pricing-btn:hover {
  background: linear-gradient(125deg, #56c9fb, #1ab3f1);
}

.testimonials-showcase {
  background: #f4f6fa;
  padding: 84px 0 96px;
}

.testimonials-inner {
  position: relative;
}

.testimonials-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.testimonials-chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.82rem;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  font-weight: 700;
  color: #dff1ff;
  background: linear-gradient(125deg, #1f93e5, #0e80da);
}

.testimonials-head h2 {
  margin: 22px 0 12px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  line-height: 1.08;
  color: #142344;
}

.testimonials-head p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1rem, 1.03vw, 1.2rem);
  line-height: 1.72;
  color: #616c80;
}

.testimonials-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(24, 71, 149, 0.08);
  box-shadow: 0 16px 34px rgba(14, 31, 64, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(14, 31, 64, 0.16);
}

.testimonial-stars {
  color: #f2d94a;
  letter-spacing: 2px;
  font-size: 1.08rem;
  line-height: 1;
}

.testimonial-quote {
  margin: 16px 0 22px;
  font-size: 1rem;
  line-height: 1.8;
  color: #49566d;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  color: #18253f;
}

.testimonial-author p {
  margin: 3px 0 0;
  color: #697385;
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .main-nav ul {
    gap: 17px;
  }

  .header-actions .btn-primary {
    padding-inline: 22px;
  }

  .help-text {
    display: none;
  }

  .about-showcase-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy {
    max-width: none;
  }

  .about-collage {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card h3 {
    font-size: 1.55rem;
  }

  .service-card p {
    font-size: 1.1rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .trust-card h3 {
    font-size: 1.75rem;
  }

  .trust-card p {
    font-size: 1.05rem;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card:last-child {
    grid-column: span 2;
    max-width: 540px;
    width: 100%;
    justify-self: center;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 620px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 82px;
  }

  .brand-logo {
    width: 150px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(10, 38, 88, 0.16);
    z-index: 55;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    background: rgba(42, 153, 247, 0.1);
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card-center {
    grid-column: span 2;
  }

  .about-showcase {
    padding: 76px 0 82px;
  }

  .about-collage {
    gap: 14px;
  }

  .services-showcase {
    padding: 68px 0 82px;
  }

  .services-spark-main {
    left: 26px;
    width: 118px;
    height: 118px;
  }

  .services-spark-small {
    left: 42px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card img {
    height: 230px;
  }

  .trust-stats-section {
    padding: 78px 0 76px;
  }

  .trust-icon-box {
    width: 98px;
    height: 98px;
    margin-bottom: 18px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
  }

  .stats-panel {
    margin-top: 58px;
  }

  .pricing-showcase {
    padding: 72px 0 80px;
  }

  .pricing-spark-main {
    width: 124px;
    height: 124px;
    right: 24px;
    top: 86px;
  }

  .pricing-spark-small {
    width: 32px;
    height: 32px;
    right: 134px;
    top: 148px;
  }

  .pricing-grid {
    margin-top: 54px;
    gap: 18px;
  }

  .price-card {
    padding: 34px 18px 28px;
  }

  .unit {
    font-size: 1.08rem;
  }

  .testimonials-showcase {
    padding: 72px 0 82px;
  }

  .testimonials-grid {
    gap: 18px;
  }

  .testimonial-card {
    padding: 24px 18px 20px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding: 46px 0 72px;
  }

  h1 {
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn-secondary,
  .btn-outline {
    width: min(100%, 315px);
  }

  .hero-tools {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .tool-card-center {
    grid-column: auto;
  }

  .hero-orb-left {
    width: 125px;
    left: -42px;
  }

  .hero-orb-right {
    width: 160px;
    right: -46px;
  }

  .about-showcase {
    padding: 62px 0 70px;
  }

  .about-chip {
    font-size: 0.74rem;
    letter-spacing: 1.3px;
  }

  .about-copy h2 {
    margin-top: 18px;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-collage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d";
  }

  .collage-a,
  .collage-b,
  .collage-c,
  .collage-d {
    min-height: 235px;
  }

  .btn-gold {
    width: min(100%, 320px);
  }

  .services-showcase {
    padding: 60px 0 68px;
    background: linear-gradient(180deg, #124795 0 44%, #f4f6fa 44% 100%);
  }

  .services-spark-main {
    width: 84px;
    height: 84px;
    top: -6px;
    left: 12px;
  }

  .services-spark-small {
    width: 22px;
    height: 22px;
    top: 16px;
    left: 22px;
  }

  .services-grid {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .service-card h3 {
    font-size: 1.36rem;
  }

  .service-card p {
    font-size: 1.01rem;
  }

  .trust-stats-section {
    padding: 62px 0 64px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-card h3 {
    font-size: 1.52rem;
  }

  .trust-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .stats-panel {
    margin-top: 42px;
    padding: 24px 18px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item p {
    margin-top: 8px;
    font-size: 0.98rem;
  }

  .pricing-showcase {
    padding: 60px 0 66px;
    background: linear-gradient(180deg, #124795 0 42%, #f4f6fa 42% 100%);
  }

  .pricing-spark-main {
    width: 82px;
    height: 82px;
    top: 70px;
    right: 14px;
  }

  .pricing-spark-small {
    width: 22px;
    height: 22px;
    top: 114px;
    right: 88px;
  }

  .pricing-chip {
    font-size: 0.74rem;
    letter-spacing: 1.3px;
  }

  .pricing-grid {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .price-card,
  .price-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .price-line {
    gap: 6px;
  }

  .unit {
    font-size: 0.98rem;
  }

  .testimonials-showcase {
    padding: 58px 0 68px;
  }

  .testimonials-chip {
    font-size: 0.74rem;
    letter-spacing: 1.3px;
  }

  .testimonials-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.72;
  }
}

.site-footer {
  background: linear-gradient(180deg, #101a38, #0b1530);
  color: #e8f1ff;
}

.footer-top {
  padding: 74px 0 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.95fr 0.95fr;
  gap: 38px;
}

.footer-brand img {
  width: 176px;
  height: auto;
}

.footer-brand-col p {
  margin: 24px 0 28px;
  max-width: 470px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(224, 235, 255, 0.94);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  color: #f4fbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.24s ease, background 0.24s ease;
}

.footer-social i {
  font-size: 0.98rem;
  line-height: 1;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(56, 189, 248, 0.32);
}

.footer-links-col h3,
.footer-contact-item h3 {
  margin: 0 0 16px;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  color: #f2f7ff;
}

.footer-links-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-col li + li {
  margin-top: 10px;
}

.footer-links-col a,
.footer-contact-col a {
  color: rgba(230, 239, 255, 0.92);
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.62;
  transition: color 0.2s ease;
}

.footer-links-col a:hover,
.footer-contact-col a:hover {
  color: #8bd9ff;
}

.footer-contact-item + .footer-contact-item {
  margin-top: 18px;
}

.footer-contact-item h3 {
  margin-bottom: 6px;
}

.footer-contact-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(230, 239, 255, 0.92);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 19, 44, 0.55);
}

.footer-bottom-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(231, 240, 255, 0.92);
  font-size: 1rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(231, 240, 255, 0.92);
  font-size: 1rem;
}

.footer-bottom-links a:hover {
  color: #8bd9ff;
}

@media (max-width: 1180px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .footer-top {
    padding: 64px 0 40px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .footer-brand-col p {
    max-width: none;
    margin: 18px 0 22px;
  }

  .footer-bottom-inner {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-top {
    padding: 52px 0 34px;
    gap: 24px;
  }

  .footer-links-col h3,
  .footer-contact-item h3 {
    font-size: 1.25rem;
  }

  .footer-links-col a,
  .footer-contact-col a,
  .footer-contact-item p {
    font-size: 0.97rem;
  }

  .footer-bottom-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .footer-bottom-inner p,
  .footer-bottom-links a {
    font-size: 0.95rem;
  }
}
