  <!-- ═══════════════════════════════════════════
       PAGE-SPECIFIC CSS (index only)
  ═══════════════════════════════════════════ -->
  /* ─────────────────────────────────────────────
     PAGE BASE
  ───────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--botry-font-sans);
    background: var(--botry-c-bg);
    color: var(--botry-c-text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 0px;
  }

  /* ── SCROLL BAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--botry-c-purple-lt); }
  ::-webkit-scrollbar-thumb { background: var(--botry-c-purple); border-radius: 3px; }

  /* ─────────────────────────────────────────────
     HERO
  ───────────────────────────────────────────── */
  .botry-hero {
    position: relative;
    min-height: calc(100svh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg,
      #faf8ff 0%,
      #f3eff9 30%,
      #ede8f7 60%,
      #f5f2fb 100%
    );
  }
  /* Animated blobs */
  .botry-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    pointer-events: none;
    animation: botry-blob-float 9s ease-in-out infinite;
  }
  .botry-hero__blob--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #c8bef5 0%, #a89de2 60%, transparent 100%);
    top: -100px; right: -80px;
    animation-delay: 0s;
  }
  .botry-hero__blob--2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #b8dfd4 0%, #8fcab8 60%, transparent 100%);
    bottom: 60px; left: -100px;
    animation-delay: -3s;
  }
  .botry-hero__blob--3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #e8c8f0 0%, transparent 70%);
    top: 40%; right: 20%;
    animation-delay: -6s;
  }
  @keyframes botry-blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(18px, -22px) scale(1.04); }
    66%       { transform: translate(-12px, 12px) scale(0.97); }
  }

  /* Dot grid texture */
  .botry-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(108,95,199,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .botry-hero__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .botry-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108,95,199,0.1);
    border: 1px solid rgba(108,95,199,0.25);
    color: var(--botry-c-purple);
    font-size: 12px;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
    animation: botry-fade-up 0.6s 0.1s both;
  }
  .botry-hero__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--botry-c-purple);
    animation: botry-pulse 2s infinite;
  }
  @keyframes botry-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
  }

  .botry-hero__h2 {
    font-family: var(--botry-font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--botry-c-text);
    margin-bottom: 1rem;
    animation: botry-fade-up 0.6s 0.2s both;
  }
  .botry-hero__h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--botry-c-purple) 0%, var(--botry-c-violet) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  .botry-hero__desc {
    font-size: 15.5px;
    color: var(--botry-c-text-md);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
    animation: botry-fade-up 0.6s 0.3s both;
  }

  .botry-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    animation: botry-fade-up 0.6s 0.4s both;
  }
  .botry-btn--primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--botry-c-purple), var(--botry-c-purple-dk));
    color: white;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(108,95,199,0.38);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .botry-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(108,95,199,0.48);
  }
  .botry-btn--ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: white;
    color: var(--botry-c-purple);
    border: 1.5px solid rgba(108,95,199,0.3);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
  }
  .botry-btn--ghost:hover {
    border-color: var(--botry-c-purple);
    background: var(--botry-c-purple-lt);
    transform: translateY(-2px);
  }

  .botry-hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    animation: botry-fade-up 0.6s 0.5s both;
  }
  .botry-hero__stat-num {
    font-family: var(--botry-font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--botry-c-purple);
    line-height: 1;
  }
  .botry-hero__stat-label {
    font-size: 12px;
    color: var(--botry-c-text-lt);
    margin-top: 2px;
  }

  /* Hero visual card */
  .botry-hero__visual {
    position: relative;
    animation: botry-fade-up 0.7s 0.35s both;
  }
  .botry-hero__card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(108,95,199,0.15), 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(108,95,199,0.1);
    transform: rotate(1.5deg);
    transition: transform 0.4s;
  }
  .botry-hero__card:hover { transform: rotate(0deg) scale(1.01); }
  .botry-hero__card-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--botry-c-purple-lt);
    color: var(--botry-c-purple);
    font-size: 11px;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
  }
  .botry-hero__card-title {
    font-family: var(--botry-font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--botry-c-text);
    margin-bottom: 0.3rem;
  }
  .botry-hero__card-sub {
    font-size: 12px;
    color: var(--botry-c-text-lt);
    margin-bottom: 1.2rem;
  }
  .botry-hero__service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .botry-hero__service-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px;
    color: var(--botry-c-text-md);
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    background: var(--botry-c-bg);
    border: 1px solid rgba(108,95,199,0.08);
    transition: background 0.2s, border-color 0.2s;
  }
  .botry-hero__service-list li:hover {
    background: var(--botry-c-purple-lt);
    border-color: rgba(108,95,199,0.2);
  }
  .botry-hero__service-list li .si-icon {
    font-size: 16px;
    width: 28px; height: 28px;
    background: white;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  }
  .botry-hero__service-list li .si-price {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--botry-c-purple);
    background: var(--botry-c-purple-lt);
    padding: 2px 8px;
    border-radius: 20px;
  }
  .botry-hero__card-float {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 0.8rem 1.1rem;
    box-shadow: 0 8px 30px rgba(108,95,199,0.18);
    border: 1px solid rgba(108,95,199,0.12);
    font-size: 12px;
    font-weight: 600;
    color: var(--botry-c-text);
    white-space: nowrap;
    animation: botry-float 4s ease-in-out infinite;
  }
  .botry-hero__card-float--since {
    bottom: -18px; left: -20px;
    color: var(--botry-c-sage);
    animation-delay: 0s;
  }
  .botry-hero__card-float--geo {
    top: -18px; right: -16px;
    color: var(--botry-c-purple);
    animation-delay: -2s;
  }
  @keyframes botry-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
  }

  @keyframes botry-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─────────────────────────────────────────────
     TRUST BAR
  ───────────────────────────────────────────── */
  .botry-trust {
    background: white;
    border-top: 1px solid rgba(108,95,199,0.1);
    border-bottom: 1px solid rgba(108,95,199,0.1);
    padding: 1.2rem 2rem;
    overflow: hidden;
  }
  .botry-trust__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .botry-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--botry-c-text-md);
    font-weight: 500;
    white-space: nowrap;
  }
  .botry-trust__item span:first-child {
    font-size: 16px;
  }

  /* ─────────────────────────────────────────────
     SECTION COMMON
  ───────────────────────────────────────────── */
  .botry-section {
    padding: 5rem 2rem;
  }
  .botry-section--alt {
    background: white;
  }
  .botry-section--dark {
    background: linear-gradient(150deg, #1e1836 0%, #2a2250 100%);
    color: white;
  }
  .botry-section__container {
    max-width: 1280px;
    margin: 0 auto;
  }
  .botry-section__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--botry-c-purple);
    background: var(--botry-c-purple-lt);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
  }
  .botry-section__h2 {
    font-family: var(--botry-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--botry-c-text);
    margin-bottom: 0.8rem;
  }
  .botry-section--dark .botry-section__h2 { color: white; }
  .botry-section__h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--botry-c-purple), var(--botry-c-violet));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  .botry-section__p {
    font-size: 15px;
    color: var(--botry-c-text-md);
    max-width: 560px;
    line-height: 1.8;
  }
  .botry-section--dark .botry-section__p { color: rgba(255,255,255,0.65); }
  .botry-section__head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  /* ─────────────────────────────────────────────
     SERVICES
  ───────────────────────────────────────────── */
  .botry-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .botry-service-card {
    background: white;
    border: 1px solid rgba(108,95,199,0.1);
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
    
  }
  .botry-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108,95,199,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .botry-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(108,95,199,0.14);
    border-color: rgba(108,95,199,0.25);
  }
  .botry-service-card:hover::before { opacity: 1; }
  .botry-service-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 1rem;
    background: var(--botry-c-purple-lt);
    flex-shrink: 0;
  }
  .botry-service-card__title {
    font-family: var(--botry-font-serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--botry-c-text);
    margin-bottom: 0.5rem;
  }
  .botry-service-card__desc {
    font-size: 13.5px;
    color: var(--botry-c-text-md);
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .botry-service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1.2rem;
  }
  .botry-service-card__tag {
    font-size: 10.5px;
    background: var(--botry-c-bg);
    color: var(--botry-c-text-md);
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(108,95,199,0.12);
    font-weight: 500;
  }
  .botry-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--botry-c-purple);
    text-decoration: none;
    transition: gap 0.2s;
    cursor: pointer;
  }
  .botry-service-card__link:hover { gap: 8px; }

  /* ─────────────────────────────────────────────
     PRICING PREVIEW
  ───────────────────────────────────────────── */
  .botry-pricing-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.2rem;
  }
  .botry-price-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 1.5rem;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
  }
  .botry-price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108,95,199,0.5);
    background: rgba(255,255,255,0.1);
  }
  .botry-price-card--featured {
    border-color: var(--botry-c-purple) !important;
    background: rgba(108,95,199,0.15) !important;
  }
  .botry-price-card__badge {
    display: inline-block;
    background: var(--botry-c-purple);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
  }
  .botry-price-card__name {
    font-family: var(--botry-font-serif);
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
  }
  .botry-price-card__price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .botry-price-card__price small {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
  }
  .botry-price-card__features {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .botry-price-card__features li {
    font-size: 12.5px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .botry-price-card__features li::before {
    content: '✓';
    color: var(--botry-c-violet);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ─────────────────────────────────────────────
     WHY US / FEATURES
  ───────────────────────────────────────────── */
  .botry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .botry-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.4rem;
    background: var(--botry-c-bg);
    border-radius: 16px;
    border: 1px solid rgba(108,95,199,0.09);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    align-items: flex-start;
  }
  .botry-feature-item:hover {
    border-color: rgba(108,95,199,0.2);
    background: white;
    transform: translateY(-3px);
  }
  .botry-feature-item__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--botry-c-purple-lt), rgba(108,95,199,0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .botry-feature-item__title {
    font-weight: 700;
    font-size: 14px;
    color: var(--botry-c-text);
    margin-bottom: 0.3rem;
  }
  .botry-feature-item__desc {
    font-size: 13px;
    color: var(--botry-c-text-md);
    line-height: 1.7;
  }

  /* ─────────────────────────────────────────────
     GEO / LOCAL AREA
  ───────────────────────────────────────────── */
  .botry-geo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .botry-geo__map-placeholder {
    background: linear-gradient(135deg, var(--botry-c-purple-lt) 0%, white 100%);
    border: 1px solid rgba(108,95,199,0.15);
    border-radius: 24px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--botry-c-purple);
    position: relative;
    overflow: hidden;
  }
  .botry-geo__map-icon { font-size: 3rem; }
  .botry-geo__map-address {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--botry-c-text);
    text-align: center;
    line-height: 1.6;
  }
  .botry-geo__area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .botry-geo__area-tag {
    font-size: 11px;
    background: rgba(108,95,199,0.1);
    color: var(--botry-c-purple);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(108,95,199,0.2);
  }
  .botry-geo__info-list {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .botry-geo__info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--botry-c-text-md);
  }
  .botry-geo__info-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--botry-c-purple-lt);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .botry-geo__info-list li strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--botry-c-text);
  }

  /* ─────────────────────────────────────────────
     CTA STRIP
  ───────────────────────────────────────────── */
  .botry-cta-strip {
    background: linear-gradient(135deg, var(--botry-c-purple) 0%, var(--botry-c-purple-dk) 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .botry-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .botry-cta-strip__title {
    font-family: var(--botry-font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }
  .botry-cta-strip__sub {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
  }
  .botry-cta-strip__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    flex-shrink: 0;
  }
  .botry-btn--white {
    display: inline-flex; align-items: center; gap: 7px;
    background: white;
    color: var(--botry-c-purple);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .botry-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  }
  .botry-btn--outline-white {
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
  }
  .botry-btn--outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
  }

  /* ─────────────────────────────────────────────
     FAQ
  ───────────────────────────────────────────── */
  .botry-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .botry-faq__item {
    background: white;
    border: 1px solid rgba(108,95,199,0.12);
    border-radius: 14px;
    overflow: hidden;
  }
  .botry-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.4rem;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--botry-c-text);
    cursor: pointer;
    gap: 1rem;
    user-select: none;
    transition: color 0.2s;
  }
  .botry-faq__q:hover { color: var(--botry-c-purple); }
  .botry-faq__q-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--botry-c-purple-lt);
    color: var(--botry-c-purple);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
    font-weight: 700;
  }
  .botry-faq__item.botry-open .botry-faq__q-icon {
    transform: rotate(45deg);
    background: var(--botry-c-purple);
    color: white;
  }
  .botry-faq__a {
    display: none;
    padding: 0 1.4rem 1.2rem;
    font-size: 13.5px;
    color: var(--botry-c-text-md);
    line-height: 1.8;
    border-top: 1px solid rgba(108,95,199,0.08);
    padding-top: 1rem;
  }
  .botry-faq__item.botry-open .botry-faq__a { display: block; }

  /* ─────────────────────────────────────────────
     RESPONSIVE
  ───────────────────────────────────────────── */
  @media (max-width: 960px) {
    .botry-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .botry-hero__desc { max-width: 100%; }
    .botry-hero__actions { justify-content: center; }
    .botry-hero__stats { justify-content: center; }
    .botry-hero__visual { display: none; }
    .botry-geo { grid-template-columns: 1fr; }
    .botry-section__head-row { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 680px) {
    .botry-section { padding: 3.5rem 1.2rem; }
    .botry-features { grid-template-columns: 1fr; }
    .botry-cta-strip { flex-direction: column; text-align: center; }
    .botry-cta-strip__actions { justify-content: center; }
    .botry-hero__stats { flex-direction: column; align-items: center; gap: 1rem; }
    .botry-pricing-preview { grid-template-columns: 1fr; }
  }