﻿/* components.css — reusable components and UI patterns */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  background: var(--accent);
  color: #06223a;
  min-width: 180px;
}

.btn.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

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

.panel {
  background: linear-gradient(180deg, rgba(18, 34, 70, 0.82), rgba(10, 20, 45, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: 24px;
}

.about-section {
  padding-top: 54px;
}

.about-section .section-title,
.about-section .section-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-section .section-title {
  max-width: 760px;
  font-size: 42px;
}

.about-section .section-text {
  max-width: 880px;
  font-size: 20px;
  line-height: 1.65;
}

.about-grid {
  max-width: 1040px;
  margin: 32px auto 0;
  gap: 18px;
}

.about-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  padding: 30px 30px 32px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(7, 21, 46, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 112px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(33, 183, 219, 0), rgba(33, 183, 219, 0.9), rgba(33, 183, 219, 0));
  opacity: 0.9;
  filter: blur(0.2px);
}

.about-panel:last-child::before {
  background: linear-gradient(90deg, rgba(85, 242, 173, 0), rgba(85, 242, 173, 0.9), rgba(85, 242, 173, 0));
}

.about-panel h3 {
  position: relative;
  margin: 0 0 20px;
  font-size: 28px;
}

.about-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.about-panel ul,
.about-panel ol {
  position: relative;
  display: grid;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.about-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #dce4f3;
  line-height: 1.45;
  text-align: left;
}

.about-panel li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(33, 183, 219, 0.12);
  color: #8de9ff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.about-panel:last-child li::before {
  background: rgba(85, 242, 173, 0.12);
  color: #9cf8ca;
}

/* cards */
.pricing-carousel {
  position: relative;
  max-width: 1080px;
  margin: 86px auto 0;
}

.cards {
  position: relative;
  display: block;
  height: 430px;
  max-width: 980px;
  margin: 0 auto;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(360px, calc(100% - 96px));
  min-height: 372px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--card-bg-top, rgba(35, 208, 165, 0.17)), var(--card-bg-bottom, rgba(18, 54, 80, 0.48)));
  border: 1px solid var(--card-border, rgba(76, 228, 180, 0.24));
  border-radius: 24px;
  padding: 24px 22px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, box-shadow 0.35s ease;
  will-change: transform, opacity;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
  opacity: var(--card-dither, 0);
  transition: opacity 0.2s ease;
}

.card.rast {
  --card-bg-top: rgba(35, 208, 165, 0.17);
  --card-bg-bottom: rgba(18, 54, 80, 0.48);
  --card-border: rgba(117, 253, 197, 0.45);
  --card-bullet-start: rgba(85, 242, 173, 0.98);
  --card-bullet-end: rgba(35, 208, 165, 0.74);
  --card-bullet-ring: rgba(85, 242, 173, 0.07);
  border-color: rgba(117, 253, 197, 0.45);
  box-shadow: 0 20px 44px rgba(14, 43, 62, 0.38);
}

.card.start {
  --card-bg-top: rgba(45, 216, 255, 0.34);
  --card-bg-bottom: rgba(18, 54, 80, 0.48);
  --card-border: rgba(109, 234, 255, 0.55);
  --card-bullet-start: rgba(109, 234, 255, 1);
  --card-bullet-end: rgba(45, 216, 255, 1);
  --card-bullet-ring: rgba(109, 234, 255, 0.1);
}

.card.top {
  --card-bg-top: rgba(255, 88, 88, 0.28);
  --card-bg-bottom: rgba(118, 34, 72, 0.54);
  --card-border: rgba(255, 129, 129, 0.5);
  --card-bullet-start: rgba(255, 91, 91, 1);
  --card-bullet-end: rgba(255, 91, 91, 1);
  --card-bullet-ring: rgba(255, 91, 91, 0.1);
}

.card {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform-style: preserve-3d;
}
.card.is-active.start:hover,
.card.is-active.rast:hover,
.card.is-active.top:hover {
  transform: translateX(-50%) translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}


.card.is-active {
  z-index: 3;
  opacity: 1;
  --card-dither: 0;
  transform: translateX(-50%) scale(1);
}

.card.is-prev,
.card.is-next {
  z-index: 1;
  opacity: 0.48;
  --card-dither: 0.42;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.card.is-prev {
  transform: translateX(-165%) translateZ(-230px) rotateY(-32deg) scale(0.78);
}

.card.is-next {
  transform: translateX(65%) translateZ(-230px) rotateY(32deg) scale(0.78);
}

.pricing-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pricing-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #dffbed;
  border-right: 2px solid #dffbed;
}

.pricing-arrow-prev {
  left: 0;
}

.pricing-arrow-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.pricing-arrow-next {
  right: 0;
}

.pricing-arrow-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.pricing-arrow:hover {
  background: rgba(35, 208, 165, 0.12);
  border-color: rgba(85, 242, 173, 0.34);
  transform: translateY(-50%) scale(1.04);
}

.popular {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 8px;
  background: linear-gradient(135deg, rgba(85, 242, 173, 0.95), rgba(33, 183, 219, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #06223a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 12px 24px rgba(35, 208, 165, 0.18);
}

.popular::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: rgba(6, 34, 58, 0.18);
  color: #06223a;
  font-size: 9px;
  font-weight: 900;
}

.card h3 {
  font-size: 34px;
  line-height: 1;
  margin: 0 0 8px;
  text-align: center;
}

.price {
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.card p.lead-card {
  font-size: 16px;
  text-align: center;
  color: #e6eef8;
  min-height: 0;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: #f7fbff;
}

.card li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, var(--card-bullet-start, rgba(35, 208, 165, 0.95)), var(--card-bullet-end, rgba(33, 183, 219, 0.72)));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 4px var(--card-bullet-ring, rgba(35, 208, 165, 0.06));
}

.card.rast li::before {
  background:
    linear-gradient(135deg, rgba(85, 242, 173, 0.98), rgba(35, 208, 165, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 0 4px rgba(85, 242, 173, 0.07);
}

.card.top li::before {
  background: rgba(255, 91, 91, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 4px rgba(255, 91, 91, 0.1);
}

.included {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  font-weight: 700;
  text-align: center;
  color: #dffbed;
}

.small-note {
  margin-top: 16px;
  font-size: 13px;
  color: #c4cee2;
  opacity: 0.95;
}

/* tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 15px;
}

th {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: left;
  padding: 12px;
  border: 1px solid var(--line);
}

td {
  padding: 12px;
  border: 1px solid var(--line);
  color: #e1e8f5;
  vertical-align: top;
}

tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.faq-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.faq-item h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: #dae4f3;
}

/* services */
.services-section {
  padding-top: 80px;
}

.services-section .section-title,
.services-section .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-section .section-text {
  max-width: 880px;
}

.services-carousel {
  position: relative;
  max-width: 1080px;
  margin: 70px auto 0;
}

.services-cards {
  position: relative;
  display: block;
  height: 390px;
  max-width: 980px;
  margin: 0 auto;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.service {
  position: absolute;
  top: 0;
  left: 50%;

  width: min(380px, calc(100% - 96px));
  min-height: 340px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 30px 26px;

  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    rgba(7,21,46,0.16);

  border: 1px solid rgba(255, 206, 10, 0.951);
  box-shadow: var(--shadow);
  color: #f8fafc;

  opacity: 0;
  pointer-events: none;

  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.service.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  -webkit-filter: none;
  border-color: rgba(255, 206, 10, 0.951);
  box-shadow: var(--shadow);
  transform: translateX(-50%) scale(1);
}

.service.is-prev,
.service.is-next {
  z-index: 1;
  opacity: 0.62;
  pointer-events: none;
  filter: none;
  -webkit-filter: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.026), rgba(255,255,255,0.01)),
    rgba(7,21,46,0.1);
  border-color: rgba(255, 206, 10, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.service.is-prev > *,
.service.is-next > * {
  opacity: 0.62;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.service.is-active > * {
  opacity: 1;
  filter: none;
  -webkit-filter: none;
}

.service.is-prev h4,
.service.is-next h4,
.service.is-prev .meta,
.service.is-next .meta {
  border-color: rgba(250, 204, 21, 0.14);
}

.service.is-prev .meta,
.service.is-next .meta {
  background: rgba(250, 204, 21, 0.06);
  color: rgba(255, 224, 138, 0.68);
}

.service.is-prev {
  transform: translateX(-160%) translateZ(-120px) rotateY(-35deg) scale(0.86);
}

.service.is-next {
  transform: translateX(60%) translateZ(-120px) rotateY(35deg) scale(0.86);
}

.service h4 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(250, 204, 21, 0.25);
}

.service p {
  margin: 0;
  color: #dce4f3;
  line-height: 1.65;
}

.service .meta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 204, 21, 0.25);
  padding: 10px 16px;
  border-radius: 10px;

  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.25);

  color: #ffe08a;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* knowledge / faq section */
.knowledge-section {
  padding-top: 68px;
  padding-bottom: 38px;
}

.knowledge-section .container {
  max-width: 1120px;
}

.knowledge-section .section-title,
.knowledge-section .section-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.knowledge-section .section-text {
  max-width: 920px;
}

.knowledge-section .section-title {
  margin-bottom: 18px;
}

.knowledge-section .two-col {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 22px;
  margin-top: 40px;
}

.knowledge-section .panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  padding: 30px 30px 32px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(7, 21, 46, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.deliver-section .section-title {
  margin-bottom: 18px;
}

.deliver-section .two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.deliver-section .panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px 30px 32px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(7, 21, 46, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.deliver-section .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 112px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.9;
  filter: blur(0.2px);
}

.deliver-section .panel:first-child::before {
  background: linear-gradient(90deg, rgba(33, 183, 219, 0), rgba(33, 183, 219, 0.95), rgba(33, 183, 219, 0));
}

.deliver-section .panel:last-child::before {
  background: linear-gradient(90deg, rgba(85, 242, 173, 0), rgba(85, 242, 173, 0.95), rgba(85, 242, 173, 0));
}

.deliver-section .panel h3 {
  position: relative;
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
}

.deliver-section .panel ul {
  display: grid;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.deliver-section .panel li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dce4f3;
  line-height: 1.5;
  text-align: left;
}

.deliver-section .panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 208, 165, 0.95), rgba(33, 183, 219, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 16px rgba(0, 0, 0, 0.14);
}

.deliver-section .panel:first-child li::before {
  background: linear-gradient(135deg, rgba(33, 183, 219, 0.95), rgba(35, 208, 165, 0.8));
}

.deliver-section .panel:last-child li::before {
  background: linear-gradient(135deg, rgba(85, 242, 173, 0.95), rgba(35, 208, 165, 0.8));
}

@media (max-width: 900px) {
  .deliver-section .two-col {
    grid-template-columns: 1fr;
  }

  .deliver-section .panel {
    padding: 22px;
  }

  .deliver-section .panel::before {
    width: 92px;
  }

  .deliver-section .panel h3 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.knowledge-section .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 112px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(33, 183, 219, 0), rgba(33, 183, 219, 0.9), rgba(33, 183, 219, 0));
  opacity: 0.9;
  filter: blur(0.2px);
}

.knowledge-section .panel:last-child::before {
  background: linear-gradient(90deg, rgba(85, 242, 173, 0), rgba(85, 242, 173, 0.9), rgba(85, 242, 173, 0));
}

.knowledge-section .panel h3 {
  position: relative;
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
}

.knowledge-section table {
  margin-top: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.knowledge-section th {
  background: linear-gradient(90deg, rgba(33, 183, 219, 0.16), rgba(33, 183, 219, 0.34), rgba(33, 183, 219, 0.16));
  color: #f8fbff;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}

.knowledge-section td {
  font-size: 17px;
  line-height: 1.55;
  color: #e3eaf8;
}

.knowledge-section td:first-child {
  font-weight: 700;
  color: #fff;
}

.knowledge-section tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

.knowledge-section .faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.knowledge-section .faq-item {
  padding: 20px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.knowledge-section .faq-item h4 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
}

.knowledge-section .faq-item p {
  color: #d6e0f1;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .knowledge-section .two-col,
  .knowledge-section .faq {
    grid-template-columns: 1fr;
  }

  .knowledge-section .panel {
    padding: 22px;
  }

  .knowledge-section .panel::before {
    width: 92px;
  }

  .knowledge-section td:first-child {
    text-align: center;
    vertical-align: middle;
  }
}

/* campaign budget section */
.budget-section {
  padding-top: 70px;
}

.budget-section .section-title,
.budget-section .section-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.budget-section .section-text {
  max-width: 960px;
}

.budget-section .two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.budget-section .budget-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px 30px 32px;
  border-radius: 18px;
  text-align: center;
}

.budget-section .budget-card p {
  margin-left: auto;
  margin-right: auto;
}

.budget-section .budget-card-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
}

.budget-section .budget-card-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.budget-section .budget-card-icon {
  content: "";
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.budget-section .budget-card-subtitle {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #c9d6ea;
}

.budget-section .budget-card table {
  margin-left: auto;
  margin-right: auto;
  min-width: min(100%, 520px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.budget-section .budget-card th,
.budget-section .budget-card td {
  text-align: center;
}

.budget-section .meta-card {
  border-color: rgba(33, 183, 219, 0.22);
  background:
    linear-gradient(180deg, rgba(33, 183, 219, 0.09), rgba(33, 183, 219, 0.03)),
    rgba(7, 21, 46, 0.16);
}

.budget-section .meta-card::before {
  background: linear-gradient(90deg, rgba(33, 183, 219, 0), rgba(33, 183, 219, 0.95), rgba(33, 183, 219, 0));
}

.budget-section .meta-card .budget-card-icon {
  background-image: url("../assets/meta.svg");
  filter: brightness(0) invert(1);
}

.budget-section .meta-card table {
  background: rgba(33, 183, 219, 0.03);
}

.budget-section .meta-card th {
  background: linear-gradient(90deg, rgba(33, 183, 219, 0.16), rgba(33, 183, 219, 0.34), rgba(33, 183, 219, 0.16));
}

.budget-section .google-card {
  border-color: rgba(234, 67, 53, 0.24);
  background:
    linear-gradient(180deg, rgba(234, 67, 53, 0.12), rgba(234, 67, 53, 0.06)),
    rgba(7, 21, 46, 0.16);
}

.budget-section .google-card::before {
  background: linear-gradient(90deg, rgba(234, 67, 53, 0), rgba(234, 67, 53, 0.95), rgba(234, 67, 53, 0));
}

.budget-section .google-card .budget-card-icon {
  background-image: url("../assets/googleads.svg");
  filter: brightness(0) invert(1);
}

.budget-section .google-card table {
  background: rgba(234, 67, 53, 0.03);
}

.budget-section .google-card th {
  background: linear-gradient(90deg, rgba(234, 67, 53, 0.16), rgba(234, 67, 53, 0.34), rgba(234, 67, 53, 0.16));
}

.budget-section .budget-card .small-note {
  max-width: 620px;
}

@media (max-width: 900px) {
  .budget-section .two-col {
    grid-template-columns: 1fr;
  }

  .budget-section .budget-card {
    padding: 22px;
  }

  .budget-section .budget-card-title {
    font-size: 24px;
  }

  .budget-section .budget-card-subtitle {
    font-size: 14px;
  }

  .budget-section .budget-card table {
    min-width: 0;
  }
}

/* contact */
.contact-cta {
  margin-top: 26px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(35, 208, 165, 0.22), rgba(33, 183, 219, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.contact-cta h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.contact-pill {
  padding: 10px 16px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--accent);

  border-radius: 12px;

  color: #dce4f3;
}

.contact-pill::after {
  content: "";
  position: absolute;

  left: 12px;
  right: 12px;
  bottom: 0;

  height: 2px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent2)
  );
}

.contact-cta {
  position: relative;
  overflow: hidden;

  max-width: 1040px;
  margin: 26px auto 0;

  padding: 30px 30px 32px;

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(7, 21, 46, 0.16);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;

  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 112px;
  height: 4px;

  border-radius: 999px;
  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    rgba(33, 183, 219, 0),
    rgba(33, 183, 219, 0.9),
    rgba(33, 183, 219, 0)
  );

  opacity: 0.9;
}

.contact-row {
  justify-content: center;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 22px auto 0;
  padding: 30px 30px 32px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(7, 21, 46, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 112px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(85, 242, 173, 0),
    rgba(85, 242, 173, 0.9),
    rgba(85, 242, 173, 0)
  );
}

.contact-form-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.contact-form-card p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #e6eef8;
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.custom-select-trigger {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  outline: none;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 42px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.custom-select-trigger::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.custom-select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.075);
}

.custom-select-trigger.is-placeholder {
  color: rgba(184, 194, 217, 0.68);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(5, 16, 36, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 11px 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.custom-select-option::before {
  content: "";
  flex: 0 0 auto;
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}

.custom-select-option span {
  line-height: 1.25;
}

.custom-select-option-empty {
  color: rgba(184, 194, 217, 0.68);
}

.custom-select-option-empty::before {
  content: none;
}

.custom-select-option:hover,
.custom-select-option:focus {
  background: rgba(85, 242, 173, 0.1);
  outline: none;
}

.custom-select-option.is-selected {
  background: rgba(35, 208, 165, 0.14);
  color: #ffffff;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(184, 194, 217, 0.68);
}

.form-field input:focus,
.custom-select-trigger:focus,
.form-field textarea:focus {
  border-color: rgba(85, 242, 173, 0.48);
  box-shadow: 0 0 0 4px rgba(85, 242, 173, 0.08);
}

.contact-form-submit {
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.char-counter {
  position: relative;
  right: 14px;   /* left from the edge */
  top: 8px;     /* lower */
  margin-left: auto;
  font-size: 10px;
  color: rgba(184, 194, 217, 0.5);
}

@media (max-width: 700px) {
  .contact-form-card {
    padding: 22px;
  }

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

.form-status {
  margin-top: 16px;
  min-height: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  color: #5be28d;
}

.form-status.error {
  color: #ff6b6b;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.value-block {
  opacity: 0;
  transform: translateY(80px) scale(0.98);
}

.value-block.is-visible {
  animation: valueBlockIn 1.2s cubic-bezier(.44,1,.66,1) forwards;
}

.value-block.is-visible:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes valueBlockIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .value-block {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
