@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");

:root {
  --primary: #0d47a1;
  --primary-soft: #1967d2;
  --primary-light: rgba(13, 71, 161, 0.08);
  --primary-border: rgba(13, 71, 161, 0.12);
  --primary-border-hover: rgba(13, 71, 161, 0.3);
  --primary-glow: rgba(13, 71, 161, 0.15);
  --bg-light: #f0f8ff;
  --bg-soft: #f6fbff;
  --bg-gradient: linear-gradient(180deg, #f0f8ff 0%, #f6fbff 100%);
  --text-dark: #0f172a;
  --text-muted: #334155;
  --text-soft: #475569;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(13, 71, 161, 0.06);
  --shadow-md: 0 10px 30px rgba(13, 71, 161, 0.1);
  --shadow-lg: 0 15px 40px rgba(13, 71, 161, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 70px;
  --font: "Outfit", sans-serif;
  --transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--bg-gradient);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  color: inherit;
  background: transparent;
}

/* ========== CONTAINER ========== */
.bob-wrapper {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

.bob-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .bob-container {
    padding: 0 16px;
  }
}

/* ========== SECTION ========== */
.bob-section {
  padding: 15px 0;
  position: relative;
}

@media (max-width: 992px) {
  .bob-section {
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .bob-section {
    padding: 10px 0;
  }
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

@media (max-width: 992px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }
}

.bob-thin {
  font-weight: 300;
  color: var(--text-dark);
}

.bob-accent {
  color: var(--primary);
}

.bob-center {
  text-align: center;
}

.bob-muted {
  color: var(--text-soft);
}

.bob-text-sm {
  font-size: 14px;
}

.bob-text-lg {
  font-size: 17px;
  line-height: 1.7;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ========== SERVICE TAG ========== */
.bob-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  transition: var(--transition);
}

.bob-tag:hover {
  background: var(--primary-glow);
}

/* ========== LOGO ROW ========== */
.bob-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.bob-logo-sep {
  width: 1px;
  height: 32px;
  background: rgba(13, 71, 161, 0.15);
}

@media (max-width: 576px) {
  .bob-logos {
    gap: 14px;
  }

  .bob-logo-sep {
    height: 26px;
  }
}

/* ========== CARDS ========== */
.bob-card {
  background: var(--white);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.bob-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-soft) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.bob-card:hover {
  border-color: var(--primary-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bob-card:hover::before {
  transform: scaleX(1);
}

@media (max-width: 992px) {
  .bob-card {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .bob-card {
    padding: 24px 18px;
  }
}

/* Card with no hover lift */
.bob-card-static {
  background: var(--white);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
  height: 100%;
}

@media (max-width: 992px) {
  .bob-card-static {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .bob-card-static {
    padding: 24px 18px;
  }
}

/* ========== BUTTONS ========== */
.bob-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 500;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0 20px 0 50px;
  height: 60px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  gap: 10px;
}

.bob-btn i {
  font-size: 14px;
  transition: var(--transition);
}

.bob-btn:hover {
  transform: scale(1.015);
  filter: brightness(110%);
  color: var(--white);
}

.bob-btn:hover i {
  transform: translateX(4px);
}

.bob-btn-block {
  width: 100%;
  padding: 0 30px;
}

.bob-btn-sm {
  height: 48px;
  padding: 0 30px;
  font-size: 11px;
}

@media (max-width: 768px) {
  .bob-btn {
    height: 52px;
    padding: 0 16px 0 36px;
  }
}

/* Secondary button */
.bob-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.bob-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.015);
  filter: brightness(100%);
}

/* ========== SLOT COUNTER ========== */
.bob-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  max-width: 260px;
  margin: 0 auto;
}

.bob-counter-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  color: var(--text-soft);
}

.bob-counter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.15);
}

.bob-counter-btn i {
  pointer-events: none;
}

.bob-counter-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 70px;
  text-align: center;
  line-height: 1;
}

@media (max-width: 576px) {
  .bob-counter {
    gap: 16px;
    padding: 12px 18px;
    max-width: 220px;
  }

  .bob-counter-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .bob-counter-value {
    font-size: 34px;
    min-width: 56px;
  }
}

/* ========== PRICE BREAKDOWN ========== */
.bob-price-box {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 340px;
  margin: 0 auto;
}

.bob-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}

.bob-price-label {
  color: var(--text-soft);
  font-weight: 500;
}

.bob-price-value {
  color: var(--text-dark);
  font-weight: 600;
}

.bob-price-divider {
  border: none;
  border-top: 1px dashed rgba(13, 71, 161, 0.2);
  margin: 10px 0;
}

.bob-price-total {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

@media (max-width: 576px) {
  .bob-price-box {
    padding: 16px;
  }
}

/* ========== COMPLIANCE LIST ========== */
.bob-compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bob-compliance-item {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.bob-compliance-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
}

.bob-compliance-item:last-child {
  margin-bottom: 0;
}

.bob-url-box {
  margin-top: 10px;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-sm);
  font-family: "Courier New", monospace;
  font-size: 11px;
  word-break: break-all;
  color: var(--text-dark);
}

/* ========== SECTION HEADER ========== */
.bob-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.bob-section-title h2 {
  margin-bottom: 12px;
}

.bob-section-title h2 .bob-thin {
  display: block;
}

.bob-section-title p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
}

@media (max-width: 768px) {
  .bob-section-title {
    margin-bottom: 36px;
  }
}

/* ========== GRID HELPERS ========== */
.bob-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.bob-row>.bob-col {
  flex: 1 1 calc(50% - 15px);
  min-width: 0;
}

@media (max-width: 992px) {
  .bob-row {
    gap: 24px;
  }

  .bob-row>.bob-col {
    flex: 1 1 100%;
  }
}

.bob-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .bob-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bob-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ========== POLICY LINKS FOOTER ========== */
.bob-footer {
  text-align: center;
  padding: 40px 0 25px;
  /* margin-top: 40px; */
}

.bob-footer-links {
  display: flex;
  justify-content: center;
  gap: 8px 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bob-footer-link {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.bob-footer-link:hover {
  color: var(--primary);
}

.bob-footer-sep {
  color: var(--primary-border);
  user-select: none;
}

.bob-footer-copy {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
}

/* ========== BACK LINK ========== */
.bob-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: var(--transition);
}

.bob-back:hover {
  color: var(--primary);
}

/* ========== CONTACT GRID ========== */
.bob-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .bob-contact-grid {
    grid-template-columns: 1fr;
  }
}

.bob-contact-box {
  background: var(--bg-light);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  padding: 24px;
}

.bob-contact-box h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.bob-contact-box p {
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.5;
}

.bob-contact-highlight {
  color: var(--text-dark);
  font-weight: 600;
}

/* ========== ALERT ========== */
.bob-alert {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bob-alert-icon {
  font-size: 20px;
  color: #b45309;
  flex-shrink: 0;
  margin-top: 2px;
}

.bob-alert p {
  font-size: 13px;
  font-weight: 500;
  color: #78350f;
  line-height: 1.5;
  margin: 0;
}

/* ========== TITLE ICON ROW ========== */
.bob-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--primary-border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.bob-title-icon {
  font-size: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.bob-title-row h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.5px;
}

/* ========== CONTENT STYLES (terms/privacy/refund) ========== */
.bob-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

.bob-content p {
  margin-bottom: 16px;
  font-size: 14px;
}

.bob-content strong {
  color: var(--text-dark);
}

.bob-content .bob-section-title-h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.bob-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.bob-content ul li {
  margin-bottom: 4px;
  font-size: 14px;
}

.bob-content a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bob-content a:hover {
  color: var(--primary-soft);
  text-decoration: none;
}

/* ========== SUCCESS PAGE ========== */
.bob-success-icon {
  font-size: 80px;
  color: #16a34a;
  margin-bottom: 24px;
  display: block;
}

@media (max-width: 576px) {
  .bob-success-icon {
    font-size: 60px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 576px) {

  .bob-card,
  .bob-card-static {
    border-radius: 12px;
  }
}

/* ========== LOGO HOVER TRANSITION ========== */
.bob-logos a img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bob-logos a:hover img {
  transform: scale(1.04);
}

/* ========== POLICY SIDEBAR LAYOUT ========== */
.bob-policy-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 24px;
}

.bob-policy-sidebar {
  width: 280px;
  position: sticky;
  top: 40px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.bob-policy-sidebar h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-border);
}

.bob-policy-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bob-policy-menu-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.bob-policy-menu-link:hover,
.bob-policy-menu-link.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

.bob-policy-content-wrap {
  flex-grow: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .bob-policy-layout {
    flex-direction: column;
    gap: 30px;
  }

  .bob-policy-sidebar {
    display: none;
  }
}
