/* Plans page — redesigned */

.plans-hero {
    position: relative;
    min-height: 38rem;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 10rem 2rem 5rem;
    overflow: hidden;
}

.plans-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.plans-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plans-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14, 44, 64, 0.92) 0%, rgba(14, 44, 64, 0.78) 45%, rgba(185, 78, 143, 0.35) 100%);
}

.plans-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 118rem;
    margin: 0 auto;
    width: 100%;
    color: #fff;
}

.plans-hero-inner h1 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 52rem;
    margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
    .plans-hero-inner h1 {
        font-size: 4.4rem;
    }
}

.plans-hero-inner p {
    font-size: 1.75rem;
    line-height: 1.55;
    max-width: 48rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
}

.plans-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(185, 78, 143, 0.25);
    border: 1px solid rgba(185, 78, 143, 0.5);
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.plans-trial-badge i {
    color: #e8a0c8;
}

/* Plan cards grid */
.plans-clara {
    padding: 2rem 2rem 6rem;
    background: #f4f6f8;
}

.plans-clara .gh-clara-spotlight {
    max-width: 118rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.plan-clara-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0 1.2rem;
    padding: 0.8rem 1rem;
    background: #fff7fb;
    border: 1px solid #f0d4e6;
    border-radius: 10px;
}

.plan-clara-note img {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.plan-clara-note p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.35;
    color: #0e2c40;
}

.plan-clara-note strong {
    display: block;
    color: #b94e8f;
    font-size: 1.25rem;
}

.plans-grid-section {
    padding: 4rem 2rem 2rem;
    background: #f4f6f8;
}

.plans-grid {
    max-width: 118rem;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.plan-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8ecf0;
    box-shadow: 0 4px 20px rgba(14, 44, 64, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 44, 64, 0.1);
}

.plan-card.featured {
    border: 2px solid #b94e8f;
    position: relative;
}

.plan-card.featured::before {
    content: "Más elegido";
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: #b94e8f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.plan-card-image {
    height: 14rem;
    overflow: hidden;
    position: relative;
}

.plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.plan-card:hover .plan-card-image img {
    transform: scale(1.04);
}

.plan-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 44, 64, 0.5), transparent);
}

.plan-card-body {
    padding: 2rem 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-card-body h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0e2c40;
    margin-bottom: 0.3rem;
}

.plan-card-users {
    font-size: 1.35rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.plan-card-users i {
    color: #b94e8f;
}

.plan-card-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8ecf0;
}

.plan-card-price .amount {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0e2c40;
    line-height: 1;
}

.plan-card-price .amount small {
    font-size: 1.4rem;
    font-weight: 400;
    color: #646464;
}

.plan-card-modules {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}

.plan-card-modules li {
    font-size: 1.35rem;
    color: #4a5568;
    padding: 0.45rem 0 0.45rem 2rem;
    position: relative;
    line-height: 1.4;
}

.plan-card-modules li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #b94e8f;
    font-size: 1.1rem;
}

.plan-card-modules li.highlight {
    font-weight: 600;
    color: #0e2c40;
}

.plan-card-footer {
    padding: 0 2rem 2rem;
}

.plan-card-footer .gh-btn {
    width: 100%;
    font-size: 1.45rem;
    padding: 1rem;
}

/* Visual strip */
.plans-visual-strip {
    padding: 4rem 2rem;
    background: #fff;
}

.plans-visual-grid {
    max-width: 118rem;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .plans-visual-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.plans-visual-photo {
    border-radius: 8px;
    overflow: hidden;
    height: 28rem;
    box-shadow: 0 8px 30px rgba(14, 44, 64, 0.1);
}

.plans-visual-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plans-visual-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0e2c40;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.plans-visual-text p {
    font-size: 1.55rem;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

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

.plans-checklist li {
    font-size: 1.4rem;
    color: #4a5568;
    padding: 0.4rem 0 0.4rem 2rem;
    position: relative;
}

.plans-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #b94e8f;
}

/* Comparison table */
.plans-compare {
    padding: 4rem 2rem 5rem;
    background: #f4f6f8;
}

.plans-compare-inner {
    max-width: 96rem;
    margin: 0 auto;
}

.plans-table tr.group td {
    background: #f4f6f8;
    color: #b94e8f;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
    padding: 0.75rem 1.4rem;
}

.plans-compare h2 {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #0e2c40;
    margin-bottom: 2.5rem;
}

.plans-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8ecf0;
    box-shadow: 0 4px 16px rgba(14, 44, 64, 0.05);
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.35rem;
    min-width: 60rem;
}

.plans-table th,
.plans-table td {
    padding: 1rem 1.4rem;
    text-align: center;
    border-bottom: 1px solid #eef1f4;
}

.plans-table th:first-child,
.plans-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0e2c40;
}

.plans-table thead th {
    background: #0e2c40;
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 1.2rem;
}

.plans-table thead th.featured-col {
    background: #b94e8f;
}

.plans-table .yes {
    color: #b94e8f;
    font-weight: 700;
}

.plans-table .yes .fa-check {
    font-size: 1.6rem;
}

.plans-table .no {
    color: #c0c8d0;
}

.plans-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    max-width: 118rem;
    margin: 3rem auto 0;
}

.plans-gallery img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 6px;
}

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

    .plans-gallery img {
        height: 16rem;
    }
}

.plans-how {
    padding: 4rem 2rem 1rem;
    background: #f4f6f8;
}
.plans-how-inner {
    max-width: 118rem;
    margin: 0 auto;
}
.plans-how h2 {
    font-size: 2.6rem;
    color: #0e2c40;
    margin: 0.4rem 0 1.6rem;
}
.plans-how-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.2rem;
}
@media (min-width: 768px) {
    .plans-how-steps { grid-template-columns: repeat(3, 1fr); }
}
.plans-how-steps li {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 1.4rem 1.6rem;
    font-size: 1.4rem;
    color: #4a5568;
    line-height: 1.45;
}
.plans-how-steps strong {
    display: block;
    color: #0e2c40;
    margin-bottom: 0.4rem;
    font-size: 1.5rem;
}

.plan-card-kicker {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b94e8f;
    margin: 0 0 0.3rem;
}
.plan-card-lead {
    font-size: 1.35rem;
    color: #5b6b7a;
    line-height: 1.45;
    margin: 0 0 1rem;
}
.plan-card-note {
    font-size: 1.25rem;
    color: #6b7a88;
    line-height: 1.4;
    margin: 0;
    padding-top: 0.6rem;
}

.plans-packs {
    padding: 7rem 2rem 6rem;
    background: #fff;
}
.plans-packs-inner {
    max-width: 118rem;
    margin: 0 auto;
}
.plans-packs h2 {
    font-size: 2.8rem;
    color: #0e2c40;
    margin: 0.4rem 0 0.8rem;
    letter-spacing: -0.02em;
}
.plans-packs-intro {
    font-size: 1.6rem;
    color: #4a5568;
    max-width: 68rem;
    margin: 0 0 4.2rem;
    line-height: 1.6;
}
.plans-packs-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .plans-packs-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.pack-card {
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    padding: 0;
    background: #fff;
    box-shadow: 0 8px 28px rgba(14, 44, 64, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.pack-card-media {
    height: 14rem;
    overflow: hidden;
    position: relative;
}
.pack-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pack-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 44, 64, 0.45), transparent 60%);
}
.pack-card-body {
    padding: 1.8rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pack-card h3 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: #0e2c40;
}
.pack-need {
    font-size: 1.4rem;
    color: #5b6b7a;
    margin: 0 0 1.2rem;
    line-height: 1.5;
}
.pack-price {
    margin: 0 0 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #eef1f4;
}
.pack-price strong {
    display: block;
    font-size: 2.6rem;
    color: #0e2c40;
    line-height: 1;
}
.pack-price strong small {
    font-size: 1.3rem;
    font-weight: 400;
    color: #646464;
}
.pack-price em {
    display: block;
    margin-top: 0.45rem;
    font-style: normal;
    font-size: 1.25rem;
    color: #b94e8f;
    font-weight: 600;
}
.pack-card ul {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
    color: #0e2c40;
    font-size: 1.35rem;
    line-height: 1.45;
    flex: 1;
}
.pack-card ul li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.8rem;
}
.pack-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #b94e8f;
    font-size: 1.1rem;
}
.pack-card .gh-btn {
    width: 100%;
}

.plans-compare-lead {
    text-align: center;
    color: #5b6b7a;
    font-size: 1.45rem;
    margin: -1.4rem 0 2rem;
}

.plans-faq {
    padding: 4rem 2rem 5rem;
    background: #fff;
}
.plans-faq-inner {
    max-width: 90rem;
    margin: 0 auto;
}
.plans-faq h2 {
    text-align: center;
    font-size: 2.6rem;
    color: #0e2c40;
    margin: 0 0 2rem;
}
.plans-faq-list {
    display: grid;
    gap: 1.2rem;
}
@media (min-width: 768px) {
    .plans-faq-list { grid-template-columns: 1fr 1fr; }
}
.plans-faq-list h3 {
    margin: 0 0 0.4rem;
    font-size: 1.5rem;
    color: #0e2c40;
}
.plans-faq-list p {
    margin: 0;
    font-size: 1.35rem;
    color: #4a5568;
    line-height: 1.5;
}
.plans-faq-list a { color: #b94e8f; font-weight: 600; }
