:root {
  --navy: #0d1b2a;
  --navy-light: #1b2838;
  --orange: #e85d04;
  --orange-hover: #dc2f02;
  --orange-light: #fff4ed;
  --bg-light: #f8f9fb;
  --text-muted: #6b7280;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 27, 42, 0.12);
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

/* ===== Navbar ===== */
.navbar-ypage {
  background: rgba(248, 249, 251, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}

.navbar-ypage.scrolled {
  box-shadow: var(--shadow);
}

.navbar-brand-ypage {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 32px;
}

.logo-img--footer {
  height: 28px;
}

@media (min-width: 768px) {
  .logo-img {
    height: 36px;
  }

  .logo-img--footer {
    height: 32px;
  }
}

.footer-logo {
  line-height: 0;
}

.nav-link-ypage {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition);
}

.nav-link-ypage:hover {
  color: var(--orange) !important;
}

.btn-cta {
  background: var(--orange);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-cta:hover {
  background: var(--orange-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-cta-outline {
  background: transparent;
  color: var(--orange) !important;
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cta-outline:hover {
  background: var(--orange);
  color: #fff !important;
}

.navbar-toggler-ypage {
  border: none;
  padding: 0.4rem;
}

.navbar-toggler-ypage:focus {
  box-shadow: none;
}

/* ===== Sections ===== */
.section-light {
  background: var(--bg-light);
  padding: 5rem 0;
}

.section-white {
  background: #fff;
  padding: 5rem 0;
}

.section-dark {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Hero ===== */
.hero-section {
  background: var(--bg-light);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(13, 27, 42, 0.35);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.img-placeholder i {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* ===== Why YPage ===== */
.why-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.section-white#pochemu .why-intro {
  color: var(--text-muted);
}

.why-compare-btn {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.section-white#pochemu .why-compare-btn {
  border-color: var(--orange);
  color: var(--orange) !important;
}

.why-compare-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy) !important;
}

.section-white#pochemu .why-compare-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff !important;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: background var(--transition), transform var(--transition);
}

.section-white#pochemu .feature-card {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.section-white#pochemu .feature-card:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.section-white#pochemu .feature-card p {
  color: var(--text-muted);
}

/* ===== Feature blocks (alternating) ===== */
.feature-block-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.feature-block-img img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.section-dark .feature-list li {
  color: rgba(255, 255, 255, 0.8);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ===== Advantages carousel ===== */
.advantages-section {
  padding-bottom: 4rem;
}

.advantages-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.advantages-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(13, 27, 42, 0.12);
  background: #fff;
  color: var(--text-muted);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.advantages-tab i {
  font-size: 1rem;
  color: var(--orange);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.advantages-tab:hover {
  border-color: rgba(232, 93, 4, 0.35);
  color: var(--navy);
}

.advantages-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.advantages-tab.active i {
  color: #fff;
  opacity: 1;
}

.section-dark.advantages-section .advantages-tab {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.section-dark.advantages-section .advantages-tab:hover {
  border-color: rgba(232, 93, 4, 0.5);
  color: #fff;
}

.section-dark.advantages-section .advantages-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.section-dark.advantages-section .advantages-control {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.section-dark.advantages-section .advantages-control:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.section-dark.advantages-section .img-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.advantages-carousel {
  position: relative;
  padding: 0 2.75rem;
}

.advantages-carousel .carousel-inner {
  overflow: hidden;
}

.advantages-slide-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.advantages-control {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.15);
  box-shadow: var(--shadow);
  color: var(--navy);
  transition: opacity var(--transition), visibility var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.advantages-carousel:hover .advantages-control,
.advantages-carousel:focus-within .advantages-control {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.advantages-control:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.advantages-control i {
  font-size: 1.35rem;
  line-height: 1;
  color: currentColor;
}

.carousel-control-prev.advantages-control {
  left: 0;
}

.carousel-control-next.advantages-control {
  right: 0;
}

.advantages-control::after {
  display: none;
}

@media (min-width: 768px) {
  .advantages-carousel .advantages-control {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 767.98px) {
  .advantages-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    margin-bottom: 2rem;
  }

  .advantages-tabs::-webkit-scrollbar {
    display: none;
  }

  .advantages-tab {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
  }

  .advantages-carousel {
    padding: 0;
  }

  .advantages-control {
    display: none;
  }

  .advantages-carousel .feature-block-img {
    margin-top: 0;
  }
}

/* ===== Pricing ===== */
.pricing-section {
  padding: 5rem 0;
}

.pricing-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  margin-bottom: 3rem;
}

.pricing-toggle button {
  border: none;
  background: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}

.pricing-toggle button.active {
  background: var(--navy);
  color: #fff;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--orange);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pricing-price span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-sites {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0.75rem 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  padding-top: 1.25rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.pricing-features li.is-inactive {
  color: #b0b8c4;
}

.pricing-features li > .ti-check {
  color: var(--orange);
  flex-shrink: 0;
  font-size: 1rem;
}

.pricing-features li > .ti-minus {
  color: #d1d5db;
  flex-shrink: 0;
  font-size: 1rem;
}

.pricing-features .feat-label {
  flex: 1;
  line-height: 1.4;
}

.pricing-inherits {
  display: none;
}

.pricing-sites {
  display: none;
}

.feat-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding: 0;
  cursor: help;
  color: #94a3b8;
  transition: color var(--transition);
}

.feat-tip:hover,
.feat-tip:focus {
  color: var(--orange);
  outline: none;
}

.feat-tip .ti-help {
  font-size: 0.95rem;
}

.feat-tip__text {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  z-index: 20;
  width: max-content;
  max-width: 240px;
  padding: 0.55rem 0.75rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.feat-tip__text::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 6px;
  border: 5px solid transparent;
  border-top-color: var(--navy);
}

.feat-tip:hover .feat-tip__text,
.feat-tip:focus .feat-tip__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ===== Compare table ===== */
.compare-section {
  padding: 5rem 0;
}

.section-dark.compare-section .compare-legend {
  color: rgba(255, 255, 255, 0.7);
}

.compare-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.compare-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.compare-legend i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.compare-legend .leg-good { background: #d1fae5; border: 1px solid #6ee7b7; }
.compare-legend .leg-partial { background: #fef3c7; border: 1px solid #fcd34d; }
.compare-legend .leg-bad { background: #fee2e2; border: 1px solid #fca5a5; }

.compare-table-wrap {
  overflow: visible;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: transparent;
  border: none;
}

.compare-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
}

.compare-table thead th {
  padding: 1rem 1.1rem;
  font-weight: 700;
  text-align: center;
  background: var(--navy);
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.compare-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius-lg) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.compare-table thead th.compare-col--ypage {
  background: linear-gradient(180deg, #0d1b2a 0%, #1a3050 100%);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.compare-table tbody th,
.compare-table tbody td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
  vertical-align: middle;
}

.compare-table tbody th {
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  background: #fff;
  width: 34%;
}

.compare-table thead th:not(:first-child),
.compare-table tbody td {
  width: 22%;
}

.compare-table tbody td {
  text-align: center;
  font-weight: 500;
  line-height: 1.45;
  position: relative;
  overflow: visible;
}

.cmp-cell {
  position: relative;
  display: block;
  min-height: 2.75rem;
  padding: 0.65rem 1.5rem 0.25rem 0.5rem;
}

.cmp-cell__text {
  display: block;
  text-align: center;
}

.cmp-cell .feat-tip--cell {
  position: absolute;
  top: 0.4rem;
  right: 0.35rem;
  z-index: 2;
}

.compare-table tbody td .feat-tip--cell .feat-tip__text {
  top: calc(100% + 6px);
  bottom: auto;
  left: auto;
  right: 0;
  transform: none;
  z-index: 1000;
}

.compare-table tbody td .feat-tip--cell .feat-tip__text::after {
  top: 0;
  right: 6px;
  left: auto;
  bottom: auto;
  transform: translateY(-100%);
  border: 5px solid transparent;
  border-bottom-color: var(--navy);
  border-top-color: transparent;
  border-right-color: transparent;
}

.compare-table tbody td .feat-tip--cell:hover .feat-tip__text,
.compare-table tbody td .feat-tip--cell:focus .feat-tip__text {
  transform: none;
}

.compare-table tbody th .feat-tip {
  display: none;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:last-child th:first-child {
  border-radius: 0 0 0 var(--radius-lg);
}

.compare-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-lg) 0;
}

.compare-table tbody td.compare-col--ypage {
  font-weight: 600;
}

.compare-criterion {
  display: inline;
  margin-right: 0.25rem;
}

.compare-table .feat-tip {
  vertical-align: middle;
}

.compare-table .feat-tip__text {
  bottom: auto;
  top: 50%;
  left: calc(100% + 10px);
  right: auto;
  transform: translateY(-50%) translateX(-4px);
  text-align: left;
  z-index: 30;
}

.compare-table .feat-tip__text::after {
  top: 50%;
  right: 100%;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--navy);
  border-top-color: transparent;
}

.compare-table .feat-tip:hover .feat-tip__text,
.compare-table .feat-tip:focus .feat-tip__text {
  transform: translateY(-50%) translateX(0);
}

.cmp-good {
  background: #ecfdf5;
  color: #047857;
}

.cmp-partial {
  background: #fffbeb;
  color: #b45309;
}

.cmp-bad {
  background: #fef2f2;
  color: #b91c1c;
}

.cmp-neutral {
  background: #f8fafc;
  color: var(--navy);
}

.cmp-meta {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.15rem;
}

@media (max-width: 767.98px) {
  .compare-section {
    padding: 3.5rem 0;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table thead th,
  .compare-table tbody th,
  .compare-table tbody td {
    padding: 0.65rem 0.5rem;
  }

  .compare-table tbody th {
    width: 38%;
  }

  .cmp-cell {
    padding: 0.55rem 1.25rem 0.2rem 0.25rem;
    min-height: 2.5rem;
  }

  .compare-table tbody td .feat-tip--cell .feat-tip__text {
    max-width: 200px;
    right: 0;
    left: auto;
    transform: none;
  }
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  transition: transform var(--transition);
  color: var(--orange);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer-ypage {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  margin-right: 1.5rem;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Modal forms ===== */
.form-ypage .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.form-ypage .form-control,
.form-ypage .form-select {
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.15);
  padding: 0.65rem 1rem;
}

.form-ypage .form-control:focus,
.form-ypage .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}

.form-success-msg {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success-msg i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

/* ===== Toast ===== */
.toast-ypage {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.toast-ypage.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .section-light,
  .section-white,
  .section-dark,
  .pricing-section,
  .hero-section {
    padding: 3.5rem 0;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2.5rem 0 3rem;
  }

  .hero-img-wrap,
  .feature-block-img {
    margin-top: 2rem;
  }
}