:root {
  --primary: #1e2f66;
  --secondary: #f58a1f;
  --accent: #00b7b5;
  --text: #1f2948;
  --muted: #64748b;
  --bg: #f9fbff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(30, 47, 102, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.54);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 138, 31, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(0, 183, 181, 0.2), transparent 20%),
    linear-gradient(135deg, #fdfefe 0%, #eef7ff 50%, #fef6eb 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.7;
}

body::before {
  width: 240px;
  height: 240px;
  background: rgba(245, 138, 31, 0.25);
  top: -80px;
  right: -40px;
}

body::after {
  width: 280px;
  height: 280px;
  background: rgba(0, 183, 181, 0.18);
  left: -70px;
  bottom: 100px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-shell {
  position: relative;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.glass-header,
.glass-card,
.glass-footer {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.glass-header {
  position: fixed;
  top: 0;
  z-index: 100;
  padding: .2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  width: 100%;
      background: #ffffff14;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.brand img {
  width: 200px;
  height: auto;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-icon span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--secondary);
  transform: translateY(-1px);
}

.pill-btn {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #ffb256);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(245, 138, 31, 0.24);
}

.hero-section {
  position: relative;
  padding: 5rem 0 2rem;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  z-index: 0;
}

.hero-section::before {
  width: 320px;
  height: 320px;
  background: rgba(0, 183, 181, 0.2);
  top: -100px;
  left: -80px;
}

.hero-section::after {
  width: 360px;
  height: 360px;
  background: rgba(245, 138, 31, 0.18);
  bottom: -120px;
  right: -80px;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  max-width: 620px;
}

.hero-copy-top {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
}

.hero-copy-top span {
  color: var(--secondary);
}

.hero-copy-top small {
  display: inline-block;
  margin-left: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--secondary);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

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

.hero-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.status-label {
  font-weight: 700;
  color: var(--primary);
}

.status-track {
  flex: 1;
  min-width: 180px;
  height: 14px;
  border-radius: 999px;
  background: rgba(30, 47, 102, 0.08);
  overflow: hidden;
}

.status-track span {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #ffb256);
}

.status-note {
  color: var(--muted);
  font-weight: 700;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-picture {
  position: relative;
  width: min(520px, 86%);
  aspect-ratio: 1 / 0.95;
  /* border-radius: 50% 50% 42% 42% / 50% 50% 58% 58%; */
  border-radius: 50% 50% 85% 42% / 50% 50% 95% 58%;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(30,47,102,0.18);
  border: 6px solid rgba(255,255,255,0.75);
  background: linear-gradient(135deg, rgba(0,183,181,0.08), rgba(245,138,31,0.08));
}

.hero-icon-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--primary);
  box-shadow: 0 18px 30px rgba(30, 47, 102, 0.12);
  border: 1px solid rgba(30, 47, 102, 0.08);
  font-size: 1.05rem;
}

.bubble i {
  font-size: 1.3rem;
}

.bubble-top-left {
  top: 4%;
  left: 8%;
}

.bubble-top-right {
  top: 12%;
  right: 10%;
}

.bubble-bottom-left {
  bottom: 8%;
  left: 6%;
}

.bubble-bottom-right {
  bottom: 6%;
  right: 8%;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 183, 181, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-copy h1 span {
  color: var(--secondary);
}

.hero-copy p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-card {
  margin-top: 1.6rem;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.63));
  border: 1px solid rgba(255,255,255,0.66);
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease both;
}

.card-label {
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.hero-card h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.countdown-item {
  background: rgba(30, 47, 102, 0.06);
  padding: 0.8rem;
  border-radius: 18px;
  text-align: center;
}

.countdown-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.countdown-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(30, 47, 102, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #ffb256);
  color: var(--white);
}

.btn-secondary {
  background: rgba(30, 47, 102, 0.08);
  color: var(--primary);
}

.btn-outline {
  border: 1px solid rgba(30, 47, 102, 0.16);
  color: var(--primary);
}

.hero-visual {
  position: relative;
  padding: 1rem;
}

.hero-visual img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  min-height: 360px;
  box-shadow: var(--shadow);
  animation: fadeUp 1s ease both;
}

.float-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 26px rgba(30,47,102,0.16);
  font-size: 1.35rem;
  animation: float 3s ease-in-out infinite;
}

.icon-dog { top: 8%; left: 6%; animation-delay: 0s; }
.icon-bone { top: 16%; right: 7%; animation-delay: 0.6s; }
.icon-heart { bottom: 18%; left: 4%; animation-delay: 1.2s; }
.icon-cat { bottom: 8%; right: 14%; animation-delay: 0.3s; }
.icon-bowl { top: 50%; left: -2%; animation-delay: 1.4s; }
.icon-vet { top: 44%; right: -2%; animation-delay: 0.9s; }

.section-wave {
  height: 70px;
  position: relative;
  margin-top: 1rem;
}

.section-wave::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.6' d='M0,128L120,138.7C240,149,480,171,720,160C960,149,1200,107,1320,85.3L1440,64L1440,320L0,320Z'/%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.8;
}

.section {
  padding: 2rem 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.section-heading p {
  color: var(--muted);
}

.service-grid,
.benefit-grid {
  display: grid;
  gap: 1.2rem;
}

.glass-card {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover,
.glass-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(245, 138, 31, 0.42);
  box-shadow: 0 22px 42px rgba(30,47,102,0.15);
}

.service-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.1rem 1.1rem 1.35rem;
}

.card-body h3,
.benefit-card h3,
.newsletter-card h3,
.contact-card h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card-body p,
.benefit-card p,
.newsletter-card p,
.contact-card p,
.glass-footer p,
.glass-footer li {
  color: var(--muted);
}

.benefit-card {
  padding: 1.4rem;
  text-align: center;
}

.icon-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 12px 26px rgba(0, 183, 181, 0.18);
}

.contact-section {
  padding-top: 1.2rem;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-card {
  padding: 1.4rem;
}

.contact-details {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.contact-details i {
  color: var(--secondary);
  margin-right: 0.55rem;
}

.contact-actions {
  margin-top: 1.2rem;
}

.newsletter-card {
  padding: 1.4rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.signup-form input {
  border: 1px solid rgba(30, 47, 102, 0.16);
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.8);
}

.signup-form button {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30,47,102,0.16);
}

.glass-footer {
  margin-top: 2rem;
  padding: 2.2rem 0 1.2rem;
  border-radius: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.footer-col .brand-text span {
  font-weight: 800;
  color: var(--primary);
}

.footer-col .brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.glass-footer h4 {
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-social {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(30,47,102,0.06);
  color: var(--primary);
  transition: transform 0.18s ease, background 0.18s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(245,138,31,0.12), rgba(0,183,181,0.06));
  color: var(--secondary);
}

.footer-signup {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.footer-signup input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(30,47,102,0.08);
}

.footer-signup button {
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--secondary), #ffb256);
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.1rem;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(30,47,102,0.06);
  font-size: 0.95rem;
}

.footer-copy {
  color: var(--muted);
}

.footer-tag {
  color: var(--primary);
  font-weight: 700;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 768px) {
  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

@media (max-width: 1023px) {
  .hero-section {
    padding: 4rem 0 1.8rem;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-left {
    max-width: none;
  }

  .hero-title {
    font-size: clamp(3.6rem, 10vw, 5rem);
  }

  .hero-lead {
    max-width: none;
    font-size: 1rem;
  }

  .hero-picture {
    width: 100%;
    border-width: 4px;
  }

  .bubble {
    width: 58px;
    height: 58px;
  }

  .bubble-top-left {
    top: 2%;
    left: 6%;
  }

  .bubble-top-right {
    top: 10%;
    right: 8%;
  }

  .bubble-bottom-left {
    bottom: 8%;
    left: 6%;
  }

  .bubble-bottom-right {
    bottom: 6%;
    right: 8%;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 7rem 0 2.5rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 5rem 0 1.5rem;
    text-align: center;
  }
    .brand img {
    width: 150px;}

  .hero-copy-top {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    margin-bottom: 1rem;
  }

  .hero-status {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-lead{margin-bottom: 0;}

  .status-track {
    min-width: 100%;
  }
.hero-picture {
        width: 300px;}
  .hero-icon-bubbles {
    display: none;
  }

  .menu-icon {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    /* top: calc(100% + 0.8rem); */
    top: 3.6rem;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
    min-width: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 16px;
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }
.footer-grid{text-align: center;}

}

/* Footer responsive stack */
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col.about {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .footer-social{justify-content: center;}

}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-signup {
    flex-direction: column;
  }
  .footer-signup input {
    width: 100%;
  }
}
