
    :root {
      --green: #0f3d1f;
      --green-2: #1a5c30;
      --gold: #c48b3a;
      --gold-light: #e8c876;
      --cream: #faf7f0;
      --white: #ffffff;
      --dark: #1a1f1b;
      --muted: #5a6b52;
      --line: #e0d7c3;
      --shadow-sm: 0 4px 14px rgba(15, 61, 31, 0.06);
      --shadow: 0 16px 40px rgba(15, 61, 31, 0.1);
      --shadow-lg: 0 24px 60px rgba(15, 61, 31, 0.14);
      --radius: 20px;
      --radius-lg: 28px;
      --transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: var(--dark);
      background: var(--cream);
      line-height: 1.65;
      letter-spacing: -0.01em;
      overflow-x: hidden;
    }

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

    .container {
      width: min(1200px, 91%);
      margin: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.93rem;
      border: 2px solid transparent;
      transition: var(--transition);
      cursor: pointer;
      white-space: nowrap;
      letter-spacing: 0.01em;
    }

    .btn-primary {
      background: var(--gold);
      color: #1c1508;
      box-shadow: 0 6px 18px rgba(196, 139, 58, 0.28);
    }

    .btn-primary:hover {
      background: #b0782e;
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(196, 139, 58, 0.36);
    }

    .btn-outline {
      background: transparent;
      border-color: var(--green);
      color: var(--green);
    }

    .btn-outline:hover {
      background: var(--green);
      color: var(--white);
    }

    .btn-white {
      background: var(--white);
      color: var(--green);
      box-shadow: var(--shadow-sm);
    }

    .btn-white:hover {
      background: #f0ede3;
      transform: translateY(-2px);
    }

    /* Top Bar with social icons always visible */
    .top-bar {
      background: var(--green);
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.86rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .top-bar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .top-contact,
    .top-social {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .top-contact a,
    .top-social a {
      color: rgba(255, 255, 255, 0.86);
      transition: var(--transition);
    }

    .top-contact a:hover,
    .top-social a:hover {
      color: var(--gold-light);
    }

    .top-social a {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      display: grid;
      place-items: center;
      font-size: 0.85rem;
    }

    /* Mobile Menu */
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      color: var(--green);
      font-size: 1.35rem;
      cursor: pointer;
      position: relative;
      z-index: 101;
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 98;
    }

    .mobile-overlay.open {
      display: block;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 80%;
      max-width: 360px;
      height: 100vh;
      height: 100dvh;
      background: var(--white);
      z-index: 100;
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      overflow-y: auto;
      box-shadow: var(--shadow-lg);
      padding: 20px 24px;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .mobile-menu .logo-small {
      font-weight: 900;
      color: var(--green);
      font-size: 1.1rem;
    }

    .mobile-close {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #f0ede3;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      color: var(--green);
    }

    .mobile-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-links a {
      display: block;
      padding: 14px 16px;
      font-weight: 700;
      color: var(--dark);
      border-radius: 14px;
      transition: var(--transition);
      font-size: 1rem;
    }

    .mobile-links a:hover {
      background: rgba(196, 139, 58, 0.08);
      color: var(--gold);
    }

    .mobile-social {
      display: flex;
      gap: 12px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }

    .mobile-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(15, 61, 31, 0.08);
      display: grid;
      place-items: center;
      color: var(--green);
      font-size: 1.1rem;
      transition: var(--transition);
    }

    .mobile-social a:hover {
      background: var(--gold);
      color: #1c1508;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(250, 247, 240, 0.94);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    nav {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 13px;
      font-weight: 900;
      font-size: 1.25rem;
      color: var(--green);
      letter-spacing: -0.03em;
    }

    .logo-mark {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: linear-gradient(140deg, var(--green), var(--green-2));
      display: grid;
      place-items: center;
      color: var(--gold-light);
      font-weight: 900;
      font-size: 1.05rem;
    }

    .nav-links {
      display: flex;
      gap: 26px;
      font-weight: 600;
      font-size: 0.93rem;
      color: #2e3d2f;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-links a.nav-cta {
      color: var(--green);
      font-weight: 800;
    }

    /* Hero Slider */
    .hero {
      min-height: 720px;
      color: var(--white);
      position: relative;
      display: flex;
      align-items: center;
      border-radius: 0 0 48px 48px;
      overflow: hidden;
      isolation: isolate;
      background: var(--green);
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: -3;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(100%) scale(1.04);
      background-position: center;
      background-size: cover;
      transition: opacity 0.8s ease, transform 0.9s ease;
    }

    .hero-slide.active {
      opacity: 1;
      transform: translateX(0) scale(1);
      z-index: 2;
    }

    .hero-slide.prev {
      opacity: 0;
      transform: translateX(-100%) scale(1.04);
      z-index: 1;
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 8;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      font-size: 1.6rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }

    .slider-arrow:hover {
      background: var(--gold);
      color: #1c1508;
      transform: translateY(-50%) scale(1.08);
    }

    .slider-arrow.prev-arrow {
      left: 24px;
    }

    .slider-arrow.next-arrow {
      right: 24px;
    }

    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: 34px;
      transform: translateX(-50%);
      z-index: 8;
      display: flex;
      gap: 10px;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: var(--transition);
    }

    .slider-dot.active {
      width: 34px;
      background: var(--gold-light);
    }

    .hero-slide:nth-child(1) {
      background-image: url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&w=1900&q=85");
    }

    .hero-slide:nth-child(2) {
      background-image: url("https://images.unsplash.com/photo-1527153857715-3908f2bae5e8?auto=format&fit=crop&w=1900&q=85");
    }

    .hero-slide:nth-child(3) {
      background-image: url("https://images.unsplash.com/photo-1524024973431-2ad916746881?auto=format&fit=crop&w=1900&q=85");
    }

    .hero-slide:nth-child(4) {
      background-image: url("https://images.unsplash.com/photo-1484557985045-edf25e08da73?auto=format&fit=crop&w=1900&q=85");
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: linear-gradient(115deg,
          rgba(15, 61, 31, 0.96) 0%,
          rgba(21, 76, 40, 0.78) 48%,
          rgba(30, 90, 48, 0.32) 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -35% -10%;
      height: 45%;
      z-index: -1;
      background: radial-gradient(circle, rgba(232, 200, 118, 0.24), transparent 60%);
      animation: glowFloat 8s ease-in-out infinite alternate;
    }

    @keyframes glowFloat {
      from {
        transform: translateY(0);
        opacity: 0.75;
      }

      to {
        transform: translateY(-30px);
        opacity: 1;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
      padding: 70px 0 80px;
    }

    .eyebrow {
      color: var(--gold-light);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.82rem;
      margin-bottom: 14px;
    }

    h1 {
      font-size: clamp(3.2rem, 5.8vw, 5.8rem);
      line-height: 0.96;
      letter-spacing: -0.06em;
      margin-bottom: 22px;
      max-width: 820px;
      font-weight: 900;
    }

    .hero p {
      font-size: clamp(1.05rem, 1.6vw, 1.22rem);
      max-width: 660px;
      color: rgba(255, 255, 255, 0.88);
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-actions .btn-secondary {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.5);
      color: white;
    }

    .hero-actions .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.13);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-lg);
      padding: 30px 28px;
      backdrop-filter: blur(16px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    }

    .hero-card h3 {
      color: var(--gold-light);
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    .hero-card ul {
      list-style: none;
      display: grid;
      gap: 11px;
      font-weight: 500;
    }

    .hero-card li::before {
      content: "✓";
      color: var(--gold-light);
      font-weight: 900;
      margin-right: 10px;
    }

    /* Impact Bar */
    .impact {
      margin-top: -56px;
      position: relative;
      z-index: 10;
    }

    .impact-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      border: 1px solid var(--line);
    }

    .stat {
      padding: 30px 22px;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--green);
      font-size: 2.3rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat span {
      color: var(--muted);
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* Sections */
    section {
      padding: 80px 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 46px;
    }

    .section-head.center {
      margin: 0 auto 46px;
      text-align: center;
    }

    .section-head h2 {
      color: var(--green);
      font-size: clamp(2.1rem, 3.6vw, 3.2rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
      font-weight: 900;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.6;
    }

    .divider {
      width: 60px;
      height: 4px;
      background: var(--gold);
      border-radius: 4px;
      margin: 18px 0 32px;
    }

    .center .divider {
      margin: 18px auto 32px;
    }

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

    .card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 34px 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: #d0c5a6;
    }

    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(196, 139, 58, 0.13);
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .card h3 {
      color: var(--green);
      margin-bottom: 10px;
      font-size: 1.3rem;
      font-weight: 800;
    }

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

    /* Steps */
    .dark-section {
      background: var(--green);
      color: var(--white);
      border-radius: 48px;
      margin: 0 0 60px;
    }

    .dark-section .section-head h2 {
      color: var(--white);
    }

    .dark-section .section-head p {
      color: rgba(255, 255, 255, 0.75);
    }

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

    .step {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-lg);
      padding: 32px 26px;
    }

    .step-num {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--gold);
      color: #1c1508;
      font-weight: 900;
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .step h3 {
      margin-bottom: 10px;
      font-size: 1.25rem;
    }

    .step p {
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.55;
    }

    /* Services Grid */
    .service-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 34px 30px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .service-card .tag {
      display: inline-block;
      background: rgba(15, 61, 31, 0.08);
      color: var(--green);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 0.82rem;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: 0.03em;
    }

    .service-card h3 {
      color: var(--green);
      font-size: 1.45rem;
      margin-bottom: 12px;
      font-weight: 800;
    }

    .service-card ul {
      margin-top: 14px;
      padding-left: 18px;
      color: var(--muted);
      display: grid;
      gap: 6px;
    }

    /* Breeds */
    .breed-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .breed {
      min-height: 340px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      color: var(--white);
      display: flex;
      align-items: flex-end;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .breed:hover {
      transform: translateY(-4px);
    }

    .breed:nth-child(1) {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent),
        url("https://images.unsplash.com/photo-1527153857715-3908f2bae5e8?auto=format&fit=crop&w=900&q=80") center/cover;
    }

    .breed:nth-child(2) {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent),
        url("https://images.unsplash.com/photo-1524024973431-2ad916746881?auto=format&fit=crop&w=900&q=80") center/cover;
    }

    .breed:nth-child(3) {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent),
        url("https://images.unsplash.com/photo-1484557985045-edf25e08da73?auto=format&fit=crop&w=900&q=80") center/cover;
    }

    .breed-content {
      padding: 30px;
    }

    .breed h3 {
      font-size: 1.6rem;
      margin-bottom: 6px;
      font-weight: 800;
    }

    /* Testimonial */
    .testimonial {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      border-left: 10px solid var(--gold);
      box-shadow: var(--shadow);
      max-width: 880px;
      margin: auto;
    }

    .testimonial blockquote {
      font-size: clamp(1.25rem, 2.2vw, 1.8rem);
      color: var(--green);
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .testimonial cite {
      color: var(--muted);
      font-style: normal;
      font-weight: 700;
    }

    /* Lead Magnet */
    .lead-magnet {
      background: linear-gradient(130deg, var(--green), var(--green-2));
      color: var(--white);
      border-radius: 36px;
      padding: 52px 48px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow-lg);
    }

    .lead-magnet h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .lead-magnet p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05rem;
    }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 32px;
      align-items: start;
    }

    .about-panel {
      background: var(--green);
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: 34px 30px;
      position: sticky;
      top: 110px;
    }

    .about-panel h3 {
      color: var(--gold-light);
      margin-bottom: 14px;
      font-size: 1.5rem;
    }

    .about-cards {
      display: grid;
      gap: 18px;
    }

    /* Resources */
    .resource-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .resource-item {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 245px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
    }

    .resource-item:hover {
      transform: translateY(-7px);
      border-color: var(--gold);
      box-shadow: var(--shadow);
    }

    .resource-img {
      height: 125px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .resource-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(15, 61, 31, 0.72));
    }

    .resource-icon {
      position: absolute;
      right: 14px;
      bottom: -22px;
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--gold-light);
      display: grid;
      place-items: center;
      font-size: 1.35rem;
      z-index: 2;
      box-shadow: var(--shadow-sm);
    }

    .resource-body {
      padding: 28px 18px 20px;
    }

    .resource-body h3 {
      color: var(--green);
      font-size: 1rem;
      line-height: 1.25;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .resource-body p {
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.45;
    }

    .resource-link {
      display: inline-flex;
      margin-top: 14px;
      color: var(--gold);
      font-size: 0.85rem;
      font-weight: 900;
    }

    /* Contact */
    .contact-grid {
      background: var(--white);
      border-radius: 36px;
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 28px;
      padding: 38px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--line);
    }

    .contact-info {
      background: var(--green);
      color: var(--white);
      border-radius: 24px;
      padding: 34px 28px;
    }

    .contact-info h3 {
      color: var(--gold-light);
      font-size: 1.7rem;
      margin-bottom: 12px;
      font-weight: 800;
    }

    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 14px 15px;
      border-radius: 14px;
      border: 1px solid var(--line);
      font: inherit;
      background: #fffdf7;
      transition: var(--transition);
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(196, 139, 58, 0.1);
    }

    textarea {
      grid-column: 1 / -1;
      min-height: 130px;
      resize: vertical;
    }

    form button {
      grid-column: 1 / -1;
    }

    /* Footer 4 Columns */
    footer {
      background: #0c2818;
      color: rgba(255, 255, 255, 0.78);
      padding: 56px 0 30px;
      margin-top: 60px;
      border-radius: 44px 44px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
      gap: 38px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      margin-bottom: 28px;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: 0.02em;
    }

    .footer-col a,
    .footer-col p {
      color: rgba(255, 255, 255, 0.68);
      text-decoration: none;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .footer-col a {
      position: relative;
      padding-left: 24px;
    }

    .footer-col a:hover {
      color: var(--gold-light);
    }

    .footer-col:not(:last-child) a::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 2px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--gold-light);
      color: #0c2818;
      font-size: 0.62rem;
      font-weight: 900;
    }

    .footer-social {
      display: flex;
      gap: 14px;
      margin-top: 10px;
    }

    .footer-social a {
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 1rem;
      transition: var(--transition);
      padding-left: 0 !important;
    }

    .footer-social a::before {
      display: none !important;
      content: none !important;
    }

    .footer-social a:hover {
      background: var(--gold);
      color: #1c1508;
    }

    .footer-bottom {
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 80;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #062f16;
      padding: 14px 18px;
      border-radius: 999px;
      font-weight: 900;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
      transition: var(--transition);
      cursor: pointer;
      border: none;
      font-family: inherit;
      font-size: 0.93rem;
    }

    .whatsapp-float:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    }

    .whatsapp-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.55);
      display: grid;
      place-items: center;
      font-size: 1.25rem;
    }

    /* WhatsApp Modal */
    .whatsapp-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 90;
      place-items: center;
    }

    .whatsapp-modal-overlay.open {
      display: grid;
    }

    .whatsapp-modal {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 34px 28px;
      max-width: 460px;
      width: 92%;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .whatsapp-modal h3 {
      color: var(--green);
      font-size: 1.4rem;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .whatsapp-modal p {
      color: var(--muted);
      margin-bottom: 20px;
      font-size: 0.9rem;
    }

    .whatsapp-modal form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .whatsapp-modal input,
    .whatsapp-modal textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid var(--line);
      font: inherit;
      background: #fffdf7;
    }

    .whatsapp-modal textarea {
      min-height: 90px;
      resize: vertical;
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #f0ede3;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      display: grid;
      place-items: center;
    }

    [data-animate] {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    [data-animate].show {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-left {
      transform: translateX(-40px);
    }

    .fade-right {
      transform: translateX(40px);
    }

    .zoom-in {
      transform: scale(0.92);
    }

    .fade-left.show,
    .fade-right.show,
    .zoom-in.show {
      transform: translateX(0) scale(1);
    }

    .hero h1,
    .hero .eyebrow,
    .hero p,
    .hero-actions,
    .hero-card {
      animation: heroFadeUp 0.9s ease both;
    }

    .hero .eyebrow {
      animation-delay: 0.12s;
    }

    .hero h1 {
      animation-delay: 0.25s;
    }

    .hero p {
      animation-delay: 0.4s;
    }

    .hero-actions {
      animation-delay: 0.55s;
    }

    .hero-card {
      animation-delay: 0.72s;
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .logo-mark {
      animation: logoPulse 3.5s ease-in-out infinite;
    }

    @keyframes logoPulse {

      0%,
      100% {
        box-shadow: 0 0 0 rgba(196, 139, 58, 0);
      }

      50% {
        box-shadow: 0 0 0 8px rgba(196, 139, 58, 0.14);
      }
    }

    .card-icon,
    .step-num {
      transition: transform 0.35s ease;
    }

    .card:hover .card-icon,
    .step:hover .step-num {
      transform: rotate(-5deg) scale(1.08);
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      nav>.btn-outline {
        display: none;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 8px;
      }

      .top-contact {
        gap: 10px;
        font-size: 0.8rem;
      }

      .top-social {
        gap: 10px;
      }

      nav {
        height: auto;
        min-height: 74px;
        gap: 14px;
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .logo span:last-child {
        font-size: 1rem;
        max-width: 190px;
        line-height: 1.1;
      }

      .hero-grid,
      .impact-box,
      .cards,
      .steps,
      .service-grid,
      .breed-grid,
      .lead-magnet,
      .about-grid,
      .resource-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .impact {
        margin-top: 0;
      }

      .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .hero {
        min-height: auto;
        border-radius: 0 0 32px 32px;
      }

      .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
      }

      .slider-arrow.prev-arrow {
        left: 12px;
      }

      .slider-arrow.next-arrow {
        right: 12px;
      }

      .slider-dots {
        bottom: 18px;
      }

      .resource-item {
        min-height: auto;
      }

      .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
      }

      .whatsapp-text {
        display: none;
      }

      .about-panel {
        position: static;
      }

      form {
        grid-template-columns: 1fr;
      }

      .dark-section {
        border-radius: 32px;
      }

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

    @media (max-width: 480px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
  