:root{
    --navy:#061b3a;
    --dark:#062b52;
    --green:#159653;
    --green2:#36c878;
    --text:#102b50;
    --muted:#38536f;
    --line:#dce6f2;
}

*{box-sizing:border-box}

html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:110px;
}

body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    color:var(--navy);
    background:#fff;
}

.site-header{
    height:90px;
    padding:0 52px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 8px 24px rgba(6,27,58,.06);
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--navy);
    text-decoration:none;
}

.brand-icon{
    width:58px;
    height:58px;
    border:4px solid var(--navy);
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
}

.brand strong{
    display:block;
    font-size:32px;
    font-weight:900;
    letter-spacing:-1.3px;
    line-height:1;
}

.brand span{
    display:block;
    margin-top:6px;
    font-size:14px;
    font-weight:500;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
    font-size:15px;
    font-weight:800;
}

.main-nav a{
    color:var(--navy);
    text-decoration:none;
}

.small{font-size:10px}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
    padding:15px 28px;
    border-radius:8px;
    border:1px solid #aebbd0;
    font-weight:900;
    text-decoration:none;
    background:#fff;
    color:var(--navy);
}

.btn-green{
    background:var(--green);
    border-color:var(--green);
    color:#fff!important;
}

.btn-large{
    min-height:64px;
    padding:18px 34px;
    font-size:18px;
}

.hamburger{
    display:none;
    width:48px;
    height:48px;
    border:0;
    border-radius:10px;
    background:var(--navy);
    color:#fff;
    font-size:24px;
}

.hero{
    position:relative;
    min-height:520px;
    overflow:hidden;
    background:
        linear-gradient(90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.98) 27%,
            rgba(255,255,255,.76) 45%,
            rgba(255,255,255,.25) 62%,
            rgba(255,255,255,0) 100%
        ),
        url('/assets/img/hero-pets-desktop.jpg?v=500');
    background-repeat:no-repeat,no-repeat;
    background-size:auto, cover;
    background-position:left center, center center;
}

.hero-content{
    width:650px;
    max-width:48%;
    padding:68px 0 0 6.4%;
    position:relative;
    z-index:2;
}

.hero h1{
    margin:0 0 22px;
    font-size:76px;
    line-height:.98;
    font-weight:900;
    letter-spacing:-4px;
    color:var(--navy);
}

.hero p{
    margin:0 0 9px;
    font-size:20px;
    line-height:1.45;
    color:var(--text);
    max-width:570px;
}

.hero-actions{
    display:flex;
    gap:18px;
    margin-top:30px;
}

.hero-checks{
    display:flex;
    flex-wrap:wrap;
    gap:28px;
    margin-top:28px;
    font-size:14px;
    font-weight:900;
}

.hero-checks i{
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    margin-right:8px;
}

.trust-card{
    position:absolute;
    right:7.2%;
    top:70px;
    z-index:3;
    width:230px;
    padding:24px;
    border-radius:15px;
    background:rgba(255,255,255,.92);
    box-shadow:0 20px 55px rgba(6,27,58,.10);
}

.trust-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#f0f4f8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:23px;
    margin-bottom:12px;
}

.trust-card strong{
    display:block;
    font-size:16px;
    line-height:1.3;
    margin-bottom:14px;
}

.trust-card p{
    margin:0;
    color:#173657;
    line-height:1.45;
}

.feature-bar{
    background:var(--dark);
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:42px;
    padding:32px 8.5%;
}

.feature-bar article{
    display:flex;
    align-items:center;
    gap:22px;
}

.feature-bar i{
    color:var(--green2);
    font-size:56px;
    width:66px;
    text-align:center;
}

.feature-bar h3{
    margin:0 0 8px;
    font-size:15px;
    font-weight:900;
}

.feature-bar p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#e1ecf7;
}

.how{
    padding:31px 6.4% 29px;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:26px;
}

.section-title h2{
    margin:0 0 8px;
    font-size:36px;
    line-height:1.15;
    letter-spacing:-1px;
}

.section-title p{
    margin:0;
    color:#33506f;
    font-size:16px;
}

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

.step-card{
    min-height:118px;
    border:1px solid var(--line);
    border-radius:12px;
    padding:23px;
    display:flex;
    align-items:center;
    gap:20px;
    position:relative;
    background:#fff;
}

.step-number{
    position:absolute;
    top:15px;
    left:15px;
    width:27px;
    height:27px;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:14px;
}

.step-icon{
    width:78px;
    height:78px;
    min-width:78px;
    border-radius:50%;
    background:#f1f3f6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--navy);
    font-size:31px;
}

.step-card h3{
    margin:0 0 9px;
    font-size:16px;
    font-weight:900;
}

.step-card p{
    margin:0;
    font-size:13px;
    line-height:1.45;
    color:#173657;
}

.stats{
    background:var(--dark);
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:24px 8%;
}

.stats article{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    border-right:1px solid rgba(255,255,255,.16);
}

.stats article:last-child{border-right:0}

.stats i{
    font-size:43px;
    color:#38bdf8;
}

.stats strong{
    display:block;
    font-size:34px;
    line-height:1;
}

.stats span{
    display:block;
    margin-top:6px;
    color:#d9e7f7;
}

@media(max-width:1200px){
    .main-nav{gap:16px;font-size:14px}
    .hero h1{font-size:62px}
    .hero-content{max-width:54%}
}

@media(max-width:900px){
    .site-header{
        height:78px;
        padding:0 20px;
    }

    .brand-icon{
        width:48px;
        height:48px;
        font-size:21px;
        border-width:3px;
    }

    .brand strong{font-size:24px}
    .brand span{display:none}

    .hamburger{display:block}

    .main-nav{
        display:none;
        position:absolute;
        top:78px;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        padding:24px;
        gap:0;
        box-shadow:0 24px 40px rgba(6,27,58,.12);
    }

    body.menu-open .main-nav{display:flex}

    .main-nav a{
        padding:14px 0;
        border-bottom:1px solid #eef2f6;
    }

    .main-nav .btn{
        margin-top:12px;
        justify-content:center;
    }

    .hero{
    min-height:auto;
    background:
        linear-gradient(180deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.95) 38%,
            rgba(255,255,255,.50) 62%,
            rgba(255,255,255,0) 100%
        ),
        url('/assets/img/hero-pets.jpg?v=400');
    background-size:auto, auto 360px;
    background-position:left center, bottom right;
    background-repeat:no-repeat,no-repeat;
}

    .hero-content{
        width:auto;
        max-width:100%;
        padding:44px 24px 360px;
    }

    .hero h1{
        font-size:46px;
        letter-spacing:-2px;
    }

    .hero p{font-size:17px}

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-checks{
        flex-direction:column;
        gap:14px;
    }

    .trust-card{display:none}

    .feature-bar,
    .steps,
    .stats{
        grid-template-columns:1fr;
    }

    .feature-bar{
        padding:28px 24px;
    }

    .stats article{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.15);
        padding:18px 0;
    }

    .stats article:last-child{border-bottom:0}
}

.language-selector{
    position:relative;
}

.language-button{
    background:transparent;
    border:0;
    color:#061b3a;
    font-family:Inter,Arial,sans-serif;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
    max-width:170px;
    white-space:nowrap;
}

.language-dropdown{
    display:none;
    position:absolute;
    top:42px;
    right:0;
    width:330px;
    max-height:520px;
    background:#fff;
    border:1px solid #dce6f2;
    border-radius:16px;
    box-shadow:0 24px 60px rgba(6,27,58,.18);
    padding:12px;
    z-index:99999;
}

.language-selector.open .language-dropdown{
    display:block;
}

.language-search{
    display:flex;
    align-items:center;
    gap:10px;
    background:#f1f5f9;
    border-radius:12px;
    padding:10px 12px;
    margin-bottom:10px;
}

.language-search input{
    border:0;
    background:transparent;
    outline:none;
    width:100%;
    font-family:Inter,Arial,sans-serif;
    font-size:14px;
}

.language-list{
    max-height:430px;
    overflow-y:auto;
    padding-right:4px;
}

.language-list a{
    display:block;
    padding:10px 12px;
    border-radius:10px;
    color:#061b3a;
    text-decoration:none;
    font-weight:700;
    border-bottom:0!important;
}

.language-list a:hover{
    background:#f1f5f9;
}

@media(max-width:900px){
    .language-button{
        max-width:none;
        padding:14px 0;
    }

    .language-dropdown{
        position:static;
        width:100%;
        max-height:460px;
        box-shadow:none;
        margin-top:8px;
    }
}

.why{padding:80px 6.4%;background:#f7fafc}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.why-grid article{background:#fff;border:1px solid #dce6f2;border-radius:18px;padding:34px;box-shadow:0 18px 45px rgba(6,27,58,.05)}
.why-grid i{font-size:42px;color:#159653;margin-bottom:22px}
.why-grid h3{font-size:22px;margin:0 0 12px}
.why-grid p{color:#38536f;line-height:1.65;margin:0}

.organizations{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;padding:90px 6.4%;background:#062b52;color:#fff}
.organizations h2{font-size:46px;line-height:1.05;margin:10px 0 18px}
.organizations p{font-size:18px;line-height:1.65;color:#d9e7f7;max-width:620px}
.eyebrow{color:#36c878;font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.org-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.org-cards article{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:18px;padding:30px;display:flex;align-items:center;gap:18px}
.org-cards i{font-size:34px;color:#36c878}
.org-cards strong{font-size:18px}

.site-footer{background:#031a34;color:#fff;padding:42px 6.4%;display:flex;justify-content:space-between;gap:30px}
.site-footer strong{font-size:26px}
.site-footer p{color:#cbd8e6;max-width:480px;line-height:1.6}
.site-footer nav{display:flex;gap:22px;flex-wrap:wrap;align-items:center}
.site-footer a{color:#fff;text-decoration:none;font-weight:700}

@media(max-width:900px){
    .why-grid,.organizations{grid-template-columns:1fr}
    .organizations h2{font-size:36px}
    .org-cards{grid-template-columns:1fr}
    .site-footer{flex-direction:column}
}

.main-nav a.active{
    color:#159653;
}

.why{
    padding:90px 6.4%;
    background:#f7fafc;
}

.eyebrow{
    display:inline-block;
    margin-bottom:12px;
    color:#159653;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.14em;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:34px;
}

.why-grid article{
    background:#fff;
    border:1px solid #dce6f2;
    border-radius:20px;
    padding:34px;
    box-shadow:0 18px 45px rgba(6,27,58,.05);
}

.why-grid i{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#ecfdf4;
    color:#159653;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:22px;
}

.why-grid h3{
    margin:0 0 12px;
    font-size:22px;
    letter-spacing:-.4px;
}

.why-grid p{
    margin:0;
    color:#38536f;
    line-height:1.65;
}

@media(max-width:900px){
    .why{
        padding:60px 24px;
    }

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

.lost-found{
    padding:90px 6.4%;
    background:#ffffff;
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:60px;
    align-items:center;
}

.lost-found h2{
    font-size:48px;
    line-height:1.08;
    margin:0 0 18px;
    letter-spacing:-1.5px;
}

.lost-found-content p{
    font-size:18px;
    line-height:1.7;
    color:#38536f;
    margin:0;
}

.lost-flow{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.lost-flow article{
    position:relative;
    background:#f7fafc;
    border:1px solid #dce6f2;
    border-radius:20px;
    padding:32px;
}

.lost-flow span{
    position:absolute;
    top:18px;
    right:18px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#159653;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.lost-flow i{
    font-size:34px;
    color:#159653;
    margin-bottom:22px;
}

.lost-flow h3{
    margin:0 0 10px;
    font-size:20px;
}

.lost-flow p{
    margin:0;
    color:#38536f;
    line-height:1.6;
}

@media(max-width:900px){
    .lost-found{
        grid-template-columns:1fr;
        padding:60px 24px;
    }

    .lost-found h2{
        font-size:36px;
    }

    .lost-flow{
        grid-template-columns:1fr;
    }
}

.professionals{
    padding:90px 6.4%;
    background:#062b52;
    color:#fff;
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:60px;
    align-items:center;
}

.professionals h2{
    font-size:48px;
    line-height:1.08;
    margin:0 0 18px;
    letter-spacing:-1.5px;
}

.professionals-content p{
    color:#d9e7f7;
    font-size:18px;
    line-height:1.7;
    margin:0 0 28px;
}

.professionals-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.professionals-grid article{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);
    border-radius:20px;
    padding:30px;
}

.professionals-grid i{
    font-size:34px;
    color:#36c878;
    margin-bottom:20px;
}

.professionals-grid h3{
    margin:0 0 10px;
    font-size:20px;
}

.professionals-grid p{
    margin:0;
    color:#d9e7f7;
    line-height:1.6;
}

@media(max-width:900px){
    .professionals{
        grid-template-columns:1fr;
        padding:60px 24px;
    }

    .professionals h2{
        font-size:36px;
    }

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

.faq{
    padding:90px 6.4%;
    background:#f7fafc;
}

.faq-list{
    max-width:900px;
    margin:34px auto 0;
    display:grid;
    gap:16px;
}

.faq-list article{
    background:#fff;
    border:1px solid #dce6f2;
    border-radius:16px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:0;
    background:#fff;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family:Inter,Arial,sans-serif;
    font-size:18px;
    font-weight:900;
    color:#061b3a;
    cursor:pointer;
    text-align:left;
}

.faq-answer{
    display:none;
    padding:0 28px 24px;
}

.faq-answer p{
    margin:0;
    color:#38536f;
    line-height:1.7;
}

.faq-list article.open .faq-answer{
    display:block;
}

.faq-list article.open .faq-question i{
    transform:rotate(180deg);
}

@media(max-width:900px){
    .faq{
        padding:60px 24px;
    }
}

.final-cta{
    padding:95px 6.4%;
    background:linear-gradient(135deg,#062b52,#061b3a);
    color:#fff;
    text-align:center;
}

.final-cta h2{
    max-width:850px;
    margin:0 auto 18px;
    font-size:52px;
    line-height:1.05;
    letter-spacing:-1.8px;
}

.final-cta p{
    max-width:680px;
    margin:0 auto 30px;
    font-size:18px;
    line-height:1.7;
    color:#d9e7f7;
}

.final-cta .hero-actions{
    justify-content:center;
}

@media(max-width:900px){
    .final-cta{
        padding:70px 24px;
    }

    .final-cta h2{
        font-size:36px;
    }
}

.pricing{
    padding:90px 6.4%;
    background:#ffffff;
}

.pricing-card{
    max-width:520px;
    margin:34px auto 0;
    padding:42px;
    border:1px solid #dce6f2;
    border-radius:24px;
    background:#fff;
    box-shadow:0 24px 60px rgba(6,27,58,.08);
    text-align:center;
    position:relative;
}

.pricing-badge{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;
    background:#ecfdf4;
    color:#159653;
    font-weight:900;
    font-size:13px;
    margin-bottom:18px;
}

.pricing-card h3{
    margin:0 0 18px;
    font-size:28px;
}

.price{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:6px;
    margin-bottom:14px;
}

.price span{
    font-size:28px;
    font-weight:900;
    margin-top:10px;
}

.price strong{
    font-size:76px;
    line-height:.9;
    letter-spacing:-3px;
}

.price small{
    font-size:18px;
    font-weight:900;
    margin-top:42px;
    color:#38536f;
}

.pricing-card p{
    color:#38536f;
    line-height:1.6;
    margin:0 0 26px;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
    text-align:left;
    display:grid;
    gap:14px;
}

.pricing-card li{
    color:#102b50;
    font-weight:700;
}

.pricing-card li i{
    color:#159653;
    margin-right:10px;
}

@media(max-width:900px){
    .pricing{
        padding:60px 24px;
    }

    .pricing-card{
        padding:30px 24px;
    }
}

.search-block{
    padding:70px 6.4%;
    background:#f7fafc;
}

.search-panel{
    max-width:980px;
    margin:0 auto;
    background:#fff;
    border:1px solid #dce6f2;
    border-radius:26px;
    padding:44px;
    box-shadow:0 24px 60px rgba(6,27,58,.07);
    text-align:center;
}

.search-panel h2{
    margin:0 0 14px;
    font-size:42px;
    letter-spacing:-1.2px;
}

.search-panel p{
    max-width:680px;
    margin:0 auto 28px;
    color:#38536f;
    line-height:1.7;
    font-size:17px;
}

.search-form{
    display:flex;
    max-width:760px;
    margin:0 auto 16px;
    border:1px solid #cfd9e6;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
}

.search-form input{
    flex:1;
    border:0;
    padding:20px 22px;
    font-size:17px;
    font-family:Inter,Arial,sans-serif;
    outline:none;
}

.search-form button{
    border:0;
    background:#159653;
    color:#fff;
    padding:0 28px;
    font-weight:900;
    font-size:16px;
    cursor:pointer;
}

.search-panel small{
    color:#38536f;
}

@media(max-width:900px){
    .search-block{
        padding:50px 24px;
    }

    .search-panel{
        padding:30px 22px;
    }

    .search-panel h2{
        font-size:32px;
    }

    .search-form{
        flex-direction:column;
    }

    .search-form button{
        padding:18px;
    }
}

.world-coverage{
    padding:95px 6.4%;
    background:radial-gradient(circle at center,#123f72 0%,#062b52 45%,#031a34 100%);
    color:#fff;
    overflow:hidden;
}

.section-title.dark h2,
.section-title.dark p{
    color:#fff;
}

.world-map-card{
    max-width:1050px;
    margin:40px auto 34px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:28px;
    background:rgba(255,255,255,.06);
    padding:36px;
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.world-map{
    position:relative;
    min-height:360px;
    border-radius:22px;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:46px 46px;
}

.world-map:before{
    content:"";
    position:absolute;
    inset:40px 70px;
    opacity:.28;
    background:
        radial-gradient(ellipse at 20% 42%,#fff 0 16%,transparent 17%),
        radial-gradient(ellipse at 47% 38%,#fff 0 12%,transparent 13%),
        radial-gradient(ellipse at 58% 52%,#fff 0 18%,transparent 19%),
        radial-gradient(ellipse at 78% 62%,#fff 0 10%,transparent 11%);
}

.dot{
    position:absolute;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#36c878;
    box-shadow:0 0 0 8px rgba(54,200,120,.16),0 0 28px rgba(54,200,120,.8);
    animation:pulse 2.4s infinite;
}

.dot-1{left:20%;top:38%}
.dot-2{left:43%;top:33%}
.dot-3{left:53%;top:52%}
.dot-4{left:68%;top:44%}
.dot-5{left:79%;top:62%}
.dot-6{left:32%;top:66%}

.map-label{
    position:absolute;
    padding:12px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    color:#061b3a;
    font-weight:900;
    box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.map-label i{color:#159653;margin-right:8px}

.label-1{left:10%;top:16%}
.label-2{right:12%;top:18%}
.label-3{left:16%;bottom:18%}
.label-4{right:10%;bottom:20%}

.coverage-stats{
    max-width:1050px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.coverage-stats article{
    text-align:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px;
    padding:24px;
}

.coverage-stats strong{
    display:block;
    font-size:34px;
    margin-bottom:6px;
}

.coverage-stats span{
    color:#d9e7f7;
    font-weight:700;
}

@keyframes pulse{
    0%{transform:scale(1)}
    50%{transform:scale(1.25)}
    100%{transform:scale(1)}
}

@media(max-width:900px){
    .world-coverage{padding:70px 24px}
    .world-map{min-height:300px}
    .map-label{font-size:12px;padding:10px 12px}
    .coverage-stats{grid-template-columns:1fr}
}


