/* GESTOFI Landing Page Styles */

/* ===== Reset / Base ===== */
.gestofi-landing {
    --gestofi-primary: #1565c0;
    --gestofi-primary-dark: #0d47a1;
    --gestofi-accent: #2e7d32;
    --gestofi-bg: #f8fafc;
    --gestofi-card-bg: #ffffff;
    --gestofi-text: #1e293b;
    --gestofi-text-light: #64748b;
    --gestofi-border: #e2e8f0;
    --gestofi-radius: 12px;
    --gestofi-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --gestofi-shadow-hover: 0 4px 12px rgba(0,0,0,0.12);

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--gestofi-text);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.gestofi-landing * { box-sizing: border-box; }

.gestofi-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== Buttons ===== */
.gestofi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gestofi-btn svg { flex-shrink: 0; }

.gestofi-btn-wa {
    background: #25d366;
    color: #fff;
}
.gestofi-btn-wa:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.gestofi-btn-phone {
    background: var(--gestofi-primary);
    color: #fff;
}
.gestofi-btn-phone:hover {
    background: var(--gestofi-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.gestofi-btn-outline {
    background: transparent;
    color: var(--gestofi-primary);
    border-color: var(--gestofi-primary);
}
.gestofi-btn-outline:hover {
    background: var(--gestofi-primary);
    color: #fff;
}

.gestofi-btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* ===== Hero ===== */
.gestofi-hero {
    position: relative;
    background:
        radial-gradient(circle at 85% 0%, rgba(76, 175, 80, 0.20) 0%, rgba(76, 175, 80, 0) 40%),
        radial-gradient(circle at 0% 100%, rgba(255, 193, 7, 0.14) 0%, rgba(255, 193, 7, 0) 45%),
        linear-gradient(160deg, #0f172a 0%, #131c31 45%, #16233d 100%);
    color: #fff;
    border-radius: var(--gestofi-radius);
    padding: 48px 24px 32px;
    margin: 24px 0;
    overflow: hidden;
    isolation: isolate;
}

/* Logo-inspired quarter-circle arc, echoing the SOFTWIN emblem */
.gestofi-hero-arc {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 26px solid rgba(255, 255, 255, 0.06);
    border-top-color: rgba(76, 175, 80, 0.45);
    border-right-color: rgba(255, 193, 7, 0.38);
    pointer-events: none;
    z-index: 0;
}

.gestofi-hero-arc::after {
    content: "";
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
}

/* Logo-inspired mosaic of colored squares (bottom-left corner) */
.gestofi-hero-mosaic {
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 168px;
    height: 168px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    transform: rotate(-8deg);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.gestofi-hero-mosaic span {
    border-radius: 5px;
    background: var(--tile-color, rgba(255,255,255,0.12));
}

.gestofi-hero-mosaic span:nth-child(1) { --tile-color: #4caf50; }
.gestofi-hero-mosaic span:nth-child(2) { --tile-color: #8bc34a; opacity: 0.9; }
.gestofi-hero-mosaic span:nth-child(3) { --tile-color: rgba(255,255,255,0.10); }
.gestofi-hero-mosaic span:nth-child(4) { --tile-color: #ffc107; }
.gestofi-hero-mosaic span:nth-child(5) { --tile-color: #26a69a; }
.gestofi-hero-mosaic span:nth-child(6) { --tile-color: #4caf50; opacity: 0.7; }
.gestofi-hero-mosaic span:nth-child(7) { --tile-color: #ffca28; opacity: 0.8; }
.gestofi-hero-mosaic span:nth-child(8) { --tile-color: rgba(255,255,255,0.10); }
.gestofi-hero-mosaic span:nth-child(9) { --tile-color: rgba(255,255,255,0.10); }
.gestofi-hero-mosaic span:nth-child(10) { --tile-color: #e53935; opacity: 0.85; }
.gestofi-hero-mosaic span:nth-child(11) { --tile-color: #26a69a; opacity: 0.6; }
.gestofi-hero-mosaic span:nth-child(12) { --tile-color: #4caf50; opacity: 0.5; }

.gestofi-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.gestofi-hero-content {
    flex: 1 1 440px;
    max-width: 560px;
}

.gestofi-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.gestofi-hero-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 18px;
    padding-left: 14px;
    border-left: 3px solid #ffc107;
    color: #f1f5f9;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.gestofi-hero-desc {
    font-size: 1.02rem;
    color: #cbd5e1;
    margin: 0 0 28px;
    line-height: 1.75;
    max-width: 500px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.gestofi-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.gestofi-hero-video {
    flex: 1 1 420px;
    max-width: 480px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    align-self: center;
}

/* ===== Video Embed (16:9) ===== */
.gestofi-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.gestofi-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gestofi-video-embed .fluid-width-video-wrapper,
.gestofi-video-embed .wp-video,
.gestofi-video-embed .fitvids-video-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
}

.gestofi-video-embed .fluid-width-video-wrapper iframe,
.gestofi-video-embed .wp-video iframe,
.gestofi-video-embed .fitvids-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gestofi-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gestofi-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gestofi-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
}

.gestofi-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.gestofi-video-play svg {
    width: 32px;
    height: 32px;
    margin-left: 3px;
}

/* ===== Stats ===== */
.gestofi-stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 32px;
    justify-content: center;
    max-width: 1100px;
    margin: 32px auto 0;
    flex-wrap: wrap;
}

.gestofi-stat {
    text-align: center;
}

.gestofi-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.gestofi-stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 4px;
}

/* ===== Section Titles ===== */
.gestofi-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gestofi-text);
    text-align: center;
    margin: 0 0 12px;
}

.gestofi-section-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--gestofi-text-light);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ===== Versions Grid ===== */
.gestofi-versions-section {
    padding: 48px 0 24px;
}

.gestofi-versions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gestofi-version-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gestofi-border);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: var(--gestofi-shadow);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gestofi-version-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gestofi-primary), var(--gestofi-accent));
}

.gestofi-version-card:hover {
    box-shadow: var(--gestofi-shadow-hover);
    transform: translateY(-2px);
}

.gestofi-version-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f7fa, #bbdefb);
    color: var(--gestofi-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.gestofi-version-icon svg {
    width: 24px;
    height: 24px;
}

.gestofi-version-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gestofi-text);
    margin: 0 0 10px;
}

.gestofi-version-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gestofi-text-light);
    margin: 0;
}

/* ===== Features Grid ===== */
.gestofi-features-section {
    padding: 48px 0;
}

.gestofi-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gestofi-feature-card {
    background: var(--gestofi-card-bg);
    border: 1px solid var(--gestofi-border);
    border-radius: var(--gestofi-radius);
    padding: 24px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gestofi-feature-card:hover {
    box-shadow: var(--gestofi-shadow-hover);
    transform: translateY(-2px);
}

.gestofi-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: var(--gestofi-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.gestofi-feature-icon svg {
    width: 24px;
    height: 24px;
}

.gestofi-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--gestofi-text);
}

.gestofi-feature-desc {
    font-size: 0.9rem;
    color: var(--gestofi-text-light);
    margin: 0 0 12px;
    line-height: 1.6;
}

.gestofi-feature-video-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e53935;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gestofi-feature-video-link:hover {
    color: #c62828;
    text-decoration: underline;
}

.gestofi-feature-video-link svg {
    width: 16px;
    height: 16px;
}

/* ===== Videos Gallery ===== */
.gestofi-videos-section {
    background: var(--gestofi-bg);
    padding: 48px 0;
    border-radius: var(--gestofi-radius);
}

.gestofi-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gestofi-video-card {
    background: var(--gestofi-card-bg);
    border: 1px solid var(--gestofi-border);
    border-radius: var(--gestofi-radius);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.gestofi-video-card:hover {
    box-shadow: var(--gestofi-shadow-hover);
}

.gestofi-video-card .gestofi-video-embed {
    border-radius: 0;
    box-shadow: none;
}

.gestofi-video-title {
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: var(--gestofi-text);
}

/* ===== Mobile App Section ===== */
.gestofi-mobile-section {
    padding: 48px 0;
}

/* Connector arrow from videos to mobile cards */
.gestofi-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    gap: 0;
}

.gestofi-connector-line {
    width: 2px;
    height: 36px;
    background: repeating-linear-gradient(
        to bottom,
        var(--gestofi-primary) 0,
        var(--gestofi-primary) 4px,
        transparent 4px,
        transparent 8px
    );
}

.gestofi-connector-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
}

.gestofi-connector-label {
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gestofi-primary);
    opacity: 0.8;
}

.gestofi-mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.gestofi-mobile-card {
    background: var(--gestofi-card-bg);
    border: 1px solid var(--gestofi-border);
    border-radius: var(--gestofi-radius);
    padding: 28px;
}

.gestofi-mobile-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gestofi-primary);
    margin: 0 0 12px;
}

.gestofi-mobile-card-desc {
    font-size: 0.95rem;
    color: var(--gestofi-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===== Contact CTA ===== */
.gestofi-contact-section {
    position: relative;
    background:
        radial-gradient(circle at 85% 0%, rgba(76, 175, 80, 0.20) 0%, rgba(76, 175, 80, 0) 40%),
        radial-gradient(circle at 0% 100%, rgba(255, 193, 7, 0.14) 0%, rgba(255, 193, 7, 0) 45%),
        linear-gradient(160deg, #0f172a 0%, #131c31 45%, #16233d 100%);
    border-radius: var(--gestofi-radius);
    padding: 48px 24px;
    margin: 24px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.gestofi-contact-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.gestofi-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.gestofi-contact-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 0 22px;
    line-height: 1.75;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.gestofi-contact-details {
    display: grid;
    gap: 10px;
    max-width: 620px;
    margin: 0 auto 28px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #f8fafc;
    font-size: 0.95rem;
    text-align: left;
    backdrop-filter: blur(6px);
}

.gestofi-contact-details span {
    display: block;
}

.gestofi-contact-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.gestofi-footer {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid var(--gestofi-border);
    margin-top: 24px;
}

.gestofi-footer-brand {
    font-size: 0.95rem;
    color: var(--gestofi-text-light);
    margin: 0 0 12px;
}

.gestofi-footer-brand a {
    color: var(--gestofi-primary);
    text-decoration: none;
    font-weight: 600;
}

.gestofi-footer-brand a:hover {
    text-decoration: underline;
}

.gestofi-footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
}

.gestofi-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--gestofi-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gestofi-footer-socials a:hover {
    background: var(--gestofi-primary);
    color: #fff;
}

.gestofi-footer-socials svg {
    width: 18px;
    height: 18px;
}

.gestofi-footer-copy {
    font-size: 0.8rem;
    color: var(--gestofi-text-light);
    margin: 0;
}

/* ===== In-Feed Product Ad (matches pharmacy card language) ===== */
.ad-promo-banner {
    position: relative;
    margin: 32px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border: 1px solid #d1e7e4;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.06);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ad-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 5px 0 0 5px;
}

.ad-promo-banner:hover {
    border-color: #14b8a6;
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.12);
    transform: translateY(-2px);
}

.ad-promo-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px 22px 34px;
    flex-wrap: nowrap;
}

.ad-promo-banner-img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.10);
}

.ad-promo-banner-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #ccfbf1;
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right-section vertical column: WhatsApp button + store name */
.ad-promo-banner-aside {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 84px;
    position: relative;
    z-index: 1;
}

/* Store name caption (below WhatsApp button) */
.ad-promo-banner-store {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 140px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d9488;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.ad-promo-banner-verified {
    color: #14b8a6;
    flex-shrink: 0;
}

.ad-promo-banner-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ad-promo-banner-headline {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.ad-promo-banner-title {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-promo-banner-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0d9488;
    white-space: nowrap;
    flex-shrink: 0;
}

.ad-promo-banner-desc {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
    direction: rtl;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad-promo-banner-badge {
    display: inline-block;
    flex-shrink: 0;
    align-self: flex-start;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 8px;
}

.ad-promo-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ad-promo-banner-cta:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(37, 211, 102, 0.45);
}

/* CTA inside the aside column: compact so it fits the narrow vertical column */
.ad-promo-banner-aside .ad-promo-banner-cta {
    padding: 10px 18px;
    font-size: 0.9rem;
    justify-content: center;
}

.ad-promo-banner-cta svg {
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .gestofi-hero {
        padding: 32px 16px 24px;
    }

    .gestofi-hero-arc {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
        border-width: 16px;
    }

    .gestofi-hero-mosaic {
        width: 110px;
        height: 110px;
        gap: 5px;
        left: -20px;
        bottom: -20px;
    }

    .gestofi-hero-title {
        font-size: 2.2rem;
    }

    .gestofi-hero-tagline {
        font-size: 1.1rem;
    }

    .gestofi-hero-inner {
        flex-direction: column;
        gap: 24px;
    }

    .gestofi-hero-video {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .gestofi-stats {
        gap: 20px;
    }

    .gestofi-stat-value {
        font-size: 1.5rem;
    }

    .gestofi-section-title {
        font-size: 1.4rem;
    }

    .gestofi-versions-grid {
        grid-template-columns: 1fr;
    }

    .gestofi-version-card {
        padding: 22px 20px;
    }

    .gestofi-features-grid {
        grid-template-columns: 1fr;
    }

    .gestofi-videos-grid {
        grid-template-columns: 1fr;
    }

    .gestofi-mobile-grid {
        grid-template-columns: 1fr;
    }

    .gestofi-contact-details {
        text-align: center;
    }

    .gestofi-contact-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .gestofi-btn-lg {
        justify-content: center;
    }

    .ad-promo-banner {
        margin: 20px 0;
        border-radius: 12px;
    }

    .ad-promo-banner-inner {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr) auto;
        grid-template-areas: "media content aside";
        align-items: center;
        gap: 6px;
        padding: 10px 8px 10px 12px;
        flex-wrap: nowrap;
    }

    .ad-promo-banner-img,
    .ad-promo-banner-icon {
        grid-area: media;
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .ad-promo-banner-content {
        grid-area: content;
        min-width: 0;
        width: auto;
        flex: none;
        gap: 3px;
    }

    .ad-promo-banner-badge {
        position: absolute;
        top: 6px;
        left: 12px;
        z-index: 2;
        margin: 0;
        font-size: 0.5rem;
        padding: 2px 4px;
    }

    .ad-promo-banner-aside {
        grid-area: aside;
        min-width: 0;
        gap: 4px;
    }

    .ad-promo-banner-store {
        font-size: 0.58rem;
        max-width: 70px;
        gap: 2px;
    }

    .ad-promo-banner-title {
        min-width: 0;
        max-width: 100%;
        font-size: 0.78rem;
        gap: 2px;
    }

    .ad-promo-banner-price {
        font-size: 0.68rem;
    }

    .ad-promo-banner-desc {
        font-size: 0.65rem;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .ad-promo-banner-aside .ad-promo-banner-cta {
        gap: 3px;
        padding: 6px 7px;
        font-size: 0.64rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gestofi-versions-grid,
    .gestofi-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gestofi-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

body:not(.et-tb) #main-content .container,
body:not(.et-tb-has-header) #main-content .container {
    padding-top: 8px !important;
}

h1.entry-title.main_title {
    visibility: hidden !important;
    display: none !important;
}

#left-area ol, .entry-content ol, .et-l--body ol, .et-l--footer ol, .et-l--header ol {
padding: 0 0 2px!important;
}