:root{
    --purple: #6C4EE3;
    --purple-dark: #4B2FBF;
    --purple-light: #F0EDFB;
    --lavender-bg: #EFECFB;
    --orange: #F5814A;
    --orange-dark: #E86E36;
    --text-dark: #22223A;
    --text-gray: #6B6B7B;
    --white: #ffffff;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 40px -15px rgba(76, 47, 191, 0.25);
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Poppins', sans-serif;
    color:var(--text-dark);
    background:var(--white);
    overflow-x:hidden;
  }
  img{max-width:100%; display:block;}
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:var(--orange);
    color:var(--white);
    font-weight:600;
    font-size:15px;
    padding:14px 28px;
    border-radius:12px;
    border:none;
    cursor:pointer;
    transition:background .2s ease, transform .2s ease;
    white-space:nowrap;
  }
  .btn:hover{background:var(--orange-dark); transform:translateY(-2px);}
  .btn:focus-visible{outline:3px solid var(--purple-dark); outline-offset:2px;}
  .btn svg{width:16px; height:16px;}

  /* ===== HEADER ===== */
  header{
    background:var(--white);
    position:sticky;
    top:0;
    z-index:100;
    border-bottom:1px solid rgba(0,0,0,0.04);
  }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 24px;
    max-width:1200px;
    margin:0 auto;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:19px;
  }
  .logo .mark{
    width:42px; height:42px;
    background:var(--purple);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .logo .mark svg{width:22px; height:22px;}
  .logo .name-block{display:flex; flex-direction:column; line-height:1.1;}
  .logo .sub{font-size:9px; font-weight:600; letter-spacing:1.5px; color:var(--text-gray);}

  nav.main-nav{
    display:flex;
    gap:36px;
  }
  nav.main-nav a{
    font-size:15px;
    font-weight:500;
    color:var(--text-dark);
    position:relative;
    padding:4px 0;
  }
  nav.main-nav a.active{color:var(--purple); font-weight:600;}

  .header-right{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .phone-icon{
    width:44px; height:44px;
    background:var(--purple);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .phone-icon svg{width:18px; height:18px; fill:var(--white);}
  .phone-text{font-size:14px; line-height:1.3;}
  .phone-text .num{font-weight:700;}
  .phone-text .hours{font-size:11px; color:var(--text-gray);}

  .hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
  }
  .hamburger span{
    width:26px; height:3px;
    background:var(--text-dark);
    border-radius:2px;
  }

  /* ===== HERO ===== */
  .hero{
    background:var(--lavender-bg);
    padding:60px 0 0;
    overflow:hidden;
  }
  .hero-inner{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:40px;
    align-items:start;
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
  }
  .hero-eyebrow{
    color:var(--purple);
    font-weight:600;
    font-size:14px;
    margin-bottom:14px;
    display:block;
  }
  .hero-left h1{
    font-size:clamp(34px, 5vw, 52px);
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
  }
  .hero-left h1 span{color:var(--purple);}
  .hero-left p{
    color:var(--text-gray);
    font-size:15px;
    max-width:420px;
    margin-bottom:28px;
    line-height:1.6;
  }
  .hero-checks{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  .check-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
  }
  .check-icon{
    width:34px; height:34px;
    background:var(--purple);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .check-icon svg{width:16px; height:16px; fill:var(--white);}
  .check-item strong{font-size:15px; display:block;}
  .check-item span{font-size:13px; color:var(--text-gray);}

  .hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-end;
  }
  .hero-pets{
    position:relative;
    width:100%;
    max-width:420px;
  }
  .hero-pets img{
    width:100%;
    border-radius:0;
  }

  .booking-card{
    background:var(--white);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    padding:26px;
    width:100%;
    max-width:320px;
    margin-left:auto;
    position:relative;
    z-index:5;
  }
  .tabs{
    display:flex;
    background:var(--purple-light);
    border-radius:12px;
    padding:5px;
    margin-bottom:20px;
  }
  .tab{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:10px;
    border-radius:9px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
    border:none;
    background:transparent;
    color:var(--text-dark);
    transition:.2s;
  }
  .tab.active{background:var(--purple); color:var(--white);}
  .tab svg{width:16px; height:16px;}
  .booking-card h3{font-size:18px; font-weight:700; margin-bottom:6px;}
  .booking-card > p{font-size:12.5px; color:var(--text-gray); margin-bottom:18px; line-height:1.5;}
  .field{
    position:relative;
    margin-bottom:12px;
  }
  .field select, .field input{
    width:100%;
    padding:13px 36px 13px 14px;
    border-radius:10px;
    border:1px solid #E4E1F2;
    background:var(--purple-light);
    font-size:13.5px;
    font-family:inherit;
    color:var(--text-dark);
    appearance:none;
    cursor:pointer;
  }
  .field::after{
    content:"";
    position:absolute;
    right:14px;
    top:50%;
    width:8px; height:8px;
    border-right:2px solid var(--text-gray);
    border-bottom:2px solid var(--text-gray);
    transform:translateY(-70%) rotate(45deg);
    pointer-events:none;
  }
  .booking-card .btn{width:100%; margin-top:8px;}

  /* ===== WELCOME / PROCESS ===== */
  .welcome{
    padding:90px 0;
  }
  .welcome-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
  }
  .eyebrow{
    color:var(--orange);
    font-weight:600;
    font-size:14px;
    margin-bottom:12px;
    display:block;
  }
  .welcome-left h2{
    font-size:clamp(26px, 3.5vw, 36px);
    font-weight:800;
    line-height:1.25;
    color:var(--purple);
    margin-bottom:18px;
  }
  .welcome-left > p{
    color:var(--text-gray);
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;
    max-width:480px;
  }
  .step-intro{
    font-weight:700;
    font-size:15px;
    margin-bottom:24px;
  }
  .steps{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
  .step{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .step-num{
    width:40px; height:40px;
    background:var(--orange);
    color:var(--white);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:14px;
  }
  .step-icon-wrap{
    width:64px; height:64px;
    background:var(--purple-light);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .step-icon-wrap svg{width:26px; height:26px; stroke:var(--purple); fill:none;}
  .step h4{font-size:16px; font-weight:700; margin-bottom:4px;}
  .step p{font-size:13px; color:var(--text-gray); line-height:1.6;}

  .welcome-right img{
    width:100%;
    border-radius:var(--radius-lg);
  }

  /* ===== SIMPLY PUT ===== */
  .simply-put{
    background:var(--lavender-bg);
    padding:90px 0;
  }
  .simply-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
  }
  .simply-left h2{
    font-size:clamp(26px, 3.5vw, 36px);
    font-weight:800;
    line-height:1.25;
    color:var(--purple);
    margin-bottom:18px;
  }
  .simply-left > p{
    color:var(--text-gray);
    font-size:15px;
    line-height:1.7;
    margin-bottom:28px;
    max-width:460px;
  }
  .simply-checks{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 24px;
    margin-bottom:32px;
  }
  .simply-check{
    display:flex;
    align-items:flex-start;
    gap:12px;
  }
  .simply-check .check-icon{width:30px; height:30px;}
  .simply-check .check-icon svg{width:14px; height:14px;}
  .simply-check span{font-size:14px; font-weight:600; line-height:1.4;}

  .simply-right{
    position:relative;
    display:flex;
    justify-content:center;
  }
  .simply-right img{
    width:100%;
    max-width:460px;
    border-radius:var(--radius-lg);
  }

  /* ===== FOOTER ===== */
  footer{
    background:var(--purple-dark);
    color:var(--white);
    padding:20px 0;
    text-align:center;
    font-size:13px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px){
    .welcome-inner, .simply-inner{grid-template-columns:1fr;}
    .welcome-right{order:-1;}
    .hero-inner{grid-template-columns:1fr;}
    .hero-visual{margin-top:40px; justify-content:flex-start;}
    .booking-card{margin-left:0;}
  }

  @media (max-width: 860px){
    nav.main-nav{
      position:fixed;
      top:78px;
      left:0; right:0;
      background:var(--white);
      flex-direction:column;
      gap:0;
      padding:10px 24px 20px;
      box-shadow:0 10px 20px rgba(0,0,0,.08);
      transform:translateY(-150%);
      opacity:0;
      transition:all .25s ease;
      z-index:99;
    }
    nav.main-nav.open{transform:translateY(0); opacity:1;}
    nav.main-nav a{padding:12px 0; border-bottom:1px solid rgba(0,0,0,.06);}
    .hamburger{display:flex;}
    .phone-text{display:none;}
    .steps{grid-template-columns:1fr; gap:28px;}
    .simply-checks{grid-template-columns:1fr;}
  }

  @media (max-width: 600px){
    .hero{padding:36px 0 0;}
    .hero-left p{max-width:100%;}
    .booking-card{max-width:100%;}
    .welcome, .simply-put{padding:56px 0;}
    .header-inner{padding:14px 16px;}
    .logo{font-size:16px;}
    .logo .mark{width:36px; height:36px;}
    .phone-icon{width:38px; height:38px;}
  }
