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

html {
    scroll-behavior: smooth;
}

.starter2-body {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: var(--base-size, 16px);
    line-height: var(--line-height, 1.65);
    color: var(--color-text, #1f2937);
    background: var(--color-bg, #f3f4f6);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text, #1f2937);
}

a {
    color: var(--color-primary, #007080);
    text-decoration: none;
    transition: all 0.2s;
}

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

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

.s2-header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.s2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 16px;
}

.s2-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.s2-logo-img {
    max-height: 60px;
    width: auto;
}

.s2-nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
}

.s2-nav-link {
    display: block;
    padding: 6px 14px;
    color: var(--color-text, #1f2937);
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    border-radius: 6px;
    position: relative;
    transition: color 0.15s;
}

.s2-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary, #007080), var(--color-secondary, #00a3b5));
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.s2-nav-link:hover {
    color: var(--color-primary, #007080);
}

.s2-nav-link:hover::after {
    transform: scaleX(1);
}

.s2-nav-link.active {
    color: var(--color-primary, #007080);
}


.s2-has-dropdown {
    position: relative;
}

.s2-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
    border: 1px solid var(--color-border, #e5e7eb);
}

.s2-has-dropdown:hover .s2-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.s2-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text, #1f2937);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading, 'Inter', sans-serif);
    transition: all 0.2s;
    text-decoration: none;
}

.s2-dropdown-menu a:hover {
    color: var(--color-primary, #007080);
    background: var(--color-surface, #f8fafc);
    padding-left: 24px;
}

.s2-mobile-dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.s2-mobile-dropdown-toggle .arrow {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 0.8rem;
    opacity: 0.6;
}

.s2-mobile-dropdown-toggle.open .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.s2-mobile-dropdown-menu {
    list-style: none;
    padding-left: 15px;
    display: none;
    margin-top: 5px;
}

.s2-mobile-dropdown-menu.open {
    display: block;
}

.s2-mobile-sublink {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary, #64748b);
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    text-decoration: none;
}

.s2-mobile-sublink:last-child {
    border-bottom: none;
}

.s2-header-cta {
    background: var(--color-primary, #007080);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
}

.s2-header-cta:hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width:769px) {
    .s2-mobile-only {
        display: none !important;
    }
}

.s2-hero {
    background: linear-gradient(135deg, var(--color-primary, #007080) 0%, var(--color-secondary, #00a3b5) 100%);
    color: #ffffff;
    padding: 80px 24px 72px;
    text-align: center;
}

.s2-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.s2-hero .hero-block {
    max-width: 700px;
    margin: 0 auto;
}

.s2-hero .hero-content {
    text-align: center;
}

.s2-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
    line-height: 1.15;
}

.s2-hero .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.s2-hero .hero-actions {
    margin-bottom: 48px;
}

.s2-hero .hero-actions .btn,
.s2-hero .hero-actions .btn-primary {
    background: #315456 !important;
    color: #ffffff !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.25s;
    border: none;
}

.s2-hero .hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.s2-hero .trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.s2-hero .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 500;
}

.s2-hero .trust-badge-icon svg {
    stroke: rgba(255, 255, 255, 0.7);
    width: 22px;
    height: 22px;
}

.s2-hero .trust-badge-label {
    text-align: left;
    line-height: 1.3;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

.s2-section.page-hero {
    background: linear-gradient(135deg, var(--color-primary, #007080) 0%, var(--color-secondary, #00a3b5) 100%) !important;
    color: #fff;
    padding: 60px 24px 48px;
}

.page-hero-block {
    text-align: center;
}

.page-hero-block .container {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-block .breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.page-hero-block .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-hero-block .breadcrumb a:hover {
    color: #fff;
}

.page-hero-block .breadcrumb .sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-block h1 {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.3;
}

.s2-section {
    padding: 72px 0;
}

.s2-section:nth-child(odd) {
    background: var(--color-surface, #ffffff);
}

.s2-section:nth-child(even) {
    background: var(--color-bg, #f3f4f6);
}

.s2-section.section-terrain-ice {
    background: var(--terrain-ice, #eef3f8) !important;
}

.s2-section.section-terrain-warm {
    background: var(--terrain-warm, #fef9f3) !important;
}

.s2-section.section-terrain-dark {
    background: var(--terrain-dark, #0a2342) !important;
    color: #ffffff;
}

.s2-section.section-terrain-dark .s2-section-title,
.s2-section.section-terrain-dark .heading {
    color: #ffffff;
}

.s2-section.section-terrain-dark .s2-title-accent {
    background: var(--color-accent, #13c2c2);
}

.s2-section.section-terrain-dark p,
.s2-section.section-terrain-dark li {
    color: rgba(255, 255, 255, 0.78) !important;
}

.s2-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.s2-split-reverse {
    direction: rtl;
}

.s2-split-reverse>* {
    direction: ltr;
}

.s2-split-col .heading {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-text, #111827);
}

.s2-split-col .text-content p {
    color: var(--color-text-secondary, #4b5563);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.s2-split-col .text-content ul,
.s2-split-col .text-content ol {
    list-style: none;
    padding: 0;
}

.s2-split-col .text-content li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--color-text-secondary, #4b5563);
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    line-height: 1.65;
}

.s2-split-col .text-content li:last-child {
    border-bottom: none;
}

.s2-split-col .text-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    background: var(--color-primary, #007080);
    border-radius: 50%;
}

.s2-split-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.s2-why-choose {
    background: var(--terrain-dark, #0a2342) !important;
    color: #fff;
    padding: 80px 0;
}

.s2-why-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.3;
}

.s2-why-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s2-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.65;
}

.s2-check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.s2-why-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.s2-why-choose .s2-block-why_choose:empty {
    display: none;
}

.s2-why-choose .s2-split-col strong {
    color: #fff;
}

.s2-why-choose li::before,
.section-terrain-dark li::before {
    background: rgba(255, 255, 255, 0.9);
}

.s2-why-choose .why-choose-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s2-why-choose .why-choose-item {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.65;
}

.s2-why-choose .why-choose-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--color-primary, #007080);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.kicker {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary, #007080);
    margin-bottom: 8px;
}

.s2-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.s2-card {
    background: var(--color-surface, #ffffff);
    padding: 36px 28px 32px;
    border-radius: 16px;
    border: 1px solid var(--color-border, #e5e7eb);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.s2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.s2-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary, #007080);
    color: #ffffff;
}

.s2-card-icon-svg {
    stroke: #ffffff;
}

.s2-card .heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text, #111827);
}

.s2-card .text-content p {
    color: var(--color-text-secondary, #6b7280);
    font-size: 0.9rem;
    line-height: 1.65;
}

.s2-card-media {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.s2-card-media:hover {
    transform: none;
    box-shadow: none;
}

.s2-card-media img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
}

.s2-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.s2-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.s2-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.s2-content {
    max-width: 800px;
    margin: 0 auto;
}

.s2-block+.s2-block {
    margin-top: 4px;
}

.s2-block .heading {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.s2-block h2.heading {
    font-weight: 800;
    color: var(--color-primary, #007080);
}

.s2-why-choose .s2-block .heading,
.section-terrain-dark .s2-block .heading {
    color: #fff;
}

.s2-block h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary, #007080);
    margin-bottom: 16px;
}

.s2-block .text-content p,
.s2-block-paragraph p,
.s2-block-richtext p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary, #6b7280);
    margin-bottom: 14px;
}

.s2-block-richtext ul,
.s2-block-richtext ol,
.s2-block-list ul,
.s2-block-list ol,
.s2-block ul,
.s2-block ol,
.s2-content ul,
.s2-content ol {
    list-style: none;
    margin: 12px 0 20px 0;
    padding: 0;
    color: var(--color-text-secondary, #6b7280);
}

.s2-block-richtext li,
.s2-block-list li,
.s2-block li,
.s2-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.s2-block-richtext li::before,
.s2-block-list li::before,
.s2-block li::before,
.s2-content li::before {
    content: '';
    flex-shrink: 0;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

.s2-block-image img {
    border-radius: 16px;
}

.s2-btn,
.btn,
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.s2-btn-primary,
.btn-primary {
    background: var(--color-primary, #007080);
    color: #ffffff;
}

.s2-btn-primary:hover,
.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.s2-cta-fullwidth {
    background: linear-gradient(135deg, var(--color-primary, #007080), var(--color-secondary, #00a3b5));
    color: #ffffff;
    padding: 72px 24px;
    text-align: center;
}

.s2-cta-fullwidth .cta-block {
    max-width: 700px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.s2-cta-fullwidth h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.s2-cta-fullwidth p,
.s2-cta-fullwidth .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 28px;
}

.s2-cta-fullwidth .btn,
.s2-cta-fullwidth .btn-primary {
    background: var(--color-surface, #ffffff) !important;
    color: var(--color-primary, #007080) !important;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.s2-cta-fullwidth .btn:hover {
    background: color-mix(in srgb, var(--color-surface, #ffffff) 92%, transparent) !important;
    transform: translateY(-2px);
}

.s2-section .cta-block {
    text-align: center;
    padding: 56px 36px;
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-primary, #007080), var(--color-secondary, #00a3b5));
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.s2-section .cta-block h2 {
    color: #ffffff;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.s2-section .cta-block p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.s2-section .cta-block .btn {
    background: var(--color-surface, #ffffff) !important;
    color: var(--color-primary) !important;
    font-weight: 700;
}

.phone-cta-strip {
    background: linear-gradient(135deg, var(--color-primary, #007080), var(--color-secondary, #00a3b5));
    text-align: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.phone-cta-strip a {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--color-surface, #ffffff);
    color: var(--color-primary, #007080) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.25s;
}

.phone-cta-strip a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mobile-call-bar {
    display: none;
}

@media (max-width:768px) {
    .mobile-call-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: linear-gradient(135deg, var(--color-primary, #007080), var(--color-secondary, #00a3b5));
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-call-bar.visible {
        transform: translateY(0);
    }

    .mobile-call-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #ffffff;
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .mobile-call-bar a .mcb-text {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }

    .mobile-call-bar a .mcb-label {
        font-size: 0.85rem;
        font-weight: 700;
    }

    .mobile-call-bar a .mcb-number {
        font-size: 0.8rem;
        font-weight: 400;
        opacity: 0.85;
    }

    body {
        padding-bottom: 56px;
    }

    .s2-back-top {
        bottom: 100px;
    }

    .mobile-call-bar-split {
        display: flex;
        gap: 0;
        padding: 0;
    }

    .mobile-call-bar-split.visible {
        display: flex;
    }

    .mobile-call-bar-split a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 8px;
        color: #fff;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .mobile-call-bar-phone {
        background: var(--color-primary, #007080);
    }

    .mobile-call-bar-wa {
        background: #25d366;
    }
}

.s2-footer {
    background: var(--terrain-dark, #0a2342);
    color: color-mix(in srgb, var(--color-text-secondary, #9ca3af) 80%, #ffffff);
    padding: 60px 0 0;
    font-size: 0.88rem;
}

.s2-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 36px;
    margin-bottom: 40px;
}

.s2-footer-heading {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.s2-footer-links {
    list-style: none;
    padding: 0;
}

.s2-footer-links li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.s2-footer-links a {
    color: color-mix(in srgb, var(--color-text-secondary, #9ca3af) 80%, #ffffff);
    transition: color 0.2s;
    font-size: 0.85rem;
}

.s2-footer-links a:hover {
    color: #ffffff;
}

.s2-footer-logo {
    max-height: 38px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.s2-footer-bottom {
    background-color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-secondary, #6b7280);
    width: 100%;
}

.s2-footer-bottom-inner {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.s2-back-top {
    position: fixed;
    bottom: 200px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--color-surface, #ffffff);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.s2-back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.s2-back-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary, #007080);
    fill: none;
    stroke-width: 2.5;
}

.s2-wa-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.s2-wa-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.s2-wa-float:hover {
    transform: scale(1.08);
}

.s2-wa-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.s2-wa-float.s2-phone-float {
    background: var(--color-primary, #007080);
    bottom: 96px;
}

.s2-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.s2-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.s2-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-text, #1f2937);
    border-radius: 2px;
    transition: all 0.25s;
}

.s2-mobile-nav {
    display: none;
    background: var(--color-surface, #ffffff);
    padding: 16px 24px;
    border-top: 1px solid var(--color-border, #e5e7eb);
}

.s2-mobile-nav.active {
    display: block;
}

.s2-mobile-list {
    list-style: none;
}

.s2-mobile-link {
    display: block;
    padding: 14px 0;
    color: var(--color-text, #1f2937);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border, #e5e7eb);
}

.s2-mobile-contact {
    margin-top: 20px;
}

.s2-mobile-contact .btn-primary {
    background: var(--color-accent, #13c2c2) !important;
}

@media (max-width:768px) {

    .s2-nav,
    .s2-header-cta {
        display: none;
    }

    .s2-menu-btn {
        display: block;
    }

    .s2-hero {
        padding: 56px 20px 48px;
    }

    .s2-hero h1 {
        font-size: 1.8rem;
    }

    .s2-hero .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .s2-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .s2-split-photo img {
        height: 280px;
    }

    .s2-card-grid,
    .s2-cols-2,
    .s2-cols-3,
    .s2-cols-4 {
        grid-template-columns: 1fr;
    }

    .s2-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .s2-section {
        padding: 48px 0;
    }

    .s2-cta-fullwidth {
        padding: 48px 20px;
    }
}

.s2-block h2.heading {
    font-weight: 800;
    color: var(--color-primary, #007080);
    letter-spacing: -0.7px;
}

.s2-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s2-footer-bottom-logo {
    display: block;
    margin: 0 auto 16px;
    text-decoration: none;
}

.s2-footer-bottom-logo img {
    max-height: 48px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.s2-footer-bottom-logo img:hover {
    opacity: 1;
}

.s2-footer-bottom-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width:480px) {
    .s2-hero {
        padding: 40px 16px;
    }

    .s2-hero h1 {
        font-size: 1.5rem;
    }

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

    .s2-container {
        padding: 0 16px;
    }
}

.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    display: none;
    background: var(--color-primary, #0d6efd);
}

.mobile-call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.mobile-call-bar a svg {
    flex-shrink: 0;
}

.mobile-call-bar-split {
    display: none;
}

.mobile-call-bar-split a {
    flex: 1;
    text-align: center;
}

.mobile-call-bar-phone {
    background: var(--color-primary, #0d6efd);
    color: #fff !important;
}

.mobile-call-bar-wa {
    background: #25d366;
    color: #fff !important;
}

@media (max-width:768px) {

    .mobile-call-bar,
    .mobile-call-bar-split {
        display: flex;
    }

    body {
        padding-bottom: 56px;
    }
}

.s2-section img:not(.logo-img):not([width="1"]) {
    transition: transform .2s ease, box-shadow .2s ease;
}

.s2-section img:not(.logo-img):not([width="1"]):hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.icon-box__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text, #1f2937);
    margin-bottom: 8px;
    line-height: 1.3;
}

.icon-box__desc {
    font-size: 0.88rem;
    color: var(--color-text-secondary, #6b7280);
    line-height: 1.6;
    margin: 0;
}