:root {
  --bg: #06111d;
  --bg-2: #091a2b;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-soft: rgba(11, 30, 48, 0.72);
  --line: rgba(124, 213, 255, 0.18);
  --line-strong: rgba(124, 213, 255, 0.34);
  --text: #f4fbff;
  --text-soft: rgba(232, 245, 255, 0.76);
  --muted: rgba(207, 227, 240, 0.66);
  --navy: #071827;
  --cyan: #7dd5ff;
  --cyan-strong: #59bfff;
  --emerald: #7ef7c7;
  --emerald-strong: #33d7a1;
  --orange: #ffb464;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --glow-cyan: 0 0 0 1px rgba(125, 213, 255, 0.22), 0 0 28px rgba(89, 191, 255, 0.18);
  --glow-emerald: 0 0 0 1px rgba(126, 247, 199, 0.22), 0 0 30px rgba(51, 215, 161, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 18%, rgba(89, 191, 255, 0.18), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(126, 247, 199, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(22, 77, 118, 0.28), transparent 38%),
    linear-gradient(180deg, #04101b 0%, #071523 44%, #081726 100%);
  min-height: 100vh;
}

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

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

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

.section {
  position: relative;
  padding: 82px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 213, 255, 0.18), transparent);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 24, 39, 0.58);
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-emerald);
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, rgba(126, 247, 199, 0.98), rgba(125, 213, 255, 0.92));
  color: #032036;
  box-shadow: 0 18px 40px rgba(125, 213, 255, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(4, 16, 27, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(125, 213, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(125, 213, 255, 0.2), rgba(126, 247, 199, 0.14)),
    rgba(6, 18, 31, 0.7);
  color: var(--text);
  border: 1px solid rgba(125, 213, 255, 0.28);
  box-shadow: var(--glow-cyan);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(240, 251, 255, 0.84);
  font-weight: 750;
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
}

.header-cta {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 73px);
  padding: 0;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(89, 191, 255, 0.18), transparent 22%),
    radial-gradient(circle at 85% 22%, rgba(126, 247, 199, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(7, 20, 34, 0.28), rgba(7, 20, 34, 0));
}

.hero-slider {
  width: 100%;
  min-height: calc(100svh - 73px);
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: calc(100svh - 73px);
  overflow: hidden;
}

.hero-slide.is-active {
  display: flex;
}

.hero-slide-grid {
  position: relative;
  z-index: 4;
  min-height: calc(100svh - 73px);
  display: flex;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 73px);
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 28%, rgba(125, 213, 255, 0.22), transparent 32%),
    radial-gradient(circle at 38% 70%, rgba(126, 247, 199, 0.12), transparent 34%),
    linear-gradient(135deg, #06111d 0%, #071827 48%, #09243a 100%);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 73px);
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  z-index: 1;
}

.hero-media img[src=""],
.hero-media img:not([src]) {
  display: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 14, 24, 0.92) 0%, rgba(4, 14, 24, 0.76) 35%, rgba(4, 14, 24, 0.34) 68%, rgba(4, 14, 24, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 14, 24, 0.18) 0%, rgba(4, 14, 24, 0.48) 100%);
}

.hero-media-placeholder {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(620px, 100%);
  padding: 32px 0 68px;
}

.hero-content h1,
.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 5.2vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.068em;
  text-shadow: 0 0 24px rgba(125, 213, 255, 0.14);
}

.hero-content p,
.hero p {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(233, 245, 255, 0.82);
  font-size: clamp(1.02rem, 1.65vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125, 213, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(240, 251, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero-dots {
  position: absolute;
  left: max(16px, calc((100vw - 1160px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 8;
}

.hero-dot {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(240, 251, 255, 0.28);
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-dot.is-active {
  width: 44px;
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  box-shadow: 0 0 16px rgba(125, 213, 255, 0.36);
}

/* Cards and sections */
.trust-grid,
.card-grid,
.package-grid,
.project-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.trust-card,
.info-card,
.service-card,
.project-card,
.package-card,
.offer-card,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 24, 39, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.trust-card::before,
.info-card::before,
.service-card::before,
.project-card::before,
.package-card::before,
.contact-card::before,
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125, 213, 255, 0.06), transparent 32%);
  pointer-events: none;
}

.trust-card,
.info-card {
  padding: 24px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(125, 213, 255, 0.08);
  color: var(--emerald);
  border: 1px solid rgba(125, 213, 255, 0.18);
  box-shadow: var(--glow-cyan);
  font-weight: 900;
}

.trust-card h3,
.info-card h3,
.service-card h3,
.project-card h3,
.package-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.trust-card p,
.info-card p,
.service-card p,
.project-card p,
.package-card p {
  margin: 0;
  color: var(--text-soft);
}

.service-card,
.project-card,
.package-card {
  padding: 26px;
}

.service-art,
.project-art {
  display: grid;
  place-items: center;
  height: 154px;
  margin-bottom: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 20%, rgba(126, 247, 199, 0.14), transparent 32%),
    radial-gradient(circle at 80% 22%, rgba(125, 213, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(11, 31, 49, 0.92), rgba(11, 31, 49, 0.68));
  border: 1px solid rgba(125, 213, 255, 0.14);
  color: var(--text);
  font-size: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.service-card .btn,
.project-card .btn,
.package-card .btn {
  margin-top: 20px;
}

.package-card.featured {
  border-color: rgba(126, 247, 199, 0.28);
  box-shadow: var(--shadow), var(--glow-emerald);
}

.price {
  margin: 14px 0 12px;
  color: var(--emerald);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.offer-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border-color: rgba(255, 180, 100, 0.18);
  background:
    radial-gradient(circle at right top, rgba(255, 180, 100, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(9, 28, 45, 0.86), rgba(7, 20, 34, 0.92));
}

.offer-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.offer-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.offer-price {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255, 180, 100, 0.22);
  box-shadow: 0 0 24px rgba(255, 180, 100, 0.08);
  font-weight: 900;
}

.contact-card {
  padding: 26px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.input-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  border: 1px solid rgba(125, 213, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 15px;
  color: var(--text);
  font: inherit;
  outline: none;
  backdrop-filter: blur(8px);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: rgba(126, 247, 199, 0.4);
  box-shadow: 0 0 0 4px rgba(126, 247, 199, 0.08);
}

.input-group textarea {
  min-height: 130px;
  resize: vertical;
}

::placeholder {
  color: rgba(219, 240, 250, 0.42);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(125, 213, 255, 0.12);
  background: rgba(4, 14, 24, 0.7);
  color: rgba(240, 251, 255, 0.72);
}

.footer-brand {
  color: var(--text);
  font-weight: 950;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(240, 251, 255, 0.82);
}

@media (min-width: 760px) {
  .nav-links,
  .header-cta {
    display: flex;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid,
  .service-grid,
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (max-width: 759px) {
  .section {
    padding: 62px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-slider,
  .hero-slide,
  .hero-slide-grid {
    min-height: calc(100svh - 73px);
  }

  .hero-slide-grid {
    align-items: flex-end;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(4, 14, 24, 0.14) 0%, rgba(4, 14, 24, 0.54) 42%, rgba(4, 14, 24, 0.92) 100%),
      linear-gradient(90deg, rgba(4, 14, 24, 0.62), rgba(4, 14, 24, 0.14));
  }

  .hero-content {
    padding: 0 0 70px;
  }

  .hero-content h1,
  .hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.058em;
  }

  .hero-content p,
  .hero p {
    font-size: 1rem;
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-badges {
    display: none;
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
  }
}

@media (max-height: 680px) and (min-width: 760px) {
  .hero-content h1,
  .hero h1 {
    font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  }

  .hero-content p,
  .hero p {
    font-size: 1rem;
  }

  .hero-badges {
    display: none;
  }
}
/* Hero Layout Tuning v5 */
.hero,
.hero-slider,
.hero-slide,
.hero-slide-grid,
.hero-media,
.hero-media img {
  min-height: calc(88svh - 73px);
}

.hero-slide-grid {
  width: 100%;
  max-width: none;
  padding-left: max(32px, calc((100vw - 1160px) / 2));
  padding-right: max(32px, calc((100vw - 1160px) / 2));
  align-items: flex-start;
}

.hero-content {
  padding-top: clamp(54px, 8vh, 86px);
  padding-bottom: 80px;
}

.hero-content h1,
.hero h1 {
  font-size: clamp(2.25rem, 4.6vw, 4.15rem);
  line-height: 1.02;
  max-width: 620px;
}

.hero-content p,
.hero p {
  max-width: 580px;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.hero-media {
  left: 0;
  right: 0;
  width: 100vw;
}

.hero-dots {
  bottom: 24px;
  left: max(32px, calc((100vw - 1160px) / 2));
}

@media (max-width: 759px) {
  .hero,
  .hero-slider,
  .hero-slide,
  .hero-slide-grid,
  .hero-media,
  .hero-media img {
    min-height: calc(84svh - 73px);
  }

  .hero-slide-grid {
    align-items: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    padding-top: 42px;
    padding-bottom: 74px;
  }

  .hero-content h1,
  .hero h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-content p,
  .hero p {
    font-size: 0.98rem;
  }

  .hero-dots {
    left: 18px;
    transform: none;
    bottom: 20px;
  }
}
/* Announcement Overlay v1 - transparent over hero */
.hero-announcement {
  position: absolute;
  left: max(18px, calc((100vw - 1160px) / 2));
  right: max(18px, calc((100vw - 1160px) / 2));
  top: 18px;
  z-index: 9;
  pointer-events: auto;
}

.hero-announcement-track {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid rgba(125, 213, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 14, 24, 0.34);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.hero-announcement-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(126, 247, 199, 0.95), rgba(125, 213, 255, 0.88));
  color: #032036;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-announcement-window {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.hero-announcement-item {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(244, 251, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
}

.hero-announcement-item.is-active {
  display: flex;
}

.hero-announcement-item a {
  flex: 0 0 auto;
  color: var(--emerald);
  font-weight: 900;
}

@media (max-width: 759px) {
  .hero-announcement {
    left: 18px;
    right: 18px;
    top: 14px;
  }

  .hero-announcement-track {
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 22px;
  }

  .hero-announcement-label {
    display: none;
  }

  .hero-announcement-item {
    font-size: 0.84rem;
    gap: 10px;
  }

  .hero-announcement-item span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-announcement-item a {
    display: none;
  }
}
/* Language Switch */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(125, 213, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(240, 251, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.language-switch a.is-active {
  background: linear-gradient(135deg, rgba(126, 247, 199, 0.95), rgba(125, 213, 255, 0.88));
  color: #032036;
}

.header-tools {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 760px) {
  .header-tools {
    display: flex;
  }
}

@media (max-width: 759px) {
  .language-switch {
    display: inline-flex;
  }
}


/* Final Header Language Switch */
.header-tools {
  display: none;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(125, 213, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(240, 251, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.language-switch a.is-active {
  background: linear-gradient(135deg, rgba(126, 247, 199, 0.95), rgba(125, 213, 255, 0.88));
  color: #032036;
}

@media (min-width: 760px) {
  .header-tools {
    display: flex;
  }
}

/* Final Announcement Marquee */
.hero-announcement {
  top: 12px !important;
  z-index: 20 !important;
}

.hero-announcement-track {
  min-height: 40px !important;
  padding: 7px 14px !important;
  background: rgba(4, 14, 24, 0.28) !important;
  border-color: rgba(125, 213, 255, 0.22) !important;
}

.hero-announcement-window {
  overflow: hidden !important;
}

.hero-announcement-marquee {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: announcementMarquee 28s linear infinite;
  will-change: transform;
}

.hero-announcement:hover .hero-announcement-marquee {
  animation-play-state: paused;
}

.hero-announcement-group {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 0 0 auto;
}

.hero-announcement-item,
.hero-announcement-item.is-active {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-announcement-item span::before {
  content: "✦";
  margin-right: 10px;
  color: var(--emerald);
}

@keyframes announcementMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 17px));
  }
}

/* Hero text refinement */
.hero-content h1,
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.65rem) !important;
  line-height: 1.06 !important;
  max-width: 600px !important;
}

.eyebrow {
  font-size: 0.68rem !important;
  padding: 6px 11px !important;
  letter-spacing: 0.075em !important;
}

.hero-content .eyebrow {
  font-size: 0.66rem !important;
  padding: 6px 11px !important;
}

/* Premium Trust Rotator */
.trust-section {
  padding-top: 44px;
}

.trust-shell {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(125, 213, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(126, 247, 199, 0.08), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(125, 213, 255, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.trust-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(125, 213, 255, 0.08), transparent);
  pointer-events: none;
}

.trust-shell-rotator {
  display: grid;
  gap: 34px;
  align-items: center;
}

.trust-left,
.trust-right {
  position: relative;
  z-index: 2;
}

.trust-right {
  display: grid;
  gap: 22px;
}

.trust-right .section-lead {
  margin: 0;
  max-width: 620px;
}

.trust-rotator {
  position: relative;
  min-height: 210px;
  padding-bottom: 62px;
}

.trust-rotator-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(125, 213, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 247, 199, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
  pointer-events: none;
}

.trust-rotator-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 4;
  filter: brightness(1);
  pointer-events: auto;
}

.trust-rotator-card.is-next-1,
.trust-rotator-card.is-next-2,
.trust-rotator-card.is-next-3 {
  opacity: 1;
  pointer-events: none;
}

.trust-rotator-card.is-next-1 {
  z-index: 3;
  transform: translateY(18px) scale(0.96);
  filter: brightness(0.86);
}

.trust-rotator-card.is-next-2 {
  z-index: 2;
  transform: translateY(34px) scale(0.92);
  filter: brightness(0.72);
}

.trust-rotator-card.is-next-3 {
  z-index: 1;
  transform: translateY(48px) scale(0.88);
  filter: brightness(0.58);
}

.trust-rotator-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.trust-rotator-card p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.trust-arrow {
  position: absolute;
  top: calc(100% - 46px);
  z-index: 8;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(125, 213, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.trust-arrow:hover {
  transform: translateY(-2px);
  background: rgba(126, 247, 199, 0.14);
}

.trust-arrow-left {
  right: 52px;
}

.trust-arrow-right {
  right: 4px;
}

.trust-icon,
.card-icon {
  display: none !important;
}

@media (min-width: 900px) {
  .trust-shell-rotator {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 899px) {
  .trust-rotator {
    min-height: 220px;
  }
}

@media (max-width: 759px) {
  .hero-announcement {
    top: 10px !important;
  }

  .hero-announcement-track {
    min-height: 38px !important;
    padding: 7px 11px !important;
  }

  .hero-announcement-marquee {
    gap: 26px;
    animation-duration: 24s;
  }

  .hero-announcement-group {
    gap: 26px;
  }

  .hero-announcement-item {
    font-size: 0.84rem;
  }

  .hero-announcement-item a {
    display: inline-flex !important;
  }

  .hero-content {
    padding-top: 82px !important;
  }

  .hero-content h1,
  .hero h1 {
    font-size: clamp(1.85rem, 7.6vw, 2.55rem) !important;
    line-height: 1.08 !important;
  }

  .eyebrow,
  .hero-content .eyebrow {
    font-size: 0.62rem !important;
    padding: 5px 10px !important;
  }

  .trust-section {
    padding-top: 32px;
  }

  .trust-shell {
    padding: 20px;
    border-radius: 28px;
  }

  .trust-rotator {
    min-height: 228px;
    padding-bottom: 68px;
  }

  .trust-arrow {
    top: calc(100% - 50px);
  }
}
/* Hide text on stacked trust cards */
.trust-rotator-card:not(.is-active) h3,
.trust-rotator-card:not(.is-active) p {
  opacity: 0 !important;
  visibility: hidden !important;
}

.trust-rotator-card.is-active h3,
.trust-rotator-card.is-active p {
  opacity: 1 !important;
  visibility: visible !important;
}
/* Active trust card content alignment */
.trust-rotator-card {
  align-content: center !important;
  justify-items: start !important;
  min-height: 178px;
}

.trust-rotator-card.is-active {
  padding: 34px 36px !important;
}

.trust-rotator-card.is-active h3 {
  max-width: 100%;
  margin: 0 0 12px !important;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem) !important;
  line-height: 1.12 !important;
}

.trust-rotator-card.is-active p {
  max-width: 44ch !important;
  margin: 0 !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
}

@media (max-width: 759px) {
  .trust-rotator-card.is-active {
    padding: 26px 24px !important;
  }

  .trust-rotator-card.is-active h3 {
    font-size: 1.35rem !important;
  }

  .trust-rotator-card.is-active p {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
  }
}
/* Trust stack clean fix */
.trust-rotator {
  min-height: 250px !important;
  padding-bottom: 0 !important;
  overflow: visible !important;
}

.trust-rotator-card {
  inset: auto 0 0 0 !important;
  min-height: 185px !important;
  padding: 34px 36px !important;
  align-content: center !important;
  justify-items: start !important;
  transform-origin: center bottom !important;
}

.trust-rotator-card.is-active {
  z-index: 10 !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: none !important;
}

.trust-rotator-card.is-next-1 {
  z-index: 3 !important;
  opacity: 1 !important;
  transform: translateY(18px) scale(0.94) !important;
  filter: brightness(0.68) blur(0.2px) !important;
}

.trust-rotator-card.is-next-2 {
  z-index: 2 !important;
  opacity: 0.72 !important;
  transform: translateY(34px) scale(0.88) !important;
  filter: brightness(0.54) blur(0.4px) !important;
}

.trust-rotator-card.is-next-3 {
  z-index: 1 !important;
  opacity: 0.48 !important;
  transform: translateY(48px) scale(0.82) !important;
  filter: brightness(0.42) blur(0.6px) !important;
}

.trust-rotator-card:not(.is-active) h3,
.trust-rotator-card:not(.is-active) p {
  opacity: 0 !important;
  visibility: hidden !important;
}

.trust-rotator-card.is-active h3,
.trust-rotator-card.is-active p {
  opacity: 1 !important;
  visibility: visible !important;
}

.trust-rotator-card.is-active h3 {
  margin: 0 0 12px !important;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem) !important;
  line-height: 1.15 !important;
}

.trust-rotator-card.is-active p {
  max-width: 42ch !important;
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

.trust-arrow {
  top: auto !important;
  bottom: 26px !important;
}

.trust-arrow-left {
  right: 70px !important;
}

.trust-arrow-right {
  right: 22px !important;
}

@media (max-width: 759px) {
  .trust-rotator {
    min-height: 270px !important;
  }

  .trust-rotator-card {
    min-height: 200px !important;
    padding: 26px 24px !important;
  }

  .trust-arrow {
    bottom: 22px !important;
  }
}
/* Active trust card solid, stacked cards transparent */
.trust-rotator-card.is-active {
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 247, 199, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(33, 74, 91, 0.98), rgba(22, 51, 68, 0.98)) !important;
  border-color: rgba(125, 213, 255, 0.34) !important;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045) !important;
  backdrop-filter: none !important;
}

.trust-rotator-card.is-next-1,
.trust-rotator-card.is-next-2,
.trust-rotator-card.is-next-3 {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)) !important;
  border-color: rgba(125, 213, 255, 0.12) !important;
  box-shadow: none !important;
}

.trust-rotator-card.is-active h3,
.trust-rotator-card.is-active p {
  color: var(--text) !important;
}
/* Service Builder Section */
.service-builder-section {
  padding-top: 48px;
}

.service-builder-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.service-builder-card {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(125, 213, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 12%, rgba(126, 247, 199, 0.08), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(125, 213, 255, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.service-builder-main,
.service-builder-options {
  padding: 24px;
}

.service-builder-main {
  display: grid;
  gap: 22px;
  border-bottom: 1px solid rgba(125, 213, 255, 0.12);
}

.service-builder-kicker {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(126, 247, 199, 0.1);
  border: 1px solid rgba(126, 247, 199, 0.2);
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-builder-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.service-builder-subtitle {
  margin: 12px 0 0;
  color: rgba(244, 251, 255, 0.82);
  font-weight: 800;
}

.service-builder-description {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--text-soft);
}

.service-builder-price {
  display: grid;
  gap: 6px;
  width: fit-content;
  padding: 16px 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(126, 247, 199, 0.12), rgba(125, 213, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(125, 213, 255, 0.18);
}

.service-builder-price strong {
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-builder-price span {
  color: var(--emerald);
  font-weight: 900;
}

.service-builder-options {
  display: grid;
  gap: 18px;
}

.service-option-group {
  display: grid;
  gap: 12px;
}

.service-option-group h4 {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.service-check-list {
  display: grid;
  gap: 9px;
}

.service-check {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(125, 213, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 251, 255, 0.9);
}

.service-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #7ef7c7;
}

.service-check span {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-weight: 750;
}

.service-check small {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.service-check em {
  color: var(--emerald);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.service-check.is-locked {
  opacity: 0.82;
}

.service-qty {
  width: 64px;
  border: 1px solid rgba(125, 213, 255, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 8px 10px;
  font: inherit;
  font-weight: 800;
  outline: none;
}

.service-qty:disabled {
  opacity: 0.42;
}

.service-startup-offer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 180, 100, 0.22);
  border-radius: 20px;
  background: rgba(255, 180, 100, 0.075);
  color: rgba(244, 251, 255, 0.92);
  font-weight: 850;
}

.service-startup-offer input {
  width: 18px;
  height: 18px;
  accent-color: #ffb464;
}

.service-summary {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(126, 247, 199, 0.13), rgba(125, 213, 255, 0.09)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(126, 247, 199, 0.2);
}

.service-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-summary span {
  color: var(--text-soft);
  font-weight: 800;
}

.service-summary strong {
  color: var(--text);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.service-summary p {
  margin: 4px 0 0;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 850;
}

.service-examples {
  display: grid;
  gap: 10px;
}

.service-examples h4 {
  margin: 0;
  font-size: 0.96rem;
}

.service-examples div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-examples a {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125, 213, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan);
  font-weight: 850;
  font-size: 0.9rem;
}

.service-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (min-width: 940px) {
  .service-builder-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .service-builder-main {
    border-bottom: 0;
    border-right: 1px solid rgba(125, 213, 255, 0.12);
    padding: 30px;
  }

  .service-builder-options {
    padding: 30px;
  }
}

@media (max-width: 759px) {
  .service-builder-card h3 {
    font-size: 2.1rem;
  }

  .service-builder-main,
  .service-builder-options {
    padding: 18px;
  }

  .service-check {
    grid-template-columns: auto 1fr;
  }

  .service-check em,
  .service-qty {
    grid-column: 2;
  }

  .service-summary div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
/* Plan Overview Cards */
.plan-overview-section {
  padding-top: 48px;
}

.plan-overview-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.plan-overview-card {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 520px;
  padding: 26px;
  border: 1px solid rgba(125, 213, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 14%, rgba(126, 247, 199, 0.08), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(125, 213, 255, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.plan-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125, 213, 255, 0.06), transparent 34%);
  pointer-events: none;
}

.plan-overview-card > * {
  position: relative;
  z-index: 2;
}

.plan-overview-card.is-featured {
  border-color: rgba(126, 247, 199, 0.28);
  background:
    radial-gradient(circle at 18% 14%, rgba(126, 247, 199, 0.13), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(125, 213, 255, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    0 0 36px rgba(126, 247, 199, 0.08);
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(126, 247, 199, 0.1);
  border: 1px solid rgba(126, 247, 199, 0.22);
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-overview-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.plan-overview-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.plan-price {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(125, 213, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.plan-price strong {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.plan-price span {
  color: var(--emerald);
  font-weight: 900;
}

.plan-overview-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-overview-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(244, 251, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-overview-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 0 14px rgba(126, 247, 199, 0.28);
}

@media (min-width: 900px) {
  .plan-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .plan-overview-card {
    min-height: auto;
  }
}
/* Service Page Hero */
.service-page-hero {
  padding-top: 76px;
}

.service-page-hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.service-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.service-page-hero p {
  max-width: 740px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.service-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-page-price-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(126, 247, 199, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 14%, rgba(126, 247, 199, 0.14), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(125, 213, 255, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.service-page-price-card span {
  color: var(--emerald);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-page-price-card strong {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-page-price-card em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 950;
  font-size: 1.1rem;
}

.service-page-price-card p {
  margin: 4px 0 0;
  font-size: 0.98rem;
}

@media (min-width: 880px) {
  .service-page-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 759px) {
  .service-page-hero {
    padding-top: 54px;
  }

  .service-page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .service-page-actions .btn {
    width: 100%;
  }
}

/* Nettside Start page organization */
.service-page-hero {
  padding: 58px 0 42px !important;
}

.service-page-hero-grid {
  align-items: stretch !important;
}

.service-page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem) !important;
  max-width: 640px !important;
}

.service-page-hero p {
  max-width: 620px !important;
}

.service-page-price-card {
  align-self: center;
  max-width: 420px;
  margin-left: auto;
}

.service-builder-section {
  padding-top: 36px !important;
}

.service-builder-card {
  align-items: start;
}

.service-builder-main,
.service-builder-options {
  padding: 28px !important;
}

.service-builder-card h3 {
  font-size: clamp(2rem, 3.2vw, 3.1rem) !important;
}

.service-builder-description {
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-option-group {
  padding: 18px;
  border: 1px solid rgba(125, 213, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.service-option-group h4 {
  margin-bottom: 4px !important;
  color: rgba(244, 251, 255, 0.92);
}

.service-check-list {
  gap: 8px !important;
}

.service-check {
  min-height: 44px !important;
  padding: 10px 12px !important;
  border-radius: 16px !important;
}

.service-check span {
  font-size: 0.92rem;
}

.service-check small {
  font-size: 0.78rem !important;
}

.service-builder-options {
  position: relative;
}

.service-summary {
  position: sticky;
  top: 104px;
  z-index: 5;
  margin-top: 4px;
  border-color: rgba(126, 247, 199, 0.28) !important;
  background:
    radial-gradient(circle at 14% 14%, rgba(126, 247, 199, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(33, 74, 91, 0.94), rgba(16, 39, 55, 0.94)) !important;
}

.service-summary strong {
  font-size: 1.35rem !important;
}

.service-startup-offer {
  order: 20;
}

.service-examples {
  order: 22;
  padding: 16px;
  border: 1px solid rgba(125, 213, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.service-note {
  order: 23;
  padding: 14px 16px;
  border-left: 3px solid rgba(126, 247, 199, 0.45);
  background: rgba(126, 247, 199, 0.045);
  border-radius: 16px;
}

@media (min-width: 940px) {
  .service-builder-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr) !important;
  }

  .service-builder-main {
    border-right: 1px solid rgba(125, 213, 255, 0.12);
  }
}

@media (max-width: 939px) {
  .service-page-price-card {
    max-width: none;
    margin-left: 0;
  }

  .service-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 759px) {
  .service-page-hero {
    padding: 44px 0 26px !important;
  }

  .service-builder-main,
  .service-builder-options {
    padding: 18px !important;
  }

  .service-option-group {
    padding: 14px;
  }

  .service-builder-card h3 {
    font-size: 2rem !important;
  }
}

/* Nettside Start wide layout fix */
.service-page-hero .container,
.service-builder-section .container {
  width: min(1380px, calc(100% - 48px)) !important;
}

.service-builder-card {
  grid-template-columns: minmax(0, 1.18fr) minmax(430px, 0.82fr) !important;
  gap: 0 !important;
}

.service-builder-main,
.service-builder-options {
  padding: 34px !important;
}

.service-builder-main {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}

.service-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-builder-options .service-check-list {
  grid-template-columns: 1fr;
}

.service-page-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr) !important;
}

.service-page-price-card {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 1100px) {
  .service-builder-card,
  .service-page-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .service-check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .service-page-hero .container,
  .service-builder-section .container {
    width: min(100% - 28px, 1380px) !important;
  }

  .service-builder-main,
  .service-builder-options {
    padding: 18px !important;
  }
}