/* =====================================================
   PetsID - Main Stylesheet
   BEM Methodology with CSS Variables
   Based on Design Specification (Manrope font)
   ===================================================== */

/* =====================================================
   CSS Variables (Design System)
   ===================================================== */
   :root {
    /* Colors from Design Spec */
    --color-primary: #2F6BFF;
    --color-primary-hover: #1E5AE8;
    
    --color-text: #111827;
    --color-text-secondary: #4B5563;
    --color-text-muted: #9CA3AF;
    
    --color-bg: #F5F7FB;
    --color-bg-card: #FFFFFF;
    --color-bg-light: #E4EEFF;
    
    --color-border: #E5E7EB;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-error: #EF4444;
    
    /* Typography - Manrope */
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Desktop Font Sizes */
    --font-h1: 36px;
    --font-h2: 28px;
    --font-h3: 22px;
    --font-h4: 20px;
    --font-body-m: 18px;
    --font-body-s: 16px;
    --font-button: 16px;
    --font-caption: 14px;
    
    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    
    /* Line Heights */
    --lh-tight: 1.2;
    --lh-normal: 1.3;
    --lh-relaxed: 1.5;
    --lh-loose: 1.6;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-card: 0px 4px 12px 0px rgba(243, 246, 255, 0.2);
    --shadow-button-inset: inset 0px 4px 4px 0px rgba(12, 12, 13, 0.05);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 16px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
  }
  
  /* Mobile Font Sizes */
  @media (max-width: 767px) {
    :root {
      --font-h1: 28px;
      --font-h2: 22px;
      --font-h3: 18px;
      --font-h4: 16px;
      --font-body-m: 14px;
      --font-body-s: 13px;
      --font-button: 15px;
      --font-caption: 12px;
    }
  }
  
  /* =====================================================
     Reset & Base Styles
     ===================================================== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-family);
    font-size: var(--font-body-s);
    font-weight: var(--weight-regular);
    line-height: var(--lh-relaxed);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  ul, ol {
    list-style: none;
  }
  
  input, textarea, select {
    font-family: inherit;
    font-size: inherit;
  }
  
  /* =====================================================
     Utility Classes
     ===================================================== */
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    /* padding-left: var(--container-padding);
    padding-right: var(--container-padding); */
  }

  /* @media (min-width: 768px) {
    .container {
      --container-padding: 24px;
    }
  } */

  @media (min-width: 1200px) {
    .container {
      --container-padding: 40px;
    }
  }
  
  .section-title {
    font-size: var(--font-h1);
    font-weight: var(--weight-bold);
    line-height: var(--lh-tight);
    color: var(--color-text);
    text-align: center;
    margin-bottom: 45px;
  }

  @media (max-width: 767px) {
    .section-title {
      font-size: 22px;
      margin-bottom: 24px;
    }
  }
  
  .section-subtitle {
    font-size: var(--font-body-s);
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: var(--lh-loose);
    font-size: 18px;
  }

  /* =====================================================
     Visibility Utilities
     ===================================================== */
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }

  @media (max-width: 767px) {
    .desktop-only {
      display: none !important;
    }
    .mobile-only {
      display: block !important;
    }
  }
  
  /* =====================================================
     Buttons
     ===================================================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: var(--font-button);
    font-weight: var(--weight-semibold);
    line-height: var(--lh-tight);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    cursor: pointer;
  }
  
  .btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-button-inset);
  }
  
  .btn--primary:hover {
    background-color: var(--color-primary-hover);
  }
  
  .btn--outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-primary);
  }
  
  .btn--outline:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
  }
  
  .btn--large {
    padding: 16px 32px;
    border-radius: var(--radius-lg);
  }
  
  /* =====================================================
     Header
     ===================================================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-bg-light);
    transition: box-shadow var(--transition-base);
  }
  
  .header--scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
  }
  
  @media (min-width: 1024px) {
    .header__container {
      height: 86px;
    }
  }
  
  .header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .header__logo-icon {
    width: 180px;
    height: 57px;
  }
  
  /* Navigation */
  .header__nav {
    display: none;
  }
  
  @media (min-width: 1024px) {
    .header__nav {
      display: block;
    }
  }
  
  .nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .nav__link {
    font-size: 16px;
    font-weight: var(--weight-medium);
    color: var(--color-text);
    transition: color var(--transition-fast);
  }
  
  .nav__link:hover,
  .nav__link--active {
    color: var(--color-primary);
  }
  
  .header__actions {
    display: flex;
    align-items: center;
    gap: 41px;
  }
  
  .header__help {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text);
    font-weight: var(--weight-medium);
  }
  
  @media (min-width: 1024px) {
    .header__help {
      font-size: 16px;
    }
  }
  
  .header__help:hover {
    color: var(--color-primary);
  }
  
  .header__cta {
    display: none;
  }
  
  @media (min-width: 1024px) {
    .header__cta {
      display: inline-flex;
    }
  }
  
  /* Burger Menu */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    padding: 0;
  }
  
  @media (min-width: 1024px) {
    .burger {
      display: none;
    }
  }
  
  /* =====================================================
     Mobile Menu
     ===================================================== */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition-base);
  }
  
  .mobile-menu--open {
    visibility: visible;
    opacity: 1;
  }
  
  .mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .mobile-menu__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    background-color: var(--color-bg-card);
    padding: 20px 10px;
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  
  .mobile-menu--open .mobile-menu__content {
    transform: translateY(0);
  }
  
  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #2f6bff;
    margin-bottom: 24px;
    gap: 16px;
  }
  
  .mobile-menu__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .mobile-menu__close svg {
    width: 32px;
    height: 32px;
  }
  
  .mobile-menu__cta {
    width: 100%;
    margin-bottom: 0;
    flex: 1;
    justify-content: center;
    padding: 12px 20px;
    height: 48px;
  }
  
  .mobile-menu__nav {
    flex: 1;
    margin-bottom: 24px;
  }
  
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .mobile-menu__link {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 400;
    color: #111827;
    border-bottom: none;
  }
  
  .mobile-menu__link:hover,
  .mobile-menu__link--active {
    color: var(--color-primary);
  }
  
  .mobile-menu__footer {
    padding-top: 0;
    border-top: none;
  }
  
  .mobile-menu__search-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #111827;
    margin-bottom: 16px;
    text-decoration: underline;
  }
  
  .mobile-menu__search-link svg {
    color: #2F6BFF;
  }
  
  .mobile-menu__search-btn {
    width: 100%;
    background-color: #436EFF;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  /* =====================================================
     Breadcrumbs
     ===================================================== */
  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 21px 0 45px 0;
  }

  .breadcrumbs__link {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
  }

  .breadcrumbs__link:hover {
    color: var(--color-primary);
  }

  .breadcrumbs__separator {
    display: flex;
    align-items: center;
    color: var(--color-text-muted);
  }

  .breadcrumbs__current {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
  }
  

  /* =====================================================
     Owners Hero Section (Desktop)
     ===================================================== */
  @media (min-width: 768px) {
    .owners-hero-steps-wrapper {
      background: linear-gradient(-46.85deg, #F5F7FB 16.7%, #E4EEFF 51%, #FFFFFF 85%);
      overflow: hidden;
    }
  }

  .owners-hero {
    padding-top: calc(86px + 40px);
    padding-bottom: 0;
    background: transparent;
  }

  .owners-hero__container {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .owners-hero__content {
    flex: 0 0 580px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
  }

  .owners-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 11px 10px;
    background-color: var(--color-bg-light);
    border-radius: 8px;
    width: fit-content;
    margin-bottom: 16px;
  }

  .owners-hero__badge-text {
    font-size: 14px;
    font-weight: var(--weight-light);
    color: var(--color-text);
  }

  .owners-hero__title {
    font-size: 36px;
    font-weight: 600;
    line-height: var(--lh-tight);
    color: var(--color-text);
  }

  .owners-hero__description-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .owners-hero__desc-text {
    width: 670px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
  }

  .owners-hero__register-btn {
    width: fit-content;
    padding: 14px 13px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: 1px solid #2F6BFF !important;
  }

  .owners-hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: none;
    position: relative;
  }

  .owners-hero__img {
    margin-top: 30px;
    width: 150%;
    height: 510px;
    object-fit: contain;
    max-width: none;
    transform: translateX(19%);   
         
  }

  /* =====================================================
     Owners Hero Section (Mobile)
     ===================================================== */
  .owners-hero-mobile {
    padding-top: 70px;
    padding-bottom: 40px;
    background-color: var(--color-bg);
  }

  .owners-hero-mobile__container {
    padding: 16px;
    display: flex;
    flex-direction: column;

  }

  .owners-hero-mobile__badge {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    font-size: 12px;
    font-weight: var(--weight-light);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    width: fit-content;
    margin-bottom: 16px;
  }

  .owners-hero-mobile__title {
    font-size: 24px;
    font-weight: var(--weight-extrabold);
    line-height: var(--lh-tight);
    color: var(--color-text);
    margin-bottom: 16px;
  }

  .owners-hero-mobile__desc {
    font-size: 14px;
    font-weight: var(--weight-regular);
    color: var(--color-text);
    line-height: var(--lh-relaxed);
    margin-bottom: 12px;
  }

  .owners-hero-mobile__register-btn {
    width: 100%;
    background-color: transparent;
    color: black;
    border-radius: 8px;
    font-size: 15px;
    font-weight: var(--weight-semibold);
    padding: 14px 20px;
    border: 1px solid #2f6bff;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  .owners-hero-mobile__image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .owners-hero-mobile__img {
    width: 80%;
    height: auto;
    object-fit: contain;
  }
  .owners-practice {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
  }

  /* =====================================================
     Owners Steps Section
     ===================================================== */
  .owners-steps {
    padding: 60px 0;
    background-color: var(--color-bg-card);
  }

  @media (min-width: 768px) {
    .owners-steps {
      padding: 100px 0 80px;
      background: transparent;
    }
  }

  .owners-steps__title {
    text-align: center;
    margin-bottom: 50px;
  }

  .owners-steps__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  @media (min-width: 768px) {
    .owners-steps__grid {
      position: relative;
      flex-direction: row;
      align-items: flex-start;
      justify-content: center;
      gap: 53px;
    }
  }

  .owners-step {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media (max-width: 767px) {
    .owners-step {
      max-width: 100%;
      text-align: left;
      padding: 20px 16px;
      align-items: flex-start;
      background-color: var(--color-bg-light);
      border-radius: var(--radius-lg);
    }
  }

  .owners-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #F8FAFF;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 36px;

    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 24px;
    flex-shrink: 0;
  }



  .owners-step__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: var(--lh-tight);
    width: 100%;
  }

  @media (max-width: 767px) {
    .owners-step__title {
      font-size: 18px;
      padding-right: 40px;
      margin-bottom: 8px;
    }
  }

  .owners-step__description {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
  }

  @media (max-width: 767px) {
    .owners-step__description {
      font-size: 14px;
    }
  }

  .owners-steps__paw {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
    margin-top: 30px;
  }

  .owners-steps__paw img {
    width: 100%;
    height: auto;

  }

  @media (min-width: 768px) {
    .owners-steps__paw {
      width: 103px;
      position: absolute;
      margin: 0;
      top: 50px;
      pointer-events: none;
      z-index: 0;
    }

    /* First Paw - between 1 and 2 */
    .owners-steps__paw:nth-child(2) {
      left: 20%;

    }

    /* Second Paw - between 2 and 3 */
    .owners-steps__paw:nth-child(4) {
      left: 45%;
        transform: rotate(333deg);
    }

    /* Third Paw - between 3 and 4 */
    .owners-steps__paw:nth-child(6) {
      left: 73%;
      transform: rotate(36deg);
    }
  }

  /* =====================================================
     Owners Features Section
     ===================================================== */
  .owners-features {
    padding: 60px 0;
    background-color: transparent; /* Changed to transparent */
  }

  @media (min-width: 768px) {
    .owners-features {
      padding: 110px 0;
    }
  }

  /* Grid container for features */
  .owners-features__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .owners-feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .owners-feature {
      flex-direction: row;
      align-items: stretch;
      gap: 24px;
      margin-bottom: 0;
    }

    .owners-feature--reverse {
      flex-direction: row-reverse;
    }
  }

  .owners-feature:last-child {
    margin-bottom: 0;
  }

  .owners-feature__content {
    flex: 1;
    background-color: #E4EEFF;; /* Light blue card background */
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .owners-feature__content {
      padding: 24px;
    }
  }

  /* Ensure content comes after image on mobile if desired, or keep standard stacking */
  @media (max-width: 767px) {
    /* Stack image on top, text below for consistency with design cards */
      .owners-feature__content {
        order: 2;
      }
      .owners-feature__image {
        order: 1;
      }
    }
    
    .owners-feature__header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    
    .owners-feature__icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* No background for icon container in new design */
      background-color: transparent;
      border-radius: 0;
      margin-bottom: 0;
    }
    
    .owners-feature__icon svg {
      width: 40px;
      height: 40px;
    }
    
    .owners-feature__title {
      font-size: 20px;
      font-weight: var(--weight-bold);
      color: var(--color-text);
      margin-bottom: 0;
    }
  @media (min-width: 768px) {
    .owners-feature__title {
      font-size: 22px;
      font-weight: 600;
    }
  }

  .owners-feature__subtitle {
    max-width: 500px;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: 24px;
  }

 

  .owners-feature__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .owners-feature__item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: var(--color-text);
    line-height: var(--lh-relaxed);
    font-weight: 500;
  }



  .owners-feature__check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;

  }

  .owners-feature__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    overflow: hidden;
    min-height: 240px; /* Min height for visibility */
  }

  @media (max-width: 767px) {
    .owners-feature__image {
      /* Remove order here if handled above, but keeping for safety */
      height: 240px;
    }
  }

  .owners-feature__image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }

  @media (min-width: 1200px) {
    .owners-feature__content,
    .owners-feature__image {
      height: 342px;
      flex: 0 0 588px;
      width: 588px;
      border-radius: 12px;
    }
    
    .owners-feature__image img {
      height: 100%;
      max-width: none;
    }
  }

  /* =====================================================
     Owners Practice Section (Blue Block)
     ===================================================== */
  .owners-practice {
    padding: 60px 0;
    background-color: transparent;
  }
  
  @media (min-width: 768px) {
    .owners-practice {
      padding: 0px 0
    }
  }
  
  .owners-practice__container {
    text-align: center;
    margin: 0 auto;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px 20px;
    border-radius: 24px;
  }
  
  @media (min-width: 768px) {
    .owners-practice__container {
      padding: 80px;
      border-radius: 32px;
    }
  }
  
  .owners-practice__title {
    font-size: 36px;
    font-weight: var(--weight-bold);
    margin-bottom: 24px;
    color: var(--color-white);
  }
  
  
  
  .owners-practice__text {
    font-size: 18px;
    font-weight: var(--weight-regular);
    line-height: var(--lh-loose);
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    width: 700px;
    margin: 0 auto 30px auto;
    text-align: center;
  }
  
 
  .owners-practice__badge {
    display: inline-block;
    background-color: var(--color-error);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    padding: 4px 9px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .owners-practice__note {
    font-size: 18px;
    font-weight: var(--weight-regular);
    color: white;
  }

  @media (max-width: 767px) {
    .owners-practice__note {
      font-size: 13px;
    }
  }

  /* =====================================================
     Owners CTA Section
     ===================================================== */
  .owners-cta {
    padding: 60px 0;
    background-color: var(--color-bg);
  }

  @media (min-width: 768px) {
    .owners-cta {
      padding: 120px 0;
    }
  }

  .owners-cta__container {
    text-align: center;
  }

  .owners-cta__title {
    font-size: 36px;
    font-weight: var(--weight-bold);
    color: var(--color-text);
    margin-bottom: 16px;
  }

 

  .owners-cta__subtitle {
    font-size: 18px;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

 

  .owners-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  @media (min-width: 480px) {
    .owners-cta__buttons {
      flex-direction: row;
      justify-content: center;
    }
  }

  .owners-cta__buttons .btn {
    font-size: 16px;
    border: 1px solid #2f6bff;
    min-width: 250px;
    padding: 15px 15px;
    font-weight: 600;
  }

  @media (max-width: 479px) {
    .owners-cta__buttons .btn {
      width: 100%;
    }
  }

  /* =====================================================
     Contact Section
     ===================================================== */
  .contact {
    min-height: 740px;
    padding: 60px 0;
    background: url('img/form_background.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 767px) {
    .contact {
      min-height: auto;
      padding: 40px 0;
    }
  }

  .contact__container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .contact-form-wrapper {
    background-color: rgba(228, 238, 255, 0.95);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1200px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  }

  @media (max-width: 767px) {
    .contact-form-wrapper {
      padding: 24px 16px;
      margin: 0 16px;
    }
  }

  .contact__header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
  }

  .contact__title {
    color: var(--color-text);
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: var(--weight-bold);
  }

  @media (max-width: 767px) {
    .contact__title {
      font-size: 22px;
    }
  }

  .contact__description {
    font-size: 18px;
    color: var(--color-text);
    line-height: var(--lh-relaxed);
    font-weight: var(--weight-semibold);
  }

  @media (max-width: 767px) {
    .contact__description {
      font-size: 14px;
    }
  }

  .contact-form {
    width: 100%;
    max-width: 600px;
  }

  .contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .contact-form__row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .contact-form__group {
    margin-bottom: 20px;
  }

  @media (max-width: 767px) {
    .contact-form__group {
      margin-bottom: 12px;
    }
  }

  .contact-form__label {
    display: block;
    font-size: 16px;
    font-weight: var(--weight-medium);
    color: var(--color-text);
    margin-bottom: 8px;
  }

  @media (max-width: 767px) {
    .contact-form__label {
      font-size: 13px;
    }
  }

  .contact-form__input,
  .contact-form__select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: var(--weight-regular);
    color: var(--color-text);
    background-color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    height: 48px;
  }

  @media (max-width: 767px) {
    .contact-form__input,
    .contact-form__select {
      font-size: 14px;
      height: 44px;
      border-radius: var(--radius-md);
    }
  }

  .contact-form__input::placeholder {
    color: var(--color-text-muted);
  }

  .contact-form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
  }

  @media (max-width: 767px) {
    .contact-form__checkbox {
      margin: 12px 0;
    }
  }

  .contact-form__checkbox input {
    width: 24px;
    height: 24px;
    accent-color: var(--color-primary);
    cursor: pointer;
  }

  .contact-form__checkbox-label {
    font-size: 14px;
    color: var(--color-text-secondary);
  }

  @media (max-width: 767px) {
    .contact-form__checkbox-label {
      font-size: 12px;
    }
  }

  .contact-form__submit {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: var(--weight-semibold);
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(67, 110, 255, 0.3);
    height: 56px;
  }

  @media (max-width: 767px) {
    .contact-form__submit {
      font-size: 16px;
      height: 48px;
      border-radius: var(--radius-md);
    }
  }

  .contact-form__submit:hover {
    background-color: var(--color-primary-hover);
  }

  /* =====================================================
     Footer
     ===================================================== */
  .footer {
    padding: 60px 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
  }

  @media (max-width: 767px) {
    .footer {
      padding: 30px 0;
    }
  }

  .footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  @media (max-width: 767px) {
    .footer__container {
      grid-template-columns: 1fr 1fr;
      grid-template-areas: 
        "brand brand"
        "col1 col2"
        "docs docs";
      gap: 24px 16px;
    }

    .footer__brand {
      grid-area: brand;
    }

    .footer__column:nth-of-type(2) {
      grid-area: col1;
    }

    .footer__column:nth-of-type(3) {
      grid-area: col2;
    }

    .footer__column:nth-of-type(4) {
      grid-area: docs;
    }
  }

  @media (min-width: 768px) {
    .footer__container {
      grid-template-columns: 300px 1fr 1fr 2fr;
      gap: 60px;
    }
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .footer__logo-icon {
    width: 180px;
    height: 57px;
  }

  @media (max-width: 767px) {
    .footer__logo-icon {
      width: 120px;
      height: auto;
    }
  }

  .footer__description {
    font-size: 16px;
    font-weight: var(--weight-medium);
    color: var(--color-text);
    line-height: var(--lh-loose);
    margin-bottom: 32px;
  }

  @media (max-width: 767px) {
    .footer__description {
      font-size: 13px;
      font-weight: var(--weight-regular);
      margin-bottom: 0;
    }
  }

  .footer__copyright {
    font-size: 17px;
    font-weight: var(--weight-regular);
    color: var(--color-black);
    margin-top: auto;
  }

  @media (max-width: 767px) {
    .footer__copyright {
      display: none;
    }
  }

  .footer__column {
    display: flex;
    flex-direction: column;
  }

  .footer__column-title {
    font-size: 20px;
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: 20px;
  }

  @media (max-width: 767px) {
    .footer__column-title {
      font-size: 16px;
      margin-bottom: 12px;
    }
  }

  .footer__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  @media (max-width: 767px) {
    .footer__list {
      gap: 10px;
    }
  }

  .footer__link {
    font-size: 18px;
    font-weight: var(--weight-regular);
    color: var(--color-black);
    transition: color var(--transition-fast);
  }

  @media (max-width: 767px) {
    .footer__link {
      font-size: 14px;
    }
  }

  .footer__link:hover {
    color: var(--color-primary);
  }

  /* Mobile copyright outside container */
  .visivble {
    display: none;
  }

  @media (max-width: 767px) {
    .visivble {
      display: block !important;
      font-size: 14px;
      font-weight: var(--weight-regular);
      color: var(--color-black);
      text-align: center;
      margin-top: 24px;
      padding: 0 16px;
    }
  }

  /* =====================================================
     Mobile Header Adjustments
     ===================================================== */
  @media (max-width: 767px) {
    .header__logo-icon {
      width: 120px;
      height: auto;
    }

    .header__help {
      font-size: 14px;
      margin-right: 10px;
    }

    .burger img {
      width: 28px;
      height: auto;
    }

    .header__container {
      padding: 0 16px;
      height: 56px;
    }
    .owners-hero-mobile__container {
      padding: 10px;
    }
    .breadcrumbs__link {
      font-size: 15px;
    }
    .breadcrumbs {
    
      margin: 12px 0 12px 0;
    }
    .owners-hero-mobile__badge{
      width: 100%;
    border-radius: 8px;
    padding: 14px 11px;
    text-align: center;
    }
    .owners-hero-mobile__title {
      font-size: 28px;
      font-weight: 700;
      margin: 8px auto;
  }
    .owners-hero-mobile__img {
      width: 100%;

    }
    .owners-hero-mobile__desc {
      font-size: 16px;
      font-weight: 600;
      width: 95%;
    }
    .owners-hero-mobile__register-btn { 
      margin-bottom: -26px;
    }
    .owners-steps__container {
      padding: 0 10px;
    }

    .owners-steps {
      padding: 30px 0;
      background-color: #F5F7FB;
    }

    .owners-steps__grid {
      flex-direction: column;
      align-items: center;
      gap: 0px;
    }

    .owners-step {
      background-color: transparent;
      box-shadow: none;
      border-radius: 0;
      padding: 0;
      text-align: center;
      align-items: center;
      max-width:100%;
    }

    .owners-step__number {
      position: static;
      width: 40px;
      height: 40px;
      font-size: 28px;
      margin: 0 auto 16px;
      background-color: #F8FAFF;
      color: var(--color-primary);
      border: 1px solid var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .owners-step__title {
      font-size: 17px;
      padding-right: 0;
      margin-bottom: 8px;
      text-align: center;
      font-weight: 600;
    }

    .owners-step__description {
      font-size: 13px;
      text-align: center;
      font-weight: 400;
      width: 255px;
    }

    .owners-steps__paw {
      display: flex;
      position: static;
      width: 50px;
      margin: 2px 0;
      transform: rotate(60deg);
    }
    .owners-steps__paw:nth-child(6) {
      transform: scaleX(-1) rotate(60deg) !important;
  }
  .owners-features {
    padding: 20px 0 50px 0;
  
  }
  .owners-feature {
  
    gap: 0px;
  }
  .owners-features__container{
    padding: 0 10px;
  }
  .owners-features__container {

    gap: 0px;
}
.owners-feature__title {
  font-size: 18px;
  font-weight: 600;
}
.owners-feature__icon {
  
    width: 40px;
    height: 40px;
}
.owners-feature__content {

  padding: 10px;
}


  .owners-feature__subtitle {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 20px;
  }

  .owners-feature__item {
    font-size: 13px;
    font-weight: 400;
  }
  .owners-feature__check {
    width: 32px;
    height: 32px;
}
.owners-feature__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.owners-feature__list {
  gap: 10px
}

  .owners-practice__title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .owners-practice__container {
    padding: 10px;
  }
  .owners-practice__title {
    font-size: 28px;
    margin-bottom: 10px;
    width: 80%;
    margin: 0 auto 6px auto;
    line-height: 1.2;
  }

  .owners-practice__badge {
    display: inline-block;
    background-color: var(--color-error);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    padding: 1px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.6;
  }

    .owners-practice__text {
        font-size: 14px;
        margin: 0 0 14px 0;
        width: 99%;
    }
    .owners-practice__text {
      font-size: 14px;
    }
    .owners-practice__container  {
  border-radius: 8px;
    }
    .owners-practice {
      padding: 10px 0;
    }

    .owners-cta__title {
        font-size: 28px;
        margin-bottom: 10px;
  }
  .owners-cta {
    padding: 40px 10px 60px 10px;
  }

    .owners-cta__subtitle {
      font-size: 14px;
      margin-bottom: 10px;
  }
  
  }

