/* GLOBALS */

:root {
    --podi-primary: #48db84;
    --podi-primary-light: #6ce69c;
    --podi-primary-dark: #36b36a;
    --podi-dark: #1a2e2a;
    --grey: #555555;
    --grey-light: #f8f9fa;
    --white: #FFFFFF;
}

body.page-template-page-podi-app {
    overflow-x: hidden;
    max-width: 100vw;
}

.podiapp__content {
    overflow-x: hidden;
    max-width: 100vw;
}

.wrapper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.podiapp__content p,
.podiapp__content span,
.podiapp__content h2,
.podiapp__content h3 {
    font-family: "Inter", "Inter", sans-serif;
    color: var(--grey);
}

.podiapp__content h3 {
    font-size: 2.734rem;
    line-height: 3.8rem;
}

.podiapp__content h2,
.simplify__text h3 {
    font-size: 4.272rem;
    line-height: 5.2rem;
}

@media (max-width: 900px) {
    .podiapp__content h2,
    .simplify__text h3 {
        font-size: 3.4rem;
        line-height: 4.2rem;
    }
}

@media (max-width: 500px) {
    .podiapp__content h2,
    .simplify__text h3 {
        font-size: 3rem;
        line-height: 4rem;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--podi-primary);
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    font-size: 1.38rem;
    transition: all 0.3s ease;
}

.button svg {
    width: 2rem;
    height: 2rem;
}

.button:hover {
    background-color: var(--podi-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(72, 219, 132, 0.3);
}

.button--primary {
    background-color: var(--podi-primary);
}

.button--secondary {
    background-color: transparent;
    border: 2px solid var(--podi-primary);
    color: var(--podi-primary);
}

.button--secondary svg {
    stroke: var(--podi-primary);
}

.button--secondary:hover {
    background-color: var(--podi-primary);
    color: var(--white);
}

.button--secondary:hover svg {
    stroke: var(--white);
}

.podiapp__content p {
    font-size: 1.75rem;
    color: var(--grey);
}

@media (max-width: 500px) {
    .podiapp__content p {
        
    }
}

.header--text,
.podiapp__content h3 {
    margin-bottom: 3rem;
}

.header--text span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 104.3%;
    letter-spacing: 0.385em;
    text-transform: uppercase;
}

.text--green {
    color: var(--podi-primary) !important;
}

.text--black {
    color: #000000 !important;
}

.text--strong {
    font-weight: 700;
}

.image--radius {
    max-width: 19.4rem;
    border-radius: 50%;
} 

@media (max-width: 560px) {
    .image--radius {
        max-width: 15rem;
    }
}

@media (max-width: 425px) {
    .image--radius {
        max-width: 12rem;
    }
}

.about__content,
.declaration,
.explanation,
.goals,
.simplify,
.webmania-declaration {
    display: flex;
    gap: 6.5rem;
    align-items: center;
    justify-content: center;
}

.banner-text__content p:first-of-type,
.explanation__text p:first-of-type,
.goals__text p:first-of-type,
.simplify__text p:first-of-type,
.simplify__text p:last-of-type {
    margin-bottom: 3rem;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */

.hero {
    padding: 12rem 0;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-dark) 50%, #1a5c3a 100%);
    position: relative;
    min-height: 65rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__circles {
    position: absolute;
    top: 0;
    right: -10%;
    width: 80%;
    height: 100%;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__circle--1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.hero__circle--2 {
    width: 400px;
    height: 400px;
    top: 50px;
    right: 50px;
    animation: pulse 6s ease-in-out infinite 1s;
}

.hero__circle--3 {
    width: 200px;
    height: 200px;
    top: 150px;
    right: 150px;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.hero__grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    max-width: 50rem;
}

.hero__text p {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.7;
}

.hero__text .header--text {
    margin-bottom: 0;
}

.hero__text span {
    display: block;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__logo {
    color: var(--white);
}

.hero__logo img,
.hero__logo svg {
    max-width: 43.2rem;
    width: 200px;
    height: auto;
}

/* Hero Visual Cards */
.hero__visual {
    position: relative;
    width: 45%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== */
/* RECEIPT VISUALIZATION */
/* ==================== */

.hero__visual--receipt {
    perspective: 1000px;
}

/* Cupom Fiscal */
.receipt {
    background: white;
    width: 260px;
    padding: 2rem 1.5rem;
    border-radius: 4px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    font-family: 'Courier New', monospace;
    color: #333;
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    animation: receiptFloat 6s ease-in-out infinite;
}

.receipt::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(135deg, transparent 33.33%, white 33.33%, white 66.66%, transparent 66.66%);
    background-size: 10px 10px;
}

.receipt::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(-45deg, transparent 33.33%, white 33.33%, white 66.66%, transparent 66.66%);
    background-size: 10px 10px;
}

@keyframes receiptFloat {
    0%, 100% { 
        transform: rotateY(-5deg) rotateX(5deg) translateY(0); 
    }
    50% { 
        transform: rotateY(-5deg) rotateX(5deg) translateY(-10px); 
    }
}

.receipt__header {
    text-align: center;
    margin-bottom: 1rem;
}

.receipt__logo-placeholder {
    width: 92px;
    height: 28px;
    background: var(--podi-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--white);
}

.receipt__logo-placeholder .podiapp-logo {
    width: 56px;
    height: auto;
}

.receipt__title {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #333;
}

.receipt__subtitle {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 0.2rem;
}

.receipt__divider {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 1rem 0;
}

.receipt__items {
    margin: 1rem 0;
}

.receipt__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #888;
}

.receipt__item-name {
    font-size: 0.9rem;
}

.receipt__item-price {
    font-size: 0.9rem;
}

.receipt__total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #333;
}

.receipt__qrcode {
    text-align: center;
    margin: 1.5rem 0 1rem;
}

.receipt__qrcode-inner {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 5px;
    border: 2px solid #333;
    border-radius: 4px;
}

.qrcode-svg {
    width: 100%;
    height: 100%;
    color: #333;
}

.receipt__qrcode-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.receipt__chave {
    text-align: center;
    font-size: 0.7rem;
    color: #888;
    line-height: 1.4;
    margin-top: 1rem;
}

.receipt__chave-number {
    display: block;
    word-break: break-all;
    margin-top: 0.3rem;
    font-size: 0.65rem;
}

/* Scanner Animation */
.scanner {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.scanner__beam {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--podi-primary) 20%, 
        #fff 50%, 
        var(--podi-primary) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 20px var(--podi-primary),
        0 0 40px var(--podi-primary);
    animation: scanBeam 2s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes scanBeam {
    0%, 100% { 
        top: 0; 
        opacity: 0.5;
    }
    50% { 
        top: calc(100% - 3px); 
        opacity: 1;
    }
}

.scanner__corners {
    position: absolute;
    inset: 0;
}

.scanner__corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid var(--podi-primary);
}

.scanner__corner--tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.scanner__corner--tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.scanner__corner--bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.scanner__corner--br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

/* Validation Badge */
.validation-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: white;
    border-radius: 16px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: badgePop 0.5s ease-out 1s both, floatSmall 4s ease-in-out infinite 1.5s;
}

@keyframes badgePop {
    0% { 
        transform: scale(0) translateY(20px);
        opacity: 0;
    }
    100% { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.validation-badge__icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseCheck 2s ease-in-out infinite;
}

@keyframes pulseCheck {
    0%, 100% { box-shadow: 0 0 0 0 rgba(72, 219, 132, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(72, 219, 132, 0); }
}

.validation-badge__icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.validation-badge__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.validation-badge__status {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--podi-primary-dark);
    letter-spacing: 0.05em;
}

.validation-badge__info {
    font-size: 1.1rem;
    color: #666;
}

/* Stats Floating */
.hero__stats-float {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
}

.stat-float--1 {
    top: 20px;
    left: -40px;
    animation: floatSmall 5s ease-in-out infinite;
}

.stat-float--2 {
    top: 100px;
    right: -60px;
    animation: floatSmall 4s ease-in-out infinite 1s;
}

.stat-float__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-float__label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Receipt Responsive */
@media (max-width: 1024px) {
    .receipt {
        width: 220px;
        padding: 1.5rem 1.2rem;
    }
    
    .scanner {
        width: 150px;
        height: 150px;
    }
    
    .validation-badge {
        right: 0;
        bottom: 20px;
    }
    
    .stat-float--1 {
        left: 0;
    }
    
    .stat-float--2 {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero__visual--receipt {
        height: 400px;
    }
    
    .receipt {
        width: 200px;
        padding: 1.2rem 1rem;
        transform: none;
    }
    
    .scanner {
        width: 130px;
        height: 130px;
    }
    
    .validation-badge {
        padding: 1rem 1.5rem;
        right: 50%;
        transform: translateX(50%);
        bottom: 10px;
    }
    
    .stat-float {
        display: none;
    }
    
    @keyframes receiptFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
}

@media (max-width: 500px) {
    .hero__visual--receipt {
        height: 350px;
    }
    
    .receipt {
        width: 180px;
        padding: 1rem 0.8rem;
    }
    
    .receipt__qrcode-inner {
        width: 60px;
        height: 60px;
    }
    
    .scanner {
        width: 110px;
        height: 110px;
    }
    
    .validation-badge {
        padding: 0.8rem 1.2rem;
        gap: 1rem;
    }
    
    .validation-badge__icon {
        width: 35px;
        height: 35px;
    }
    
    .validation-badge__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .validation-badge__status {
        font-size: 1.2rem;
    }
    
    .validation-badge__info {
        font-size: 0.9rem;
    }
}

.hero__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
}

.hero__card--main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    animation: float 6s ease-in-out infinite;
}

.hero__card--secondary {
    position: absolute;
    bottom: 60px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

.hero__card--secondary {
    animation: floatSmall 6s ease-in-out infinite 2s;
}

@keyframes floatSmall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero__card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.hero__card-header span {
    font-size: 2rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0;
}

.hero__card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 0.5rem;
}

.hero__stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__card-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.hero__card-bar-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 4px;
    animation: progress 2s ease-out;
}

@keyframes progress {
    from { width: 0; }
    to { width: 85%; }
}

.hero__card-check {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card-check svg {
    width: 24px;
    height: 24px;
    stroke: var(--podi-primary);
}

.hero__card--secondary span {
    
    font-weight: 600;
    color: white !important;
    margin-bottom: 0;
}

/* Floating Elements */
.hero__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero__float {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    font-family: 'SF Mono', 'Monaco', monospace;
}

.hero__float--1 {
    top: 80px;
    left: 10px;
    animation: floatSmall 5s ease-in-out infinite;
}

.hero__float--2 {
    top: 50%;
    right: -20px;
    animation: floatSmall 4s ease-in-out infinite 1s;
}

.hero__float--3 {
    bottom: 100px;
    left: 30px;
    animation: floatSmall 6s ease-in-out infinite 0.5s;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 10rem 0 6rem;
    }

    .hero__content {
        flex-direction: column;
        text-align: center;
    }

    .hero__text {
        width: 100%;
        max-width: 60rem;
        padding: 0 2rem;
    }

    .hero__visual {
        width: 100%;
        height: 400px;
        margin-top: 4rem;
    }

    .hero__card--main {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .hero__visual {
        height: 350px;
    }

    .hero__card--main {
        width: 240px;
        padding: 2rem;
    }

    .hero__card--secondary {
        bottom: 40px;
        right: 20px;
    }

    .hero__float {
        display: none;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 9rem 0 5rem;
    }

    .hero__text {
        padding: 0 1rem;
    }

    .hero__logo svg,
    .hero__logo img {
        width: 150px;
        height: auto;
    }

    .hero__visual {
        height: 300px;
    }

    .hero__card--main {
        width: 200px;
        padding: 1.5rem;
    }

    .hero__stat-number {
        font-size: 1.8rem;
    }

    .hero__stat-label {
        font-size: 1rem;
    }

    /* Hide hero circles on mobile to prevent overflow */
    .hero__circles {
        display: none;
    }

    .hero__card--secondary {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */

.about {
    padding: 12rem 0;
}

.about__content {
    gap: 4rem;
}

.about__visual {
    width: 50%;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(72, 219, 132, 0.05) 0%, rgba(108, 230, 156, 0.1) 100%);
    border-radius: 30px;
    overflow: hidden;
}

.about__visual-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(72, 219, 132, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.about__connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.about__connection-lines svg {
    width: 100%;
    height: 100%;
}

.about__line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 3s ease forwards;
}

.about__line--2 {
    animation-delay: 0.3s;
}

.about__line--3 {
    animation-delay: 0.6s;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.about__logos {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about__logo-item {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(72, 219, 132, 0.2);
    transition: transform 0.3s ease;
}

.about__logo-item:hover {
    transform: scale(1.05);
}

.about__logo-item--podi {
    background: var(--podi-primary);
    color: var(--white);
}

.about__logo-item--podi svg {
    width: 60px;
    height: auto;
}

.about__logo-item--podi img {
    width: 60px;
    height: auto;
}

.about__logo-item--webmania {
    background: white;
    padding: 0;
}

.about__logo-item--webmania img {
    width: 70px;
    height: auto;
}

.about__logo-item--webmania span {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.about__logo-plus {
    font-size: 3rem;
    font-weight: 300;
    color: var(--podi-primary);
}

.about__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about__particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--podi-primary-light);
    border-radius: 50%;
    opacity: 0.6;
}

.about__particle--1 {
    top: 20%;
    left: 15%;
    animation: floatParticle 4s ease-in-out infinite;
}

.about__particle--2 {
    top: 70%;
    left: 25%;
    animation: floatParticle 5s ease-in-out infinite 0.5s;
}

.about__particle--3 {
    top: 30%;
    right: 20%;
    animation: floatParticle 4.5s ease-in-out infinite 1s;
}

.about__particle--4 {
    bottom: 25%;
    right: 15%;
    animation: floatParticle 5.5s ease-in-out infinite 1.5s;
}

.about__particle--5 {
    top: 50%;
    left: 10%;
    animation: floatParticle 6s ease-in-out infinite 2s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.about__text {
    width: 45%;
}

.about--texts p {
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 0;
    }

    .about__content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about__visual {
        width: 100%;
        height: 350px;
    }

    .about__text {
        width: 100%;
        text-align: center;
    }

    .about__logo-item {
        width: 80px;
        height: 80px;
    }

    .about__logo-item--podi svg,
    .about__logo-item--podi img {
        width: 50px;
    }

    .about__logo-item--webmania span {
        font-size: 2.5rem;
    }

    .about__logo-item--webmania img {
        width: 55px;
    }
}

/* ==================== */
/* BENEFITS SECTION */
/* ==================== */

.declaration {
    padding: 2rem 0 8rem;
    flex-direction: column;
    gap: 4rem;
}

.declaration__header {
    text-align: center;
    width: 100%;
}

.declaration__header .header--text {
    margin-bottom: 0;
}

.declaration__flow {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.declaration__benefits {
    width: 100%;
}

.declaration__text {
    width: 45%;
}

.declaration__visual {
    width: 50%;
}

/* Benefits List with Icons */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--grey-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--podi-primary-light);
    box-shadow: 0 10px 40px rgba(72, 219, 132, 0.1);
}

.benefit-item__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item__icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.benefit-item__content h4 {
    color: var(--podi-primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
}

.benefit-item__content p {
    margin-bottom: 0;
    font-size: 1.5rem;
}

/* API Visualization */
.api-visualization {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.api-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--podi-primary), var(--podi-primary-light), var(--podi-primary));
}

.api-code-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.api-code-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.api-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.api-dot--red { background: #ff5f56; }
.api-dot--yellow { background: #ffbd2e; }
.api-dot--green { background: #27ca40; }

.api-code-title {
    margin-left: auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'SF Mono', 'Monaco', monospace;
}

.api-code-content {
    padding: 2rem;
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 1.4rem;
    line-height: 1.8;
}

.api-code-line {
    color: white;
}

.api-code-line--indent {
    padding-left: 2rem;
}

.api-code-bracket { color: #f8f8f2; }
.api-code-key { color: #a6e22e; }
.api-code-string { color: #e6db74; }
.api-code-number { color: #ae81ff; }

/* API Flow */
.api-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.api-flow--centered {
    gap: 2rem;
}

.api-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.api-flow-icon {
    width: 80px;
    height: 80px;
    background: rgba(72, 219, 132, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.api-flow-icon--podi {
    background: var(--podi-primary);
    color: var(--white);
}

.api-flow-icon--podi svg {
    width: 50px;
    height: auto;
}

.api-flow-icon--podi img {
    width: 50px;
    height: auto;
}

.api-flow-item--active .api-flow-icon {
    background: white;
    box-shadow: 0 10px 30px rgba(72, 219, 132, 0.2);
}

.api-flow-item--active .api-flow-icon img {
    width: 55px;
    height: auto;
}

.api-flow-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--podi-primary);
}

.api-flow-item span {
    font-size: 1.4rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.api-flow-arrow {
    display: block;
    transform: none;
    width: 50px;
}

.api-flow-arrow svg {
    width: 100%;
    stroke: var(--podi-primary);
}

/* Benefits List Grid (4 cards) */
.benefits-list--grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.benefits-list--grid .benefit-item {
    flex-direction: column;
    text-align: center;
    background: white;
    border: 1px solid rgba(72, 219, 132, 0.1);
    padding: 3rem 2rem;
}

.benefits-list--grid .benefit-item__icon {
    margin: 0 auto 1.5rem;
}

.benefits-list--grid .benefit-item__content h4 {
    margin-bottom: 1rem;
}

/* CTA Section */
.declaration__cta {
    display: flex;
    justify-content: center;
    padding-top: 4rem;
}

.button--large {
    padding: 2rem 5rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}


@media (max-width: 1024px) {
    .benefits-list--grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-list--grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Grid */
.banner-text {
    padding: 0 0 8rem;
}

.banner-text__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.benefit-card {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--grey-light);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--podi-primary-light);
    box-shadow: 0 20px 60px rgba(72, 219, 132, 0.15);
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.benefit-card__icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.benefit-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit-card p {
    font-size: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .declaration {
        flex-direction: column;
        gap: 4rem;
    }

    .declaration__text,
    .declaration__visual {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .declaration {
        padding: 6rem 0;
    }

    .declaration__text {
        text-align: center;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item__icon {
        margin: 0 auto;
    }

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

    .api-visualization {
        padding: 2rem;
    }

    .api-flow {
        flex-wrap: wrap;
    }

    .api-flow-arrow {
        display: block;
        transform: rotate(90deg);
        width: 30px;
    }

    .api-code-content {
        font-size: 1.2rem;
    }
}

/* ==================== */
/* TESTIMONIAL SECTION */
/* ==================== */

.testimonial {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--grey-light) 0%, white 100%);
}

.testimonial__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.testimonial__header {
    text-align: center;
}

.testimonial__header .header--text {
    margin-bottom: 0;
}

.testimonial__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;
}

.testimonial__card {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(72, 219, 132, 0.1);
    transition: all 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(72, 219, 132, 0.15);
}

.testimonial__quote {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 3rem;
    position: relative;
    padding-left: 3rem;
}

.testimonial__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 5rem;
    color: var(--podi-primary);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.testimonial__info h4 {
    font-size: 1.8rem;
    color: var(--podi-primary-dark);
    margin-bottom: 0.5rem;
}

.testimonial__info span {
    font-size: 1.4rem;
    color: var(--grey);
}

@media (max-width: 900px) {
    .testimonial__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .testimonial__card {
        padding: 3rem 2rem;
    }

    .testimonial__quote {
        font-size: 1.6rem;
        padding-left: 2.5rem;
    }

    .testimonial__quote::before {
        font-size: 4rem;
    }
}

/* ==================== */
/* FEATURES HIGHLIGHT SECTION */
/* ==================== */

.features-highlight {
    padding: 8rem 0;
}

.features-highlight__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.features-highlight__header {
    text-align: center;
    max-width: 800px;
}

.features-highlight__header .header--text {
    margin-bottom: 0;
}

.features-highlight__header p {
    font-size: 1.8rem;
    margin-top: 2rem;
}

.features-highlight__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}

.feature-highlight-card {
    background: white;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid var(--grey-light);
    transition: all 0.3s ease;
}

.feature-highlight-card:hover {
    border-color: var(--podi-primary);
    box-shadow: 0 20px 60px rgba(72, 219, 132, 0.1);
    transform: translateY(-10px);
}

.feature-highlight-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-highlight-card__icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.feature-highlight-card h4 {
    font-size: 2rem;
    color: var(--podi-primary-dark);
    margin-bottom: 1.5rem;
}

.feature-highlight-card p {
    font-size: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .features-highlight__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-highlight__grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* CTA SECTION */
/* ==================== */

.cta-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-dark) 50%, #1a5c3a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-section__circles {
    position: absolute;
    top: 0;
    left: -10%;
    width: 80%;
    height: 100%;
}

.cta-section__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section__circle--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.cta-section__circle--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: 10%;
    animation: pulse 6s ease-in-out infinite 1s;
}

.cta-section .cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.cta-section .cta-content h2 {
    color: white;
    font-size: 4rem;
    line-height: 1.2;
}

.cta-section .cta-section__lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
}

.cta-content__quote {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
}

.cta-content__quote-icon {
    width: 40px;
    height: 40px;
    color: var(--podi-primary-dark);
    flex-shrink: 0;
}

.cta-content__quote p {
    margin-bottom: 0;
    color: #000000;
    font-size: 1.6rem;
    line-height: 1.7;
}

.cta-content__quote .quote-author {
    margin-top: 1.25rem;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.7);
}

.cta-section .button {
    background: white;
    color: var(--podi-primary-dark);
    font-weight: 700;
}

.cta-section .button:hover {
    background: var(--grey-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }

    .cta-section .cta-content h2 {
        font-size: 3rem;
    }

    .cta-section__circles {
        display: none;
    }

    .cta-content__quote {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-content__quote-body {
        text-align: center;
    }
}

/* ==================== */
/* PROCESS STEPS SECTION */
/* ==================== */

.simplify {
    padding: 8rem 0;
    background: linear-gradient(180deg, white 0%, var(--grey-light) 100%);
}

.simplify__content {
    width: 100%;
    text-align: center;
}

.simplify__content h3 {
    margin-bottom: 2rem;
}

.simplify__content .subtitle {
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
}

.process-steps {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 0;
    align-items: stretch;
}

.step {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    flex: 1;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(72, 219, 132, 0.1);
    padding: 3rem 2rem;
    display: flex;
    gap: 2rem;
}

.step__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
}

.step__content {
    flex: 1;
}

.step__content h4 {
    color: var(--podi-primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.step__content p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.step__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.step__tag {
    background: rgba(72, 219, 132, 0.1);
    color: var(--podi-primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.step__connector {
    display: none;
}

/* Step Checklist */
.step__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--grey);
}

.step__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__check svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

/* CTA Container */
.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto 0;
}

.cta-container__success {
    background: linear-gradient(135deg, rgba(72, 219, 132, 0.1) 0%, rgba(108, 230, 156, 0.05) 100%);
    border: 1px solid rgba(72, 219, 132, 0.3);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.success-animation {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--podi-primary) 0%, var(--podi-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(72, 219, 132, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(72, 219, 132, 0); }
}

.success-animation svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.cta-container__success p {
    text-align: left;
    margin-bottom: 0;
    
}


/* ==================== */
/* MOBILE RESPONSIVENESS */
/* ==================== */

@media (max-width: 480px) {
    .hero__text h2 {
        font-size: 3rem;
    }

    .hero__text p {
        font-size: 1.5rem;
    }

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

    .hero__card {
        width: 100%;
        max-width: 280px;
    }

    .hero__card--secondary {
        width: auto;
    }

    .api-flow--centered {
        gap: 1.5rem;
        flex-direction: column;
    }

    .api-flow-icon {
        width: 60px;
        height: 60px;
    }

    .api-flow-icon svg,
    .api-flow-icon img {
        width: 30px;
        height: 30px;
    }

    .api-flow-arrow {
        display: block;
        transform: rotate(90deg);
        width: 30px;
    }

    .benefits-list--grid {
        gap: 1.5rem;
    }

    .benefits-list--grid .benefit-item {
        padding: 2rem 1.5rem;
    }

    .button--large {
        padding: 1.5rem 3rem;
        font-size: 1.4rem;
    }

    .about__logo-item {
        width: 70px;
        height: 70px;
    }

    .about__logo-item--podi svg,
    .about__logo-item--podi img {
        width: 35px;
    }

    .about__logo-item--webmania img {
        width: 50px;
    }

    .about__logo-plus {
        font-size: 2.5rem;
    }

    .declaration__header h2 {
        font-size: 3rem;
    }
}

/* ==================== */
/* RESPONSIVE FIXES */
/* ==================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .api-flow--centered {
        gap: 2rem;
    }

    .api-flow-arrow {
        display: block;
        width: 40px;
    }

    .benefits-list--grid .benefit-item {
        padding: 2.5rem 1.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .declaration__flow {
        padding: 2rem 0;
    }

    .api-flow--centered {
        flex-direction: column;
        gap: 1rem;
    }

    .api-flow-arrow {
        display: block;
        transform: rotate(90deg);
        width: 30px;
    }

    .api-flow-item span {
        font-size: 1.2rem;
    }

    .about__logos {
        gap: 1rem;
    }

    .about__logo-item {
        width: 60px;
        height: 60px;
    }

    .about__logo-item--webmania img {
        width: 45px;
    }

    .about__logo-plus {
        font-size: 2rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .declaration__header .header--text h2 {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }

    .api-flow-icon {
        width: 55px;
        height: 55px;
    }

    .api-flow-icon svg {
        width: 28px;
        height: 28px;
    }

    .api-flow-icon--podi svg,
    .api-flow-icon--podi img {
        width: 40px;
    }

    .api-flow-item span {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }

    .benefits-list--grid .benefit-item {
        padding: 1.5rem;
    }

    .benefits-list--grid .benefit-item__content h4 {
        font-size: 1.6rem;
    }

    .benefits-list--grid .benefit-item__content p {
        font-size: 1.3rem;
    }

    .button--large {
        padding: 1.5rem 3rem;
        font-size: 1.4rem;
    }

    .about__visual {
        height: 280px;
    }

    .about__logo-item {
        width: 50px;
        height: 50px;
    }

    .about__logo-item--podi svg,
    .about__logo-item--podi img {
        width: 28px;
    }

    .about__logo-item--webmania img {
        width: 35px;
    }

    .about__logo-plus {
        font-size: 1.6rem;
    }

    .about__text .header--text h2 {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }
}
