:root {
    --bg: #ffffff;
    --bg-alt: #f6f8fb;
    --text: #0b1220;
    --muted: #667085;
    --brand: #2b84ff;
    --brand-2: #69a7ff;
    --ok: #16a34a;
    --card: #ffffff;
    --stroke: #e5e7eb;
    --shadow: 0 8px 24px rgba(2, 41, 89, .08);
    --header-h: 64px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu;
    line-height: 1.6
}

img {
    max-width: 70%;
    display: block
}

a {
    color: var(--brand);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.container {
    width: min(1450px, 92%);
    margin-inline: auto
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid #eef2f7;
    transition: all 0.3s ease;
    will-change: transform;
}

/* Header sticky effect on scroll */
.header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

/* Ensure body has proper scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Prevent content from going under fixed header */
body {
    padding-top: var(--header-h, 64px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when menu is open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav a {
    color: var(--text)
}

.nav a:hover {
    color: var(--brand)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 48px;
}

.button:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.button--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border: 2px solid var(--brand);
    color: #fff;
    box-shadow: 0 4px 16px rgba(43, 132, 255, 0.3);
}

.button--primary:hover {
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    border-color: var(--brand-2);
    box-shadow: 0 8px 32px rgba(43, 132, 255, 0.4);
    transform: translateY(-3px);
}

.button--primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(43, 132, 255, 0.5);
}

.button--ghost {
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
    box-shadow: 0 2px 8px rgba(43, 132, 255, 0.1);
}

.button--ghost:hover {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 24px rgba(43, 132, 255, 0.25);
    transform: translateY(-3px);
}

.button--ghost:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(43, 132, 255, 0.3);
}

/* Button variants */
.button--large {
    padding: 18px 32px;
    font-size: 18px;
    min-height: 56px;
}

.button--small {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 40px;
}

/* Button with icon */
.button--with-icon {
    gap: 8px;
}

.button--with-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Special CTA button */
.button--cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 2px solid #ff6b35;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button--cta:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    border-color: #f7931e;
    box-shadow: 0 10px 32px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.button--cta:active {
    transform: translateY(-1px) scale(1.01);
}

/* Disabled state */
.button:disabled,
.button--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Focus states for accessibility */
.button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(43, 132, 255, 0.3);
}

.button--primary:focus {
    box-shadow: 0 0 0 3px rgba(43, 132, 255, 0.3), 0 4px 16px rgba(43, 132, 255, 0.3);
}

.hero {
    padding: 24px 0 24px;
    min-height: calc(100vh - var(--header-h, 64px));
    display: flex;
    align-items: center;
    position: relative
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center
}

.hero--text-only .hero__grid {
    grid-template-columns: 1fr
}

.hero--text-only {
    background: linear-gradient(180deg, #fff, #f9fbff)
}

.hero--text-only .hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    margin: 10px 0 10px;
    font-weight: 800;
    background: linear-gradient(90deg, #0b1220, var(--brand));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.hero__lead {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 18px;
    max-width: 70ch;
    margin-inline: auto
}

.hero__cta {
    display: flex;
    gap: 12px;
    margin: 14px 0 6px;
    justify-content: center
}

.stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 120px;
}

.stats__prefix {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stats__num {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--brand);
    line-height: 1;
    margin: 0;
}

.stats__label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    max-width: 100px;
}

/* Hero gallery */
.hero__gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    justify-items: center
}

.photo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: var(--card);
    box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease;
    width: clamp(240px, 28vw, 500px);
}

.photo-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: auto 10% -14px 10%;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(43, 132, 255, .25), transparent);
    filter: blur(14px);
    z-index: -1
}

.photo-card--left {
    transform: none
}

.photo-card--right {
    transform: none
}

.photo-card:is(:hover, :focus-within) {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(2, 41, 89, .12)
}

.photo-card--right:is(:hover, :focus-within) {
    transform: translateY(-4px)
}

.section {
    padding: 64px 0;
    border-top: 1px solid #f1f5f9
}

.section--alt {
    background: var(--bg-alt)
}

.section h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin: 0 0 10px;
    color: var(--text)
}

/* Accents for sections */
.section h2 {
    font-weight: 800
}

.section__lead {
    max-width: 70ch
}

.section__lead {
    color: var(--muted);
    margin: 0 0 24px
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px
}

.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
    will-change: box-shadow, transform;
    transform: translateY(0)
}

.card__icon {
    font-size: 20px
}

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

.list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted)
}

.list--check {
    list-style: "✔ ";
    padding-left: 24px
}

.badge {
    display: inline-block;
    border: 1px solid var(--stroke);
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    margin-right: 8px;
    background: #fff
}

.about {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.about__content {
    max-width: 100%;
}

/* Enhanced about section styling */
.about__content h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.about__content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    border-radius: 2px;
}

.about__content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about__content .list--check {
    margin: 2rem 0;
}

.about__content .list--check li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.about__content .list--check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
    font-size: 1.1em;
}

.about__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
}

.about__badges .badge {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #e2e8f0;
    color: var(--text);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about__badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--brand);
}

.about__media {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    max-width: 600px;
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.about__media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 132, 255, 0.1), rgba(105, 167, 255, 0.05));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about__media:hover::before {
    opacity: 1;
}

.about__media img {
    width: 100% !important;
    max-width: 100% !important;
    height: 400px;
    object-fit: cover;
    object-position: 30% center;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.about__media:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(43, 132, 255, 0.3);
}

.about__media:hover img {
    transform: scale(1.05);
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.contact__list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    color: var(--muted)
}

.contact__label {
    display: block;
    color: var(--text);
    font-weight: 600
}

.form {
    background: linear-gradient(180deg, var(--card), #0b1327);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow)
}

.form__row {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px
}

.form label {
    font-weight: 600;
    margin-bottom: 6px
}

.form input,
.form select,
.form textarea {
    background: #0c1426;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    color: var(--text);
    padding: 12px
}

.form__submit {
    width: 100%;
    margin-top: 8px
}

.form__hint {
    color: var(--muted);
    font-size: 14px
}

.footer {
    border-top: 1px solid #eef2f7;
    padding: 32px 0;
    background: var(--bg-alt);
}

.footer__inner {
    width: 100%;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__copyright {
    margin: 0;
    font-weight: 600;
    color: var(--text);
    font-size: 16px;
}

.footer__profession {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.footer__nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer__nav a {
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer__nav a:hover {
    color: var(--brand);
    text-decoration: none;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 24px 0;
    }

    .footer__content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__nav {
        justify-content: center;
        gap: 16px;
    }

    .footer__nav a {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .footer__nav a:hover {
        background: rgba(43, 132, 255, 0.1);
        color: var(--brand);
    }
}

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

    .footer__content {
        gap: 16px;
    }

    .footer__copyright {
        font-size: 15px;
    }

    .footer__profession {
        font-size: 13px;
    }

    .footer__nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__nav a {
        font-size: 12px;
        padding: 6px 10px;
        min-width: 60px;
        text-align: center;
    }
}

.card:hover {
    border-color: #cfe5ff;
    box-shadow: 0 20px 40px rgba(2, 41, 89, .12);
    transform: translateY(-6px)
}

.card__cta {
    display: inline-flex;
    width: 100%;
    margin-top: 16px;
    justify-content: center
}

/* Work / Portafolio */
.work-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px
}

.work-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease
}

.work-card__media img {
    width: 100% !important;
    max-width: 100% !important;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.work-card__body {
    padding: 14px
}

.work-card__meta {
    color: var(--muted);
    margin: 6px 0 8px
}

.work-card__kpi {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #146534
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(2, 41, 89, .12)
}

.work-card:hover .work-card__media img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px
}

.testimonial {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow)
}

.testimonial blockquote {
    margin: 0 0 8px 0;
    font-weight: 600
}

.testimonial figcaption {
    color: var(--muted);
    font-size: 14px
}

/* Steps */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.steps li {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow)
}

.steps h3 {
    margin: 6px 0 6px
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px
}

.price-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    position: relative
}

.price-card h3 {
    margin: 0 0 8px
}

.price {
    color: #0b1220;
    margin: 6px 0 10px
}

.price-card__cta {
    width: 100%;
    margin-top: 10px;
    justify-content: center
}

/* Ribbons & bonus box */
.price-card__ribbon {
    position: absolute;
    top: 10px;
    left: -8px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    color: #fff;
    padding: 6px 10px;
    border-radius: 0 10px 10px 0;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(2, 41, 89, .12)
}

.price-card__ribbon--alt {
    left: auto;
    right: -8px;
    border-radius: 10px 0 0 10px
}

.price-card__bonus {
    margin-top: 10px;
    background: #f6f8fb;
    border: 1px dashed #cfe5ff;
    color: #0b1220;
    border-radius: 12px;
    padding: 10px;
    font-weight: 600
}

/* FAQ */
.faq details {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow)
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text)
}

/* FAB WhatsApp */
.fab-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #25D366, #36f08d);
    color: #001b0a;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    z-index: 20
}

.fab-whatsapp:hover {
    text-decoration: none;
    transform: translateY(-2px)
}

/* Services groups */
.service-group {
    margin: 32px 0
}

.service-group>h3 {
    margin: 0 0 12px;
    color: #0b1220
}

/* Accordion for service groups */
.service-accordion details {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 14px 0
}

.service-accordion summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.service-accordion summary::-webkit-details-marker {
    display: none
}

.service-accordion summary h3 {
    margin: 0
}

.service-accordion summary::after {
    content: "▾";
    color: #64748b;
    transition: transform .2s ease
}

.service-accordion details[open] summary::after {
    transform: rotate(180deg)
}

.service-accordion .accordion__content {
    padding: 12px 16px;
    border-top: 1px solid var(--stroke)
}

/* Remove old hero gallery spacing */
.hero__gallery {
    display: none
}

/* Floating decorative glyphs */
.bg-decor {
    position: absolute;
    inset: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.bg-decor .glyph {
    position: absolute;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-weight: 800;
    opacity: .16;
    color: #2b84ff;
    filter: saturate(120%);
    animation: floatY var(--dur, 8s) ease-in-out infinite alternate;
    transform: translateY(0);
    font-size: clamp(24px, 3vw, 56px)
}

.bg-decor .glyph--muted {
    color: #0b1220;
    opacity: .12
}

@keyframes floatY {
    from {
        transform: translateY(10px)
    }

    to {
        transform: translateY(-14px)
    }
}

/* CTA Cards for service highlights */
.cta-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cta-card h3 {
    margin: 0 0 12px;
    color: #0b1220;
    font-size: 1.25rem;
    font-weight: 600;
}

.cta-card h4 {
    margin: 0 0 12px;
    color: #0b1220;
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-card p {
    margin: 0 0 16px;
    color: #64748b;
    line-height: 1.6;
}

.cta-card .list {
    margin: 0 0 20px;
}

.cta-card .button {
    width: 100%;
    justify-content: center;
}

/* Centered service groups */
.service-group--centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-group--centered h3 {
    margin-bottom: 2rem;
}

/* Info Cards for service explanations */
.info-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    margin: 0 0 16px;
    color: #0b1220;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.info-card p {
    margin: 0 0 20px;
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.info-card .benefits {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid var(--brand);
    margin-top: auto;
}

.info-card .benefits h5 {
    margin: 0 0 12px;
    color: #0b1220;
    font-size: 1rem;
    font-weight: 600;
}

.info-card .benefits .list {
    margin: 0;
    color: #64748b;
}

.info-card .benefits .list li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Service comparison cards */
.service-comparison {
    max-width: 1000px;
    margin: 0 auto;
}

.service-comparison .info-card {
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-comparison {
        max-width: 100%;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h4 {
        font-size: 1.25rem;
    }

    .info-card .benefits {
        padding: 12px;
    }
}

@media (max-width:980px) {

    .hero__grid,
    .about,
    .contact {
        grid-template-columns: 1fr
    }

    .cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .work-cards {
        grid-template-columns: 1fr
    }
}

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

    .work-card__media img {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }

    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(150%) blur(10px);
        -webkit-backdrop-filter: saturate(150%) blur(10px);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 80px 24px 24px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid #eef2f7;
    }

    .nav.nav--open {
        right: 0;
    }

    .nav a {
        padding: 16px 0;
        border-bottom: 1px solid #eef2f7;
        font-size: 18px;
        font-weight: 600;
        color: var(--text);
        transition: color 0.2s ease;
    }

    .nav a:last-child {
        border-bottom: none;
        margin-top: 16px;
    }

    .nav a:hover {
        color: var(--brand);
        text-decoration: none;
    }

    .nav .button--cta {
        margin-top: 24px;
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-menu-overlay.overlay--active {
        opacity: 1;
        visibility: visible;
    }

    .hero {
        padding-top: 28px
    }

    .bg-decor .glyph {
        font-size: clamp(18px, 6vw, 36px);
        opacity: .12
    }

    /* Mobile header adjustments */
    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(150%) blur(8px);
        -webkit-backdrop-filter: saturate(150%) blur(8px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .header--scrolled {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    }

    /* Adjust body padding for mobile */
    body {
        padding-top: var(--header-h, 60px);
    }
}

@media (max-width:820px) {
    .hero__gallery {
        grid-template-columns: 1fr
    }

    .photo-card--right {
        transform: none
    }
}

/* Process Timeline */
.process-timeline {
    max-width: 1000px;
    margin: 3rem auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

.process-step:nth-child(5) {
    animation-delay: 0.5s;
}

.process-step__icon {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 3px solid var(--brand);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.process-step:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(43, 132, 255, 0.2);
    border-color: var(--brand-2);
}

.process-step__content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--stroke);
    transition: all 0.3s ease;
    position: relative;
}

.process-step__content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.process-step:hover .process-step__content {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--brand);
}

.process-step__content h3 {
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step__content p {
    margin: 0 0 1.5rem;
    color: var(--muted);
    line-height: 1.6;
}

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

.process-details li {
    padding: 0.5rem 0;
    color: var(--muted);
    position: relative;
    padding-left: 1.5rem;
}

.process-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    border: 1px solid var(--stroke);
}

.process-cta h3 {
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
}

.process-cta p {
    margin: 0 0 2rem;
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

.fade-in-scale {
    transform: scale(0.9);
}

.fade-in-scale.animated {
    transform: scale(1);
}

.slide-in-up {
    transform: translateY(50px);
}

.slide-in-up.animated {
    transform: translateY(0);
}

.slide-in-down {
    transform: translateY(-50px);
}

.slide-in-down.animated {
    transform: translateY(0);
}

/* Stagger animations for lists */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-item:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* Parallax effect for background elements */
.parallax-bg {
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth reveal for sections */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Card animations */
.card-animate {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.revealed span {
    opacity: 1;
    transform: translateY(0);
}

/* Counter animation */
.counter-animate {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-animate.animated {
    opacity: 1;
    transform: scale(1);
}

/* Progress bar animation */
.progress-bar {
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar.animated {
    width: 100%;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .animate-on-scroll,
    .stagger-item,
    .section-reveal,
    .card-animate,
    .text-reveal span,
    .counter-animate,
    .progress-bar {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
    }

    .process-step__icon {
        width: 80px;
        height: 80px;
        margin-right: 1rem;
    }

    .icon-bg {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
        top: -8px;
        right: -8px;
    }

    .process-step__content {
        padding: 1.5rem;
    }

    .process-step__content h3 {
        font-size: 1.25rem;
    }

    .process-cta {
        padding: 2rem 1rem;
    }

    .process-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step__icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step__content::before {
        display: none;
    }
}

/* Responsive button adjustments */
@media (max-width: 768px) {
    .button {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 44px;
    }

    .button--large {
        padding: 16px 28px;
        font-size: 17px;
        min-height: 52px;
    }

    .button--cta {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .button {
        padding: 10px 16px;
        font-size: 14px;
        min-height: 40px;
        border-radius: 10px;
    }

    .work-card__media img {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }

    .button--cta {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 44px;
    }

    .hero__cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero__cta .button {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive adjustments for about section */
@media (max-width: 980px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about__content {
        order: 2;
    }

    .about__media {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 16px;
    }

    .about__media img {
        width: 100% !important;
        max-width: 100% !important;
        height: 350px;
        object-fit: cover;
        object-position: 30% center;
    }
}

@media (max-width: 768px) {
    .about {
        gap: 32px;
    }

    .about__content {
        padding: 0 16px;
    }

    .about__media {
        aspect-ratio: 4/3;
        border-radius: 12px;
        border-width: 2px;
    }

    /* Cards layout for mobile */
    .about__content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .about__content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about__content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .about__content .list--check {
        text-align: left;
        margin: 1.5rem 0;
        padding-left: 1.5rem;
    }

    .about__content .list--check li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .about__badges .badge {
        font-size: 0.85rem;
        padding: 8px 12px;
        border-radius: 20px;
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        border: 1px solid #e2e8f0;
        color: var(--text);
        font-weight: 500;
    }
}

@media (max-width: 640px) {
    .about {
        gap: 24px;
    }

    .about__content {
        padding: 0 12px;
    }

    .about__media {
        border-radius: 12px;
        max-width: 100%;
    }

    .about__media img {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px;
        object-fit: cover;
        object-position: 30% center;
    }

    .about__content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }

    .about__content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about__content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .about__content .list--check {
        margin: 1.25rem 0;
        padding-left: 1.25rem;
    }

    .about__content .list--check li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .about__badges {
        gap: 6px;
        margin-top: 1.25rem;
    }

    .about__badges .badge {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .about {
        gap: 20px;
    }

    .about__content {
        padding: 0 8px;
    }

    .about__media {
        border-radius: 10px;
    }

    .about__media img {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px;
        object-fit: cover;
        object-position: 30% center;
    }

    .about__content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .about__content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about__content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .about__content .list--check {
        margin: 1rem 0;
        padding-left: 1rem;
    }

    .about__content .list--check li {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .about__badges {
        gap: 4px;
        margin-top: 1rem;
    }

    .about__badges .badge {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
}

/* Responsive stats */
@media (max-width: 768px) {
    .stats {
        gap: 20px;
        margin: 20px 0 0;
    }

    .stats li {
        min-width: 100px;
        gap: 6px;
    }

    .stats__num {
        font-size: 2rem;
    }

    .stats__label {
        font-size: 13px;
        max-width: 90px;
    }

    .stats__prefix {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .stats {
        gap: 16px;
        margin: 16px 0 0;
    }

    .stats li {
        min-width: 80px;
        gap: 4px;
    }

    .stats__num {
        font-size: 1.75rem;
    }

    .stats__label {
        font-size: 12px;
        max-width: 80px;
    }

    .stats__prefix {
        font-size: 10px;
    }
}

/* Product Page Styles - Amazon-like Layout */
.product-page {
    padding: 32px 0;
    background: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--brand);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--muted);
}

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

/* Product Image */
.product-image {
    position: sticky;
    top: 100px;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.badge--featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.image-gallery {
    display: flex;
    gap: 12px;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.gallery-thumb.active {
    border-color: var(--brand);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-category {
    color: var(--brand);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.rating-text {
    color: var(--muted);
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
}

.price-original {
    font-size: 1.2rem;
    color: var(--muted);
    text-decoration: line-through;
}

.price-discount {
    background: #16a34a;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

/* Features */
.product-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--text);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--brand);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
}

/* WhatsApp Form */
.whatsapp-form {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.whatsapp-form h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.whatsapp-form>p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(43, 132, 255, 0.1);
}

.whatsapp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 18px;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.trust-icon {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-layout {
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-image {
        position: static;
    }

    .product-title {
        font-size: 2rem;
    }

    .price-current {
        font-size: 1.75rem;
    }

    .trust-signals {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .product-page {
        padding: 16px 0;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .features-grid {
        gap: 16px;
    }

    .feature-item {
        padding: 12px;
    }

    .whatsapp-form {
        padding: 20px;
    }

    .gallery-thumb {
        width: 60px;
        height: 45px;
    }
}

/* Pricing Details */
.pricing-details {
    margin: 32px 0;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.pricing-details h3 {
    margin: 0 0 20px 0;
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 600;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background: var(--brand);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-highlight {
    background: #f0f9ff;
    border-left: 4px solid var(--brand);
}

.pricing-col {
    padding: 16px 12px;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-header .pricing-col {
    font-weight: 600;
}

.pricing-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.pricing-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.5;
}

/* Responsive Pricing Table */
@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .pricing-col {
        padding: 8px;
        font-size: 0.85rem;
    }

    .pricing-header {
        display: none;
    }

    .pricing-row:not(.pricing-header) {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 8px;
        background: white;
    }

    .pricing-row:not(.pricing-header)::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: var(--brand);
        margin-bottom: 4px;
        font-size: 0.8rem;
        text-transform: uppercase;
    }
}

/* SEO Plan Cards - Estilos para planes de SEO */
.seo-plan-card {
    background: var(--card);
    border: 2px solid var(--stroke);
    border-radius: 20px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.seo-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand);
}

/* Featured plans */
.seo-plan-card--featured {
    border-color: var(--brand);
    box-shadow: 0 8px 32px rgba(43, 132, 255, 0.15);
    background: linear-gradient(135deg, #ffffff, #f8faff);
}

.seo-plan-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.seo-plan-card--premium {
    border-color: #f59e0b;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
    background: linear-gradient(135deg, #ffffff, #fffbeb);
}

.seo-plan-card--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.seo-plan-card--ecommerce {
    border-color: #10b981;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, #ffffff, #ecfdf5);
}

.seo-plan-card--ecommerce::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* SEO Plan Header */
.seo-plan-header {
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid var(--stroke);
    position: relative;
}

.seo-plan-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.seo-plan-badge--basic {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
}

.seo-plan-badge--recommended {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
}

.seo-plan-badge--premium {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.seo-plan-badge--ecommerce {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.seo-plan-header h4 {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.seo-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
}

.price-period {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* SEO Toggle Button */
.seo-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
}

.seo-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 132, 255, 0.4);
}

.seo-toggle-btn.active {
    background: linear-gradient(135deg, #64748b, #94a3b8);
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* SEO Plan Details */
.seo-plan-details {
    padding: 0;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seo-plan-description {
    padding: 24px 24px 0 24px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid var(--stroke);
}

.seo-plan-description p {
    margin: 0 0 12px 0;
    line-height: 1.6;
    color: var(--text);
}

.seo-plan-description p:last-child {
    margin-bottom: 0;
}

.seo-plan-description strong {
    color: var(--brand);
}

/* SEO Features Grid */
.seo-features-grid {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.seo-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.seo-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--brand);
}

.seo-feature--included {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #10b981;
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seo-feature h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.seo-feature p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* SEO Plan CTA */
.seo-plan-cta {
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-top: 1px solid var(--stroke);
    text-align: center;
}

.seo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    min-height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border: 2px solid var(--brand);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.seo-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.seo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 132, 255, 0.4);
    text-decoration: none;
}

.seo-cta-btn:hover::before {
    left: 100%;
}

.seo-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
}

.btn-icon {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.seo-cta-btn:hover .btn-icon {
    transform: scale(1.1);
}

.seo-plan-note {
    display: block;
    font-size: 13px;
    color: var(--brand);
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.9;
}

/* Responsive adjustments for SEO CTA buttons */
@media (max-width: 768px) {
    .seo-plan-cta {
        padding: 16px 20px;
    }

    .seo-cta-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 40px;
    }

    .btn-icon {
        font-size: 14px;
    }

    .seo-plan-note {
        font-size: 12px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .seo-plan-cta {
        padding: 14px 16px;
    }

    .seo-cta-btn {
        padding: 8px 14px;
        font-size: 12px;
        min-height: 36px;
        width: 100%;
        justify-content: center;
    }

    .btn-icon {
        font-size: 13px;
    }

    .seo-plan-note {
        font-size: 11px;
        margin-top: 4px;
    }
}

/* SEO Plans Grid - Cuadrícula para planes SEO */
.seo-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

/* SEO Plan Cards - Estilos para planes de SEO */
.seo-plan-card {
    background: var(--card);
    border: 2px solid var(--stroke);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: fit-content;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.seo-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand);
}

/* Featured plans */
.seo-plan-card--featured {
    border-color: var(--brand);
    box-shadow: 0 8px 32px rgba(43, 132, 255, 0.15);
    background: linear-gradient(135deg, #ffffff, #f8faff);
}

.seo-plan-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.seo-plan-card--premium {
    border-color: #f59e0b;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
    background: linear-gradient(135deg, #ffffff, #fffbeb);
}

.seo-plan-card--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.seo-plan-card--ecommerce {
    border-color: #10b981;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, #ffffff, #ecfdf5);
}

.seo-plan-card--ecommerce::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* SEO Plan Header */
.seo-plan-header {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid var(--stroke);
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.seo-plan-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.seo-plan-badge--basic {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
}

.seo-plan-badge--recommended {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
}

.seo-plan-badge--premium {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.seo-plan-badge--ecommerce {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.seo-plan-header h4 {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.seo-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand);
}

.price-period {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

/* SEO Plan CTA */
.seo-plan-cta {
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-top: 1px solid var(--stroke);
    text-align: center;
    margin-top: auto;
}

.seo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    min-height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border: 2px solid var(--brand);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.seo-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.seo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 132, 255, 0.4);
    text-decoration: none;
}

.seo-cta-btn:hover::before {
    left: 100%;
}

.seo-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(43, 132, 255, 0.3);
}

.btn-icon {
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.seo-cta-btn:hover .btn-icon {
    transform: scale(1.1);
}

.seo-plan-note {
    display: block;
    font-size: 12px;
    color: var(--brand);
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.9;
}

/* Responsive adjustments for SEO plans grid */
@media (min-width: 1200px) {
    .seo-plans-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .seo-plan-card {
        min-height: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .seo-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .seo-plan-card {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .seo-plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .seo-plan-card {
        min-height: auto;
    }

    .seo-plan-header {
        padding: 16px;
    }

    .seo-plan-header h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .seo-plan-cta {
        padding: 14px 16px;
    }

    .seo-cta-btn {
        padding: 8px 14px;
        font-size: 12px;
        min-height: 36px;
        width: 100%;
        justify-content: center;
    }

    .btn-icon {
        font-size: 13px;
    }

    .seo-plan-note {
        font-size: 11px;
        margin-top: 4px;
    }
}

/* ========================================
   ECOMMERCE PREMIUM LANDING PAGE STYLES
   ======================================== */

/* Hero Badge */
.hero-badge {
    margin-bottom: 2rem;
    text-align: center;
}

.badge-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Hero Title Premium */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin: 0 0 2rem 0;
    font-weight: 800;
    text-align: center;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--brand), #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-title .price-highlight {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 1.2em;
}

/* Hero Lead Premium */
.hero-lead-premium {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
}

/* Hero Stats Premium */
.hero-stats-premium {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--stroke);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 12px 32px rgba(43, 132, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero CTA Premium */
.hero-cta-premium {
    margin-bottom: 3rem;
}

.button-premium-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 3px solid #ff6b35;
    font-size: 1.25rem;
    padding: 20px 40px;
    min-height: 60px;
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.button-premium-cta:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    border-color: #f7931e;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.5);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--brand);
    font-weight: 600;
    text-align: center;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid var(--stroke);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 132, 255, 0.15);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Premium Pricing */
.premium-pricing {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid var(--stroke);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.price-breakdown {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--stroke);
}

.price-item:last-of-type {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.service-price {
    font-weight: 800;
    color: var(--brand);
    font-size: 1.25rem;
}

.price-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--brand), #ff6b35);
    margin: 1rem 0;
    border-radius: 1px;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 2px solid var(--brand);
}

.total-label {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-price {
    font-weight: 800;
    color: var(--brand);
    font-size: 2rem;
}

.price-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem;
    color: #92400e;
    font-weight: 600;
}

/* Service Details Grid */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    border: 2px solid var(--stroke);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 40px rgba(43, 132, 255, 0.15);
}

.service-card--featured {
    border-color: var(--brand);
    background: linear-gradient(135deg, #ffffff, #f8faff);
    box-shadow: 0 12px 32px rgba(43, 132, 255, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--stroke);
}

.service-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.service-header .service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
}

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

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Bonuses Section */
.bonuses-section {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.bonuses-section h3 {
    margin: 0 0 2rem;
    color: #065f46;
    font-size: 1.5rem;
    font-weight: 700;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #d1fae5;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-content h4 {
    margin: 0 0 0.5rem;
    color: #065f46;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-content p {
    margin: 0;
    color: #047857;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Main CTA */
.main-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid var(--stroke);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.main-cta h3 {
    margin: 0 0 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.main-cta p {
    margin: 0 0 2rem;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin-inline: auto;
}

.button-premium-cta-large {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 3px solid #ff6b35;
    font-size: 1.5rem;
    padding: 24px 48px;
    min-height: 70px;
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.button-premium-cta-large:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    border-color: #f7931e;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 48px rgba(255, 107, 53, 0.5);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: white;
    border: 2px solid var(--stroke);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 40px rgba(43, 132, 255, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Price Comparison */
.price-comparison {
    background: white;
    border: 2px solid var(--stroke);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.price-comparison h3 {
    margin: 0 0 2rem;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-table {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--stroke);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--brand);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-col {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.comparison-total {
    background: #f0f9ff;
    font-weight: 700;
    color: var(--brand);
}

.comparison-note {
    color: var(--brand);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.final-cta h2 {
    margin: 0 0 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.cta-subtitle {
    margin: 0 0 2rem;
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin-inline: auto;
}

.urgency-timer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.urgency-timer p {
    margin: 0.5rem 0;
    color: #fbbf24;
    font-weight: 600;
}

.button-premium-cta-final {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 3px solid #ff6b35;
    font-size: 1.5rem;
    padding: 24px 48px;
    min-height: 70px;
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin: 2rem 0;
}

.button-premium-cta-final:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    border-color: #f7931e;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 48px rgba(255, 107, 53, 0.5);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin: 0.5rem 0;
    color: #cbd5e1;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats-premium {
        gap: 1rem;
    }

    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-col {
        padding: 0.75rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-lead-premium {
        font-size: 1.1rem;
    }

    .button-premium-cta,
    .button-premium-cta-large,
    .button-premium-cta-final {
        font-size: 1.1rem;
        padding: 16px 32px;
        min-height: 56px;
    }
}

@media (max-width: 480px) {
    .hero-stats-premium {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .premium-pricing {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .main-cta,
    .final-cta {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-lead-premium {
        font-size: 1rem;
    }
}
