/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* ============================================
   Typography
   ============================================ */

h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    color: #2A4D75;
    margin-bottom: 16px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #2A4D75;
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #2A4D75;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    p {
        font-size: 18px;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    min-height: 44px;
}

@media (min-width: 768px) {
    .btn {
        font-size: 18px;
        padding: 16px 36px;
        min-height: 48px;
    }
}

.btn__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.btn--primary {
    background-color: #2A4D75;
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(42, 77, 117, 0.25);
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: #1e3854;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(42, 77, 117, 0.35);
}

.btn--primary:focus-visible {
    outline: 2px solid #2A4D75;
    outline-offset: 3px;
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(42, 77, 117, 0.3);
}

.btn--secondary {
    background-color: #FFFFFF;
    color: #2A4D75;
    border: 1.5px solid rgba(42, 77, 117, 0.3);
    font-weight: 500;
}

.btn--secondary:hover,
.btn--secondary:focus {
    background-color: #F7F9FC;
    border-color: rgba(42, 77, 117, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(42, 77, 117, 0.1);
}

.btn--secondary:focus-visible {
    outline: 2px solid #2A4D75;
    outline-offset: 3px;
}

.btn--secondary:active {
    transform: translateY(0);
}

.btn--inverted {
    background-color: #FFFFFF;
    color: #2A4D75;
    border: 1px solid #FFFFFF;
}

.btn--inverted:hover,
.btn--inverted:focus {
    background-color: #F7F9FC;
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--section-cta {
    padding: 14px 28px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .btn--section-cta {
        padding: 14px 32px;
        font-size: 17px;
    }
}

.btn--small .btn__icon {
    width: 18px;
    height: 18px;
}

/* ============================================
   Header
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.site-header.is-sticky {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.site-header__logo {
    display: flex;
    align-items: center;
}

.site-header__logo object {
    height: 40px;
    width: auto;
}

.site-header__logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #2A4D75;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header__nav-link {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    display: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.site-header__nav-link:hover {
    color: #2A4D75;
    border-bottom-color: #2A4D75;
}

@media (min-width: 768px) {
    .site-header__nav-link {
        display: inline-block;
    }
    
    .site-header__content {
        padding: 20px 0;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    padding: 80px 0 64px;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero__content {
        max-width: 900px;
    }
}

.hero__title {
    margin-bottom: 32px;
    font-weight: 700;
    color: #1e3854;
    max-width: 700px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero__title {
        margin-bottom: 40px;
        max-width: 800px;
    }
}

.hero__subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 56px;
    }
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero__cta {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
}

.hero__trust-statement {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
    margin-top: 8px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero__trust-statement {
        font-size: 15px;
        margin-top: 12px;
    }
}

.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: visible;
}

.hero__image-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero__image-img {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .hero__image-img {
        max-width: 600px;
    }
}

@media (min-width: 1280px) {
    .hero__image-img {
        max-width: 700px;
    }
}

.hero__image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #F7F9FC 0%, #E5E5E5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero__image-placeholder {
        height: 450px;
    }
}

/* Hero Trust Strip */
.hero-trust-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 0 0;
    margin-top: 32px;
    border-top: 1px solid #E0E0E0;
}

@media (min-width: 768px) {
    .hero-trust-strip {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        padding: 32px 0 0;
        margin-top: 40px;
    }
}

.hero-trust-text {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-trust-text {
        font-size: 15px;
        text-align: left;
    }
}

.hero-trust-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
}

@media (min-width: 768px) {
    .hero-trust-logos-wrapper {
        width: auto;
        flex: 0 1 auto;
        min-width: 0;
    }
}

.hero-trust-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    width: fit-content;
}

.hero-trust-logos-scroll {
    animation: scroll-logos 30s linear infinite;
}

.trust-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .hero-trust-logos {
        gap: 40px;
    }
}

.trust-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    opacity: 0.75;
    filter: grayscale(80%);
    transition: opacity 0.3s ease, filter 0.3s ease;
    object-fit: contain;
    display: block;
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (min-width: 768px) {
    .trust-logo {
        height: 60px;
        max-width: 220px;
        opacity: 0.8;
    }
}

/* Coming Soon Logo Placeholder */
.trust-logo-coming-soon {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .trust-logo-coming-soon {
        width: 220px;
        height: 60px;
    }
}

.coming-soon-logo {
    width: 100%;
    height: 100%;
    border: 2px dashed #E0E0E0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F9FC;
    transition: all 0.3s ease;
}

.coming-soon-logo:hover {
    border-color: #2A4D75;
    background-color: #FFFFFF;
}

.coming-soon-text {
    font-size: 12px;
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .coming-soon-text {
        font-size: 13px;
    }
}

/* ============================================
   Trusted Providers Section
   ============================================ */

.section--trusted {
    padding: 44px 0 64px;
    position: relative;
}

.section--trusted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 77, 117, 0.2), transparent);
}

.trusted-header {
    text-align: center;
    margin-bottom: 32px;
}

.trusted-header .section__title {
    margin-bottom: 16px;
}

.section__intro--trusted {
    max-width: 650px;
    margin: 0 auto 16px;
}

.trusted-microcopy {
    font-size: 15px;
    color: #2A4D75;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto 12px;
    line-height: 1.6;
    font-style: italic;
}

.trusted-partners-label {
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 32px auto 0;
    max-width: 1200px;
    padding: 20px 0;
    border-top: 1px solid rgba(42, 77, 117, 0.1);
    border-bottom: 1px solid rgba(42, 77, 117, 0.1);
}

.trusted-logos-scroll {
    display: flex;
    align-items: center;
    gap: 50px;
    width: fit-content;
    animation: scroll-logos-large 40s linear infinite;
    padding: 10px 0;
}

.trusted-logos-scroll .trust-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

.trusted-logos-scroll .trust-logo {
    height: 56px;
    width: auto;
    max-width: 200px;
    opacity: 0.75;
    filter: grayscale(60%) brightness(0.95);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.2s ease;
    object-fit: contain;
    display: block;
}

.trusted-logos-scroll .trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: translateY(-2px);
}

.trusted-logos-scroll .trust-logo-coming-soon {
    width: 200px;
    height: 56px;
}

.trusted-logos-scroll .coming-soon-logo {
    width: 100%;
    height: 100%;
}

@keyframes scroll-logos-large {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .section--trusted {
        padding: 48px 0 72px;
    }
    
    .trusted-logos-scroll {
        gap: 60px;
    }
    
    .trusted-logos-scroll .trust-logo-item {
        min-height: 80px;
    }
    
    .trusted-logos-scroll .trust-logo {
        height: 64px;
        max-width: 220px;
    }
    
    .trusted-logos-scroll .trust-logo-coming-soon {
        width: 220px;
        height: 64px;
    }
    
    .trusted-header {
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .trusted-logos-scroll {
        gap: 70px;
    }
    
    .trusted-logos-scroll .trust-logo-item {
        min-height: 96px;
    }
    
    .trusted-logos-scroll .trust-logo {
        height: 72px;
        max-width: 250px;
    }
    
    .trusted-logos-scroll .trust-logo-coming-soon {
        width: 250px;
        height: 72px;
    }
}

@media (max-width: 767px) {
    .section--trusted {
        padding: 40px 0 56px;
    }
    
    .trusted-header {
        margin-bottom: 24px;
    }
    
    .section__intro--trusted,
    .trusted-microcopy,
    .trusted-partners-label {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .trusted-logos-wrapper {
        margin: 24px auto 0;
        padding: 16px 0;
    }
    
    .trusted-logos-scroll {
        gap: 40px;
    }
    
    .trusted-logos-scroll .trust-logo {
        height: 48px;
        max-width: 160px;
    }
    
    .trusted-logos-scroll .trust-logo-coming-soon {
        width: 160px;
        height: 48px;
    }
}

/* ============================================
   Sections
   ============================================ */

.section {
    padding: 64px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 96px 0;
    }
}

/* Scroll Animation for Sections */
.section--scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for child elements */
.section--scroll-animate .card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .card {
    opacity: 1;
    transform: translateY(0);
}

.section--scroll-animate .card:nth-child(1) {
    transition-delay: 0.1s;
}

.section--scroll-animate .card:nth-child(2) {
    transition-delay: 0.2s;
}

.section--scroll-animate .card:nth-child(3) {
    transition-delay: 0.3s;
}

.section--scroll-animate .card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Stagger for stepper items */
.section--scroll-animate .stepper__item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .stepper__item {
    opacity: 1;
    transform: translateY(0);
}

.section--scroll-animate .stepper__item:nth-child(1) {
    transition-delay: 0.1s;
}

.section--scroll-animate .stepper__item:nth-child(2) {
    transition-delay: 0.2s;
}

.section--scroll-animate .stepper__item:nth-child(3) {
    transition-delay: 0.3s;
}

.section--scroll-animate .stepper__item:nth-child(4) {
    transition-delay: 0.4s;
}

/* Stagger for benefits items */
.section--scroll-animate .benefits__item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .benefits__item {
    opacity: 1;
    transform: translateY(0);
}

.section--scroll-animate .benefits__item:nth-child(1) {
    transition-delay: 0.1s;
}

.section--scroll-animate .benefits__item:nth-child(2) {
    transition-delay: 0.2s;
}

.section--scroll-animate .benefits__item:nth-child(3) {
    transition-delay: 0.3s;
}

.section--scroll-animate .benefits__item:nth-child(4) {
    transition-delay: 0.4s;
}

.section--scroll-animate .benefits__item:nth-child(5) {
    transition-delay: 0.5s;
}

/* Stagger for FAQ items */
.section--scroll-animate .faq__item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .faq__item {
    opacity: 1;
    transform: translateY(0);
}

.section--scroll-animate .faq__item:nth-child(1) {
    transition-delay: 0.05s;
}

.section--scroll-animate .faq__item:nth-child(2) {
    transition-delay: 0.1s;
}

.section--scroll-animate .faq__item:nth-child(3) {
    transition-delay: 0.15s;
}

.section--scroll-animate .faq__item:nth-child(4) {
    transition-delay: 0.2s;
}

.section--scroll-animate .faq__item:nth-child(5) {
    transition-delay: 0.25s;
}

.section--scroll-animate .faq__item:nth-child(6) {
    transition-delay: 0.3s;
}

/* Animation for section titles and intros */
.section--scroll-animate .section__title,
.section--scroll-animate .section__intro {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .section__title,
.section--scroll-animate.section--animated .section__intro {
    opacity: 1;
    transform: translateY(0);
}

.section--scroll-animate .section__intro {
    transition-delay: 0.15s;
}

/* Animation for popular treatments header */
.section--scroll-animate .popular-treatments__header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .popular-treatments__header {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for popular treatments grid */
.section--scroll-animate .popular-treatments__grid {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .popular-treatments__grid {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Animation for testimonials header */
.section--scroll-animate .testimonials-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .testimonials-header {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for testimonials */
.section--scroll-animate .testimonials-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .testimonials-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Animation for trusted header */
.section--scroll-animate .trusted-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .trusted-header {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for trusted logos */
.section--scroll-animate .trusted-logos-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--scroll-animate.section--animated .trusted-logos-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .section--scroll-animate,
    .section--scroll-animate * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.section--light {
    background-color: #F7F9FC;
}

.section--cta {
    background-color: #2A4D75;
    color: #FFFFFF;
}

.section__title {
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
}

.section__title--white {
    color: #FFFFFF;
}

.section__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section__intro {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

.section__intro--white {
    color: rgba(255, 255, 255, 0.9);
}

.section__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.section__cta--closer {
    margin-top: 32px;
}

@media (min-width: 768px) {
    .section__cta--closer {
        margin-top: 40px;
    }
}

/* ============================================
   Cards
   ============================================ */

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 0;
}

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

@media (min-width: 1024px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 36px;
    }
}

.card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    position: relative;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 77, 117, 0.12);
    background-color: #FAFBFC;
}

.card:focus-visible {
    outline: 2px solid #2A4D75;
    outline-offset: 3px;
}

.card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(42, 77, 117, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2A4D75;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.card__icon svg {
    width: 24px;
    height: 24px;
}

.card__title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #1e3854;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card__title {
        font-size: 21px;
    }
}

.card__text {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .card__text {
        font-size: 16px;
    }
}

.card--treatment {
    text-align: center;
}

.card--treatment .card__title {
    margin-bottom: 8px;
}

.card__subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
}

.card__link {
    font-size: 14px;
    color: #2A4D75;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.card__link:hover {
    color: #1e3854;
    text-decoration: underline;
}

.card--testimonial {
    padding: 28px;
}

/* ============================================
   Popular Treatments
   ============================================ */

.popular-treatments {
    background: #f5f8fc;
    padding: 80px 0;
}

.popular-treatments__header {
    text-align: center;
    margin-bottom: 48px;
}

.popular-treatments__header h2 {
    color: #2A4D75;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.popular-treatments__header p {
    color: #555555;
    font-size: 16px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

@media (min-width: 768px) {
    .popular-treatments__header p {
        font-size: 17px;
    }
}

.popular-treatments__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .popular-treatments__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .popular-treatments__grid {
        grid-template-columns: 1fr;
    }
}

.treatment-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(15, 35, 52, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 280px;
    height: 100%;
}

.treatment-card.hidden,
.treatment-card--hidden {
    display: none;
}

.treatment-card--revealing {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card--revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card--revealed:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 32px rgba(15, 35, 52, 0.15);
}

.treatment-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}


.treatment-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3854;
    margin: 0;
    line-height: 1.3;
}

.treatment-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    flex-grow: 1;
}

.treatment-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    background: #25D366;
    color: #ffffff;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25);
}

.treatment-card__cta:hover {
    background: #1ebe5b;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.treatment-card__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-card__cta-icon svg {
    width: 18px;
    height: 18px;
}

/* Horizontal Card Layout - Always vertical (image on top, content below) */
.treatment-card__horizontal-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.treatment-card__image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 160px;
    flex-shrink: 0;
}

.treatment-card__image-wrapper--horizontal {
    width: 100%;
    height: 160px;
}

.treatment-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.treatment-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(42, 77, 117, 0.1) 0%, rgba(42, 77, 117, 0.05) 100%);
    color: #2A4D75;
}

.treatment-card__image-placeholder--aesthetic {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15) 0%, rgba(255, 192, 203, 0.08) 100%);
}

.treatment-card__image-placeholder--dermatology {
    background: linear-gradient(135deg, rgba(255, 218, 185, 0.15) 0%, rgba(255, 228, 196, 0.08) 100%);
}

.treatment-card__image-placeholder--dental {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.15) 0%, rgba(175, 238, 238, 0.08) 100%);
}

.treatment-card__image-placeholder--hair {
    background: linear-gradient(135deg, rgba(221, 160, 221, 0.15) 0%, rgba(238, 130, 238, 0.08) 100%);
}

.treatment-card__image-placeholder--wellness {
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.15) 0%, rgba(152, 251, 152, 0.08) 100%);
}

.treatment-card__image-placeholder--surgical {
    background: linear-gradient(135deg, rgba(255, 160, 122, 0.15) 0%, rgba(255, 182, 193, 0.08) 100%);
}

.treatment-card__image-placeholder--medical {
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.15) 0%, rgba(173, 216, 230, 0.08) 100%);
}

.treatment-card__image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}

.treatment-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    padding-top: 12px;
}

.treatment-card__category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(42, 77, 117, 0.08);
    color: #2A4D75;
    align-self: flex-start;
    margin-bottom: 4px;
}

.treatment-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2A4D75;
    background: rgba(42, 77, 117, 0.06);
    flex-shrink: 0;
    margin-bottom: 0;
}

.treatment-card__icon svg {
    width: 20px;
    height: 20px;
}

.popular-treatments__footer {
    margin-top: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.popular-treatments__footer.hidden {
    display: none;
}


.popular-treatments__view-more {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    border: 1.5px solid rgba(42, 77, 117, 0.3);
    color: #2A4D75;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.popular-treatments__view-more:hover {
    background: rgba(42, 77, 117, 0.06);
    border-color: rgba(42, 77, 117, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 77, 117, 0.15);
}

.popular-treatments__view-more:active {
    transform: translateY(0);
}

.popular-treatments__see-all {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(42, 77, 117, 0.2);
    color: #2A4D75;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: #ffffff;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.popular-treatments__see-all:hover {
    background: rgba(42, 77, 117, 0.04);
    border-color: rgba(42, 77, 117, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .popular-treatments {
        padding: 60px 0;
    }

    .popular-treatments__header h2 {
        font-size: 28px;
    }

    .popular-treatments__header p {
        font-size: 15px;
    }
}

/* ============================================
   Stepper (How It Works)
   ============================================ */

.section--how-it-works {
    padding-top: 40px;
}

@media (min-width: 768px) {
    .section--how-it-works {
        padding-top: 56px;
    }
}

.stepper__trust-line {
    text-align: center;
    font-size: 15px;
    color: #666666;
    margin: 0 auto 40px;
    max-width: 640px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .stepper__trust-line {
        font-size: 16px;
        margin-bottom: 48px;
    }
}

.stepper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 640px;
    margin: 0 auto 40px;
}

@media (min-width: 768px) {
    .stepper {
        gap: 32px;
    }
}

.stepper__item {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.stepper__item:hover {
    background-color: #F7F9FC;
    box-shadow: 0 2px 8px rgba(42, 77, 117, 0.08);
}

.stepper__item:focus-within {
    outline: 2px solid #2A4D75;
    outline-offset: 4px;
    border-radius: 12px;
}

.stepper__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #2A4D75;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(42, 77, 117, 0.2);
}

@media (min-width: 768px) {
    .stepper__number {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}

.stepper__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #2A4D75;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .stepper__icon {
        width: 36px;
        height: 36px;
        margin-top: 14px;
    }
}

.stepper__icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .stepper__icon svg {
        width: 28px;
        height: 28px;
    }
}

.stepper__content {
    flex: 1;
    padding-top: 0;
    max-width: 100%;
}

.stepper__title {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1e3854;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .stepper__title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.stepper__text {
    font-size: 15px;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 100%;
}

@media (min-width: 768px) {
    .stepper__text {
        font-size: 16px;
    }
}

.section__cta--how-it-works {
    margin-top: 24px;
}

@media (min-width: 768px) {
    .section__cta--how-it-works {
        margin-top: 32px;
    }
}

.btn--how-it-works {
    padding: 12px 24px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .btn--how-it-works {
        padding: 14px 28px;
        font-size: 17px;
    }
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .benefits {
        grid-template-columns: 0.85fr 1fr;
        gap: 64px;
        align-items: start;
    }
}

.benefits__image {
    order: 2;
}

@media (min-width: 1024px) {
    .benefits__image {
        order: 1;
    }
}

.benefits__content {
    order: 1;
}

@media (min-width: 1024px) {
    .benefits__content {
        order: 2;
    }
}

.benefits__image-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.benefits__image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #F7F9FC 0%, #E5E5E5 100%);
    border-radius: 16px;
}

.benefits__content .section__title {
    margin-bottom: 40px;
}

.benefits__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits__item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefits__item:last-child {
    margin-bottom: 0;
}

.benefits__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #2A4D75;
    margin-top: 3px;
    opacity: 0.9;
}

.benefits__text {
    flex: 1;
}

.benefits__text strong {
    display: block;
    font-size: 18px;
    color: #1e3854;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.4;
}

.benefits__text p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 0;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .benefits__text p {
        font-size: 16px;
    }
}

.benefits__cta {
    margin-top: 20px;
}

/* ============================================
   Testimonials / Trustpilot Reviews
   ============================================ */

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header .section__title {
    margin-bottom: 20px;
}

.trustpilot-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.trustpilot-logo svg {
    width: 38px;
    height: 38px;
    display: block;
    flex-shrink: 0;
}

.trustpilot-text {
    font-size: 24px;
    font-weight: 700;
    color: #2A4D75;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trustpilot-score {
    font-size: 28px;
    font-weight: 700;
    color: #1e3854;
}

.trustpilot-stars {
    display: flex;
    gap: 3px;
}

.trustpilot-star {
    color: #FFD700;
    font-size: 18px;
}

.trustpilot-star--half {
    opacity: 0.5;
}

.trustpilot-microcopy {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-style: italic;
}

.testimonials-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 32px;
    overflow: hidden;
    position: relative;
}

.testimonials-scroll {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: scroll-testimonials 50s linear infinite;
    padding: 10px 0;
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    min-height: 280px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A4D75 0%, #1e3854 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-card__info {
    flex: 1;
    min-width: 0;
}

.testimonial-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.testimonial-card__time {
    font-size: 12px;
    color: #999999;
}

.testimonial-card__rating {
    display: flex;
    gap: 2px;
    margin-left: 4px;
}

.testimonial-card__star {
    color: #2A4D75;
    font-size: 14px;
}

.testimonial-card__text {
    font-size: 14px;
    color: #333333;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-card__link {
    font-size: 13px;
    font-weight: 600;
    color: #2A4D75;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.testimonial-card__link:hover {
    color: #1e3854;
    transform: translateX(2px);
}

.testimonial-card__link-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.testimonials-footer {
    text-align: center;
    margin-bottom: 24px;
}

.testimonials-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section__cta--testimonials {
    margin-top: 0;
}

.section__cta--testimonials .btn {
    box-shadow: 0 4px 12px rgba(42, 77, 117, 0.25);
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .testimonial-card {
        width: 360px;
        min-height: 300px;
    }
    
    .testimonials-wrapper {
        max-width: 1600px;
    }
    
    .testimonial-card__text {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        width: 400px;
        min-height: 320px;
    }
    
    .testimonials-wrapper {
        max-width: 1800px;
    }
    
    .trustpilot-text {
        font-size: 26px;
    }
    
    .trustpilot-score {
        font-size: 30px;
    }
}

/* ============================================
   FAQ Accordion
   ============================================ */

.section--faq {
    position: relative;
}

.section--faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 77, 117, 0.2), transparent);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header .section__title {
    margin-bottom: 12px;
}

.faq__subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.faq {
    max-width: 680px;
    margin: 0 auto 32px;
}

.faq__item {
    border-bottom: 1px solid #E0E0E0;
    transition: background-color 0.2s ease;
    margin-bottom: 0;
}

.faq__item:first-child {
    border-top: 1px solid #E0E0E0;
}

.faq__item.is-open {
    background-color: rgba(42, 77, 117, 0.02);
    position: relative;
}

.faq__item.is-open::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #2A4D75;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #2A4D75;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.2s ease;
    position: relative;
}

.faq__question:hover {
    color: #1e3854;
    background-color: rgba(42, 77, 117, 0.03);
}

.faq__question:focus {
    outline: 2px solid #2A4D75;
    outline-offset: 2px;
    border-radius: 4px;
}

.faq__question:focus:not(:focus-visible) {
    outline: none;
}

.faq__question:focus-visible {
    outline: 2px solid #2A4D75;
    outline-offset: 2px;
    border-radius: 4px;
}

.faq__question span {
    flex: 1;
    padding-right: 20px;
}

.faq__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #1e3854;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
    color: #2A4D75;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
    max-width: 100%;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
    padding: 0 0 26px 32px;
}

.faq__answer p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 100%;
}

@media (min-width: 768px) {
    .faq__answer p {
        font-size: 16px;
    }
}

.section__cta--faq {
    margin-top: 0;
    text-align: center;
}

.faq__cta-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.faq__cta-caption {
    font-size: 16px;
    color: #2A4D75;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(42, 77, 117, 0.15);
    padding: 56px 0 24px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 77, 117, 0.25), transparent);
}

.site-footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .site-footer__content {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .site-footer__content {
        grid-template-columns: 1.5fr 1fr;
        gap: 64px;
    }
}

.site-footer__brand {
    max-width: 100%;
}

.site-footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.site-footer__logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #2A4D75;
}

.site-footer__description {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 12px;
}

.site-footer__trust-line {
    font-size: 14px;
    color: #2A4D75;
    line-height: 1.6;
    max-width: 420px;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .site-footer__links {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

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

.site-footer__heading {
    font-size: 16px;
    font-weight: 700;
    color: #1e3854;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555555;
    margin-bottom: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
}

.site-footer__link:hover {
    color: #2A4D75;
    text-decoration: underline;
}

.site-footer__link--email {
    word-break: break-word;
}

.site-footer__link--external {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer__link-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.site-footer__link--external:hover .site-footer__link-icon {
    opacity: 1;
    transform: translate(2px, -2px);
}

.site-footer__copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(224, 224, 224, 0.8);
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer__copyright p {
    font-size: 13px;
    color: #999999;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 48px 0 24px;
    }
    
    .site-footer__content {
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .site-footer__brand {
        order: 1;
    }
    
    .site-footer__links {
        order: 2;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .site-footer__column {
        text-align: left;
    }
    
    .site-footer__description,
    .site-footer__trust-line {
        max-width: 100%;
    }
    
    .site-footer__copyright {
        padding-top: 32px;
    }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */

.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFFFFF;
    padding: 0;
}

.whatsapp-floating:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-floating:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

.whatsapp-floating:active {
    transform: scale(0.95);
}

.whatsapp-floating svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {
    .whatsapp-floating {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .whatsapp-floating svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   Accessibility
   ============================================ */

:focus-visible {
    outline: 2px solid #2A4D75;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2A4D75;
    color: #FFFFFF;
    padding: 8px 16px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .site-header,
    .whatsapp-floating,
    .btn {
        display: none;
    }
}

