:root {
    --bg: #f4f8fc;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --ink: #11243c;
    --muted: #5e6e82;
    --border: rgba(17, 36, 60, 0.12);
    --blue: #0b6cff;
    --blue-2: #1c8cff;
    --teal: #00b8a6;
    --amber: #f4a61b;
    --shadow: 0 24px 60px rgba(17, 36, 60, 0.12);
    --shadow-soft: 0 14px 30px rgba(17, 36, 60, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max-width: 1240px;
    --heading-font: "Trebuchet MS", "Segoe UI", "Franklin Gothic Medium", sans-serif;
    --body-font: "Segoe UI", "Helvetica Neue", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(11, 108, 255, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(0, 184, 166, 0.12), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
    font-family: var(--body-font);
    overflow-x: hidden;
}

body.scrolled .site-header {
    box-shadow: 0 14px 32px rgba(17, 36, 60, 0.1);
    background: rgba(247, 251, 255, 0.96);
    backdrop-filter: blur(16px);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--blue);
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    position: relative;
    min-height: 100vh;
}

.container-xl {
    max-width: var(--max-width);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(247, 251, 255, 0.82);
    border-bottom: 1px solid rgba(17, 36, 60, 0.08);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.header-bar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 16px 30px rgba(11, 108, 255, 0.24);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-copy strong {
    font-family: var(--heading-font);
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.2;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.88rem;
}

.header-links {
    align-items: center;
    gap: 1.4rem;
    font-weight: 600;
}

.header-links a {
    position: relative;
    color: var(--muted);
    padding: 0.3rem 0;
}

.header-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.18rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.header-links a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    box-shadow: none !important;
}

.btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    padding: 0.82rem 1.35rem;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    transform: translateY(-1px);
}

.btn-soft {
    color: var(--ink);
    background: rgba(11, 108, 255, 0.08);
    border: 1px solid rgba(11, 108, 255, 0.12);
    padding: 0.82rem 1.35rem;
}

.btn-soft:hover,
.btn-soft:focus {
    color: var(--ink);
    background: rgba(11, 108, 255, 0.12);
}

.btn-ghost,
.btn-outline-dark,
.btn-outline-light {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.82rem 1.25rem;
}

.btn-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 36, 60, 0.1);
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
}

.btn-outline-dark {
    border-color: rgba(17, 36, 60, 0.15);
    color: var(--ink);
}

.btn svg,
.contact-link svg,
.social-pill span,
.feature-icon svg,
.info-icon svg,
.floating-whatsapp svg,
.back-to-top svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.btn,
.contact-link,
.social-pill,
.link-stack a,
.hero-links a,
.floating-whatsapp,
.back-to-top {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.contact-link:hover,
.social-pill:hover,
.link-stack a:hover,
.hero-links a:hover,
.floating-whatsapp:hover,
.back-to-top:hover {
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    padding: 3.2rem 0 2rem;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.95;
    pointer-events: none;
}

.hero-shape-a {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(11, 108, 255, 0.18) 0%, rgba(11, 108, 255, 0) 68%);
}

.hero-shape-b {
    width: 22rem;
    height: 22rem;
    right: -6rem;
    top: 2rem;
    background: radial-gradient(circle, rgba(0, 184, 166, 0.18) 0%, rgba(0, 184, 166, 0) 68%);
}

.breadcrumb-wrap {
    margin-bottom: 1.8rem;
}

.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(17, 36, 60, 0.08);
    box-shadow: var(--shadow-soft);
}

.custom-breadcrumb .breadcrumb-item {
    color: var(--muted);
    font-size: 0.95rem;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(17, 36, 60, 0.35);
}

.custom-breadcrumb a {
    color: var(--ink);
    font-weight: 600;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-tag,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow {
    padding: 0.65rem 1rem;
    color: #fff;
    background: rgba(10, 31, 54, 0.72);
    backdrop-filter: blur(12px);
}

.hero-section h1,
.section-heading h2,
.pricing-card h3,
.feature-card h3,
.process-card h3,
.info-card h3,
.contact-card h3,
.faq-item summary {
    font-family: var(--heading-font);
}

.hero-section h1 {
    margin: 1.1rem 0 1rem;
    max-width: 14ch;
    color: #0b1f36;
    font-size: clamp(2.6rem, 6vw, 5.1rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 52rem;
    font-size: clamp(1.08rem, 1.6vw, 1.35rem);
    line-height: 1.8;
    color: var(--ink);
}

.hero-copy,
.content-copy p,
.section-lead,
.info-card p,
.feature-card p,
.process-card p,
.pricing-card p,
.contact-card p,
.faq-body p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.hero-badges,
.hero-links,
.package-features,
.link-stack,
.footer-links,
.footer-meta,
.social-grid,
.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 36, 60, 0.08);
    box-shadow: var(--shadow-soft);
    color: var(--ink);
}

.hero-badges strong {
    font-size: 0.95rem;
}

.hero-links a,
.link-stack a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 36, 60, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
}

.hero-panel {
    display: grid;
    place-items: center;
}

.glass-card,
.info-card,
.pricing-card,
.feature-card,
.process-card,
.contact-card,
.faq-item {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 36, 60, 0.09);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.glass-card {
    width: 100%;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
}

.card-kicker {
    color: var(--blue);
}

.price-figure,
.pricing-price {
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.price-figure {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.spot-badge,
.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0a1f36;
    background: rgba(11, 108, 255, 0.1);
}

.pricing-ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    font-size: 0.8rem;
    font-weight: 800;
    margin-left: 0.5rem;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.mini-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    border: 1px solid rgba(17, 36, 60, 0.08);
}

.mini-item > span,
.feature-icon,
.info-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.85rem;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 12px 24px rgba(11, 108, 255, 0.18);
}

.mini-item strong,
.feature-card h3,
.info-card h3,
.process-card h3,
.contact-card h3,
.pricing-card h3 {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ink);
    font-size: 1.18rem;
}

.mini-item small {
    color: var(--muted);
    line-height: 1.6;
}

.section-pad {
    padding: 4.8rem 0;
}

.section-heading {
    margin-bottom: 1.9rem;
    max-width: 70rem;
}

.section-tag {
    padding: 0.6rem 0.95rem;
    color: var(--blue);
    background: rgba(11, 108, 255, 0.08);
    margin-bottom: 1rem;
}

.section-heading h2 {
    margin: 0 0 0.85rem;
    color: var(--ink);
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-lead {
    max-width: 60rem;
    margin-bottom: 0;
}

.content-copy {
    display: grid;
    gap: 1rem;
}

.content-copy p {
    margin: 0;
    max-width: 72ch;
}

.info-stack {
    display: grid;
    gap: 1rem;
}

.info-card,
.feature-card,
.process-card {
    padding: 1.5rem;
}

.pricing-card {
    position: relative;
    padding: 1.5rem;
    height: 100%;
    overflow: hidden;
}

.pricing-card.featured {
    border: 1px solid rgba(11, 108, 255, 0.2);
    box-shadow: 0 24px 50px rgba(11, 108, 255, 0.12);
    transform: translateY(-8px);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 108, 255, 0.05), transparent 28%);
    pointer-events: none;
}

.pricing-top {
    position: relative;
    z-index: 1;
}

.pricing-price {
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin-top: 0.5rem;
}

.pricing-table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    margin-bottom: 0;
}

.pricing-table th,
.pricing-table td {
    padding: 0.62rem 0;
    border-color: rgba(17, 36, 60, 0.08);
}

.pricing-table th {
    width: 42%;
    color: var(--ink);
    font-weight: 700;
}

.package-features {
    align-items: flex-start;
}

.package-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    background: rgba(11, 108, 255, 0.07);
    color: var(--ink);
    font-size: 0.92rem;
}

.feature-card p,
.info-card p,
.process-card p,
.pricing-card p {
    margin-bottom: 0;
}

.keyword-cloud {
    gap: 0.8rem;
}

.keyword-chip {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 36, 60, 0.08);
    box-shadow: var(--shadow-soft);
    color: var(--ink);
    font-size: 0.95rem;
}

.process-card {
    height: 100%;
}

.process-step {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border-radius: 18px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.2rem 1.35rem;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(11, 108, 255, 0.08);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-body {
    padding-top: 0.9rem;
}

.contact-section {
    padding-bottom: 5.5rem;
}

.contact-card {
    padding: 1.5rem;
}

.contact-form .form-label {
    font-weight: 700;
    color: var(--ink);
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 52px;
    border-radius: 16px;
    border-color: rgba(17, 36, 60, 0.14);
    box-shadow: none;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-form textarea.form-control {
    min-height: 150px;
    padding-top: 0.9rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgba(11, 108, 255, 0.45);
    box-shadow: 0 0 0 0.22rem rgba(11, 108, 255, 0.12);
}

.form-note {
    color: var(--muted);
    line-height: 1.6;
}

.contact-side {
    display: grid;
    gap: 1rem;
}

.contact-details {
    display: grid;
    gap: 0.95rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: var(--surface-2);
    border: 1px solid rgba(17, 36, 60, 0.08);
}

.contact-link span {
    font-weight: 700;
    color: var(--ink);
}

.social-card h3 {
    margin-bottom: 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.social-pill {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.92rem 1rem;
    border-radius: 18px;
    color: #fff;
}

.social-pill span:first-child {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.social-pill div {
    display: flex;
    flex-direction: column;
}

.social-pill strong {
    font-size: 1rem;
}

.social-pill small {
    color: rgba(255, 255, 255, 0.82);
}

.social-pill.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5ad8);
}

.social-pill.instagram {
    background: linear-gradient(135deg, #f56040, #c13584, #5851db);
}

.social-pill.tiktok {
    background: linear-gradient(135deg, #111, #3b3b3b);
}

.social-pill.linkedin {
    background: linear-gradient(135deg, #0a66c2, #084c8d);
}

.footer-links,
.footer-meta {
    justify-content: space-between;
}

.site-footer {
    padding: 2.3rem 0 1.3rem;
    border-top: 1px solid rgba(17, 36, 60, 0.08);
    background: rgba(255, 255, 255, 0.65);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
}

.footer-inner strong {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    color: var(--ink);
}

.footer-inner p {
    max-width: 52rem;
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.footer-links {
    justify-content: flex-end;
    align-items: center;
}

.footer-links a {
    color: var(--muted);
    font-weight: 700;
}

.footer-meta {
    padding-top: 0.95rem;
    border-top: 1px solid rgba(17, 36, 60, 0.08);
    color: var(--muted);
    font-size: 0.94rem;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    z-index: 1035;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border: 0;
    box-shadow: var(--shadow);
}

.floating-whatsapp {
    left: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.icon-svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .header-bar {
        min-height: 76px;
    }

    .hero-section {
        padding-top: 2.2rem;
    }

    .hero-section h1 {
        max-width: 14ch;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-links,
    .footer-meta {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .brand-mark {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .brand-copy strong {
        font-size: 0.95rem;
    }

    .brand-copy small {
        font-size: 0.82rem;
    }

    .section-pad {
        padding: 3.6rem 0;
    }

    .hero-badges,
    .hero-links,
    .package-features,
    .footer-links,
    .footer-meta {
        gap: 0.55rem;
    }

    .hero-badges span,
    .keyword-chip,
    .hero-links a,
    .link-stack a {
        width: 100%;
        justify-content: flex-start;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .custom-breadcrumb {
        width: 100%;
        justify-content: flex-start;
        border-radius: 18px;
        padding: 0.75rem 1rem;
    }

    .floating-whatsapp {
        left: 0.8rem;
        bottom: 0.8rem;
    }

    .back-to-top {
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .footer-inner {
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .header-actions {
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-soft,
    .btn-ghost,
    .btn-outline-light,
    .btn-outline-dark {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .pricing-card,
    .feature-card,
    .process-card,
    .contact-card,
    .info-card,
    .glass-card,
    .faq-item {
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
