/* ============================================================
   ZOOLY — Stylesheet
   Mobile-first | Production-ready
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #8119EC;
  --purple-light: #F4F0FC;
  --dark: #0F0A1E;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --teal: #3EC6C6;
  --salmon: #FF7A6E;
  --yellow: #E6B84C;
  --green: #4ED1A1;
  --pink: #D96BB3;
  --bg: #fff;
  --bg2: #F8FAFC;
  --font: 'Plus Jakarta Sans', sans-serif;
}

/* === BASE === */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

/* Material Icons helper */
.mi {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 160px;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}

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

.nav-ctas {
  display: flex;
  gap: 8px;
}

.btn-ambassador {
  background: var(--purple-light);
  color: #7B32E0;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-ambassador:hover {
  background: #E8D8FF;
}

.btn-download {
  background: var(--purple);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-download:hover {
  background: #6F0FD4;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 110px 160px 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-bg-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero-bg-blob-1,
.hero-bg-blob-2 {
  display: none;
}

.hero-effect {
  position: absolute;
  width: 640px;
  height: 640px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.hero-effect--bottom-left {
  bottom: -320px;
  left: -320px;
}

.hero-effect--top-right {
  top: -320px;
  right: -320px;
}

.hero-left {
  flex: 0 0 500px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: linear-gradient(90deg, rgba(236, 148, 25, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 30px;
  padding: 7px 16px 7px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #E6B84C;
  margin-bottom: 28px;
}

.hero-badge img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(500%) hue-rotate(5deg) brightness(100%);
}

.hero h1 {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 22px;
}

.hero-h1-gradient {
  background: linear-gradient(90deg, #8119EC 0%, #C084FC 40%, #8A5FD3 60%, #8119EC 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(31, 35, 48, 0.7);
  margin-bottom: 38px;
  letter-spacing: -0.3px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 12px;
}

/* Download buttons */
.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.dl-dark {
  background: #0F0A1E;
}

.dl-light {
  background: #FAFAFA;
  border: 1px solid rgba(31, 35, 48, 0.05);
}

.dl-icon {
  width: 22px;
  height: 28px;
  flex-shrink: 0;
}

.dl-txt {
  display: flex;
  flex-direction: column;
}

.dl-txt small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-align: left;
}

.dl-txt strong {
  font-size: 14px;
  font-weight: 700;
}

.dl-dark .dl-txt small { color: rgba(255, 255, 255, 0.55); }
.dl-dark .dl-txt strong { color: #fff; }
.dl-light .dl-txt small { color: rgba(31, 35, 48, 0.55); }
.dl-light .dl-txt strong { color: var(--dark); }

/* Hero right */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 480px;
  position: relative;
  margin-right: -60px;
}

.hero-phones {
  width: 980px;
  max-width: none;
  height: auto;
  display: block;
  object-fit: scale-down;
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
}

.float-card--kat {
  top: 45%;
  left: 25%;
  background: rgba(217, 107, 179, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(217, 107, 179, 0.22), 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 92px;
  animation: floatCardKat 4.2s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px 10px;
}

.float-card--kael {
  top: 25%;
  left: 65%;
  background: rgba(129, 176, 236, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(100, 149, 237, 0.22), 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 92px;
  animation: floatCardKael 3.6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px 10px;
}

.float-card--vaccine {
  bottom: 9%;
  left: 50%;
  transform: translateX(-52%) rotate(-3deg);
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(151, 146, 158, 0.384);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 12px 22px 12px 16px;
  box-shadow: 0 8px 32px rgba(129, 25, 236, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: floatCard 3.8s ease-in-out infinite;
  width: 360px;
}

.float-card-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  overflow: hidden;
  flex-shrink: 0;
}

.float-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card--kat .float-card-avatar {
  box-shadow: 0 4px 14px rgba(217, 107, 179, 0.3);
}

.float-card--kael .float-card-avatar {
  box-shadow: 0 4px 14px rgba(100, 149, 237, 0.3);
}

.float-card-label {
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
}

.float-card--kat .float-card-label {
  background: rgba(217, 107, 179, 0.6);
  width: 70px;
}

.float-card--kael .float-card-label {
  background: rgba(100, 140, 210, 0.55);
  width: 50px;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  border-width: 0px 0.8px 0.8px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card-text-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 3px;
}

.float-card-text-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  white-space: nowrap;
}

/* === ANIMATIONS === */
@keyframes floatCard {
  0%, 100% { transform: translateX(-52%) rotate(-3deg) translateY(0px); }
  50%       { transform: translateX(-52%) rotate(-3deg) translateY(-7px); }
}

@keyframes floatCardKat {
  0%, 100% { transform: translateY(0px) rotate(-8deg); }
  50%       { transform: translateY(-8px) rotate(-8deg); }
}

@keyframes floatCardKael {
  0%, 100% { transform: translateY(0px) rotate(5deg); }
  50%       { transform: translateY(-8px) rotate(5deg); }
}

/* === SECTION SHARED === */
.sec-label {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-radius: 14px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.sec-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--dark);
}

.sec-sub {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-top: 14px;
}

.center {
  text-align: center;
}

/* === FEATURES STRIP === */
.features-strip {
  background: var(--bg2);
  padding: 80px 160px;
}

.strip-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

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

.strip-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.strip-icon .mi {
  font-size: 22px;
}

.strip-card-title {
  font-size: 27px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.strip-card-sub {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
}

.strip-card-tag {
  display: inline-block;
  margin-top: 16px;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 700;
}

/* === ORGANIZA === */
.organiza {
  background: #fff;
  padding: 96px 160px;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.org-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.org-card.hl-orange {
  background: linear-gradient(145deg, #FF8F78, #FF7A6E);
  border: none;
}

.org-card.hl-orange h3 { color: #fff; }
.org-card.hl-orange p  { color: rgba(255, 255, 255, 0.85); }

.org-card.hl-purple {
  background: var(--purple);
  border: none;
}

.org-card.hl-purple h3 { color: #fff; }
.org-card.hl-purple p  { color: rgba(255, 255, 255, 0.82); }

.org-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.org-icon .mi {
  font-size: 22px;
}

.org-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.org-card p {
  font-size: 13.5px;
  color: var(--slate-light);
  line-height: 1.7;
}

/* === MULTIPET === */
.multipet {
  background: var(--bg2);
  padding: 96px 160px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.multipet-ui {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ui-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(241, 245, 249, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ui-card-header {
  padding: 14px 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ui-card-header strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.ui-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
}

.ui-badge-purple { background: var(--purple-light); color: var(--purple); }
.ui-badge-yellow { background: rgb(253, 248, 236); color: rgb(230, 184, 76); }

.pet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 21px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pet-row:last-child {
  border-bottom: none;
}

.pet-row-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pet-row-avatar-emoji {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FEF0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pet-row-info {
  flex: 1;
}

.pet-row-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.pet-row-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.pet-row-count {
  font-size: 10.5px;
  color: var(--slate-light);
}

.pet-row-bar-track {
  height: 4px;
  background: #F1F5F9;
  border-radius: 4px;
  overflow: hidden;
}

.pet-row-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.ui-card-filtered {
  border: 1px solid rgba(129, 25, 236, 0.15);
  box-shadow: 0 4px 24px rgba(129, 25, 236, 0.08);
}

.ui-filtered-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-filtered-header-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgb(230, 184, 76);
}

.ui-filtered-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.ui-filtered-breed {
  font-size: 10.5px;
  color: var(--slate-light);
}

.filtered-stats {
  display: flex;
  gap: 8px;
  padding: 12px 21px 18px;
}

.stat-pill {
  flex: 1;
  background: var(--bg2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--slate-light);
}

.stat-pill strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2px;
}

.multipet-text {
  flex: 1;
}

.multipet-text h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--dark);
  margin: 16px 0 20px;
}

.multipet-text p {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.78;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(31, 35, 48, 0.75);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%238119EC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-top: 2px;
}

/* === HOW IT WORKS === */
.how {
  background: #fff;
  padding: 96px 160px;
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.step-card-how {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.step-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-icon-how {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-num-how {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.step-card-how h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card-how p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
}

.step-bar {
  height: 3px;
  border-radius: 2px;
  margin-top: 20px;
  width: 32px;
}

/* === DESIGN SCREENS === */
.design-sec {
  background: var(--bg2);
  padding: 96px 0 80px;
}

.design-header {
  padding: 0 160px;
  margin-bottom: 52px;
}

.screens-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 160px 20px;
  scrollbar-width: none;
}

.screens-scroll::-webkit-scrollbar {
  display: none;
}

.screen-card {
  flex: 0 0 220px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.screen-header {
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.screen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 12px;
}

.screen-row:last-of-type {
  border-bottom: none;
}

.screen-row-time {
  font-size: 10px;
  color: #94A3B8;
}

.screen-row-date {
  font-size: 9px;
  color: #94A3B8;
  width: 28px;
  flex-shrink: 0;
}

.screen-row-period {
  font-size: 10px;
  color: #94A3B8;
  width: 32px;
  flex-shrink: 0;
}

.screen-row-label-text {
  font-size: 11px;
  flex: 1;
  padding: 0 6px;
}

.screen-row-emoji {
  font-size: 12px;
}

.screen-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3EC6C6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.screen-check--empty {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E2E8F0;
  flex-shrink: 0;
}

.screen-hint {
  font-size: 10px;
  color: #CBD5E1;
  margin-top: 10px;
  line-height: 1.5;
}

.sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.design-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 11.5px;
  color: #CBD5E1;
  font-weight: 500;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #fff;
  padding: 81px 160px;
}

.testimonials-inner {
  max-width: 672px;
  margin: 0 auto;
}

.testi-track-wrapper {
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
}

.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-track.no-transition {
  transition: none;
}

.testi-stars {
  color: #FFB800;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 16px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(129, 25, 236, 0.12);
  box-shadow: 0 8px 48px rgba(129, 25, 236, 0.07);
  padding: 41px;
  position: relative;
  overflow: hidden;
  min-width: 100%;
  box-sizing: border-box;
}

.testi-card::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 128px;
  height: 128px;
  border-radius: 0 24px 0 115px;
  background: rgb(244, 240, 252);
  opacity: 0.55;
  pointer-events: none;
}

.testi-quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.testi-text {
  font-size: 17.5px;
  font-style: italic;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 1px solid rgba(129, 25, 236, 0.25);
  flex-shrink: 0;
}

.testi-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.testi-author-meta {
  font-size: 12.5px;
  color: var(--slate-light);
}

.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  user-select: none;
}

.testi-arrow:hover { transform: scale(1.08); }
.testi-arrow:active { transform: scale(0.94); }
.testi-arrow:disabled { opacity: 0.35; cursor: default; transform: none; }

.testi-arrow-prev { background: var(--bg2); color: #475569; }
.testi-arrow-next { background: var(--purple); color: #fff; }
.testi-arrow-prev:not(:disabled):hover { background: #e4e4ef; }
.testi-arrow-next:not(:disabled):hover { background: #6b0fd0; }

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 35, 48, 0.15);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, border-radius 0.3s;
}

.testi-dot:hover { background: rgba(129, 25, 236, 0.35); }

.testi-dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* === FAQ === */
.faq-sec {
  background: var(--bg2);
  padding: 96px 160px;
}

.faq-inner {
  max-width: 624px;
  margin: 48px auto 0;
}


.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--purple);
}

.faq-plus {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: var(--purple);
  color: #fff;
}

.faq-item.open .faq-q {
  color: var(--purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 160px;
  padding: 0 24px 20px;
}

/* === CTA === */
.cta-sec {
  background: #fff;
  padding: 64px 160px;
}

.cta-card {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 64px;
}

.cta-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
  pointer-events: none;
  border-radius: 0;
}

.cta-avail {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 6px 14px;
  margin-bottom: 22px;
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.12;
  max-width: 560px;
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.cta-card .cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  line-height: 1.78;
}

.cta-btns {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.cta-card-bottom {
  margin-top: 24px;
  font-size: 12.8px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* === FOOTER === */
footer {
  background: rgb(24, 16, 38);
  padding: 48px 160px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 14px;
}

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

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-btn:hover {
  background: var(--purple);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  font-size: 11.7px;
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 11.7px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  nav {
    padding: 0 40px;
  }

  .hero {
    padding: 90px 40px 60px;
    gap: 40px;
  }

  .hero-left {
    flex: 1;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-right {
    min-width: 300px;
  }

  .hero-phones {
    width: 100%;
  }

  .features-strip {
    padding: 80px 40px;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .organiza {
    padding: 80px 40px;
  }

  .org-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .multipet {
    padding: 80px 40px;
    gap: 48px;
  }

  .how {
    padding: 80px 40px;
  }

  .steps-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .design-sec {
    padding: 80px 0 60px;
  }

  .design-header {
    padding: 0 40px;
  }

  .screens-scroll {
    padding: 8px 40px 20px;
  }

  .testimonials {
    padding: 80px 40px;
  }

  .faq-sec {
    padding: 80px 40px;
  }

  .cta-sec {
    padding: 48px 40px;
  }

  .cta-card h2 {
    font-size: 38px;
  }

  footer {
    padding: 48px 40px 0;
  }

  .footer-top {
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  nav {
    padding: 0 20px;
    height: 58px;
  }

  .nav-links {
    display: none;
  }

  .btn-ambassador {
    display: none;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 90px 20px 60px;
    gap: 40px;
    text-align: center;
    align-items: center;
    min-height: auto;
  }

  .hero-left {
    flex: none;
    width: 100%;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-right {
    min-width: unset;
    width: 100%;
  }

  .hero-phones {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  /* Hide floating cards on mobile — overlapping/illegible */
  .float-card {
    display: none;
  }

  /* Hide decorative effects on mobile */
  .hero-effect {
    display: none;
  }

  /* Features strip */
  .features-strip {
    padding: 64px 20px;
  }

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

  .strip-title {
    font-size: 26px;
  }

  /* Organiza */
  .organiza {
    padding: 64px 20px;
  }

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

  /* Multipet */
  .multipet {
    flex-direction: column;
    padding: 64px 20px;
    gap: 40px;
  }

  .multipet-ui {
    width: 100%;
  }

  .multipet-text {
    width: 100%;
  }

  .multipet-text h2 {
    font-size: 30px;
  }

  /* How it works */
  .how {
    padding: 64px 20px;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

  /* Design screens */
  .design-sec {
    padding: 64px 0 48px;
  }

  .design-header {
    padding: 0 20px;
  }

  .screens-scroll {
    padding: 8px 20px 20px;
  }

  /* Testimonials */
  .testimonials {
    padding: 64px 20px;
  }

  .testi-card {
    padding: 28px 20px;
  }

  .testi-text {
    font-size: 15.5px;
  }

  /* FAQ */
  .faq-sec {
    padding: 64px 20px;
  }

  /* CTA */
  .cta-sec {
    padding: 48px 20px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .cta-card h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  /* Footer */
  footer {
    padding: 48px 20px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Section titles */
  .sec-title {
    font-size: 30px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .dl-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .dl-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .cta-card h2 {
    font-size: 26px;
  }

  .testi-card {
    padding: 24px 16px;
  }

  .testi-text {
    font-size: 14.5px;
  }

  .filtered-stats {
    flex-direction: column;
  }

  .sec-title {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .multipet-text h2 {
    font-size: 26px;
  }

  .strip-card-title {
    font-size: 22px;
  }
}
