/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Updated */
    --bg-primary: #C2D0C0;
    --bg-secondary: #C2D0C0;
    --bg-tertiary: #C2D0C0;
    --bg-card: #ffffff;

    /* Text */
    --text-primary: #013E27;
    --text-secondary: #013E27;
    --text-tertiary: #013E27;
    --text-white: #FFFFFF;

    /* Brand Colors - PicPay Inspired */
    --picpay-green: #013E27;
    --picpay-green-dark: #013E27;
    --picpay-green-light: #013E27;
    --accent-blue: #0066FF;
    --accent-purple: #6C4DD0;
    --accent-orange: #FF6B35;
    --accent-pink: #FF4081;

    /* Sem Gradientes - Cores sólidas */
    --gradient-primary: #013E27;
    --gradient-secondary: #0066FF;
    --gradient-tertiary: #11C76F;
    --gradient-vibrant: #FF4081;

    /* Shadows - Mais suaves */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.12);

    /* Glow Effects */
    --glow-green: 0 0 40px rgba(17, 199, 111, 0.2);
    --glow-blue: 0 0 40px rgba(0, 102, 255, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    z-index: 100;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-text {
    color: var(--text-primary);
}

.logo-highlight {
    color: var(--picpay-green);
}

.logo-divider {
    color: var(--text-tertiary);
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--picpay-green);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--picpay-green);
}

.nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--picpay-green);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 16px rgba(17, 199, 111, 0.25); */
}

.btn-header:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 24px rgba(17, 199, 111, 0.35); */
}

/* ===== HERO SECTION ===== */
.hero-dark {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: #C2D0C0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(17, 199, 111, 0.08) ;
    /* background-image:
        radial-gradient(circle at 20% 30%, rgba(17, 199, 111, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.06) 0%, transparent 50%); */
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 199, 111, 0.1);
    border: 1px solid rgba(17, 199, 111, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--picpay-green-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--picpay-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-title {
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    color: var(--picpay-green);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 199, 111, 0.08);
    border: 1px solid rgba(17, 199, 111, 0.15);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.feature-tag svg {
    color: var(--picpay-green);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    background: var(--picpay-green);
    color: #fff;
    border: none;
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 24px rgba(17, 199, 111, 0.3); */
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 12px 32px rgba(17, 199, 111, 0.4); */
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* ===== FORM CARD ===== */
.hero-form-wrapper {
    position: relative;
}

.form-card-modern {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 40px;
    /* box-shadow: var(--shadow-xl); */
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    gap: 16px;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.input-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    color: var(--text-primary);
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: var(--text-tertiary);
}

.input-group input:focus {
    outline: none;
    border-color: var(--picpay-green);
    background: #fff;
    /* box-shadow: 0 0 0 4px rgba(17, 199, 111, 0.1); */
}

.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--picpay-green);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    /* box-shadow: 0 6px 20px rgba(17, 199, 111, 0.3); */
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 28px rgba(17, 199, 111, 0.4); */
}

.btn-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-form-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-align: center;
    justify-content: center;
}

.form-disclaimer svg {
    flex-shrink: 0;
    color: var(--picpay-green);
}

/* ===== HERO DECORATION ===== */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: var(--picpay-green);
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    bottom: -100px;
    left: -100px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--picpay-green);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: rgba(17, 199, 111, 0.1);
    color: var(--picpay-green-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    border: 1px solid rgba(17, 199, 111, 0.2);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== POS SECTION (NOVA) ===== */
.pos-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.pos-image {
    text-align: center;
}

.pos-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.pos-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.pos-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.pos-features {
    list-style: none;
    margin-bottom: 32px;
}

.pos-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
    font-weight: 500;
}

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

.pos-features svg {
    flex-shrink: 0;
    color: var(--picpay-green);
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--picpay-green);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--picpay-green);
    /* box-shadow: 0 12px 32px rgba(17, 199, 111, 0.2); */
}

.solution-card:hover::before {
    opacity: 0.04;
}

.solution-card.featured {
    border-color: var(--picpay-green);
    /* background: linear-gradient(135deg, rgba(17, 199, 111, 0.05) 0%, var(--bg-card) 100%); */
    /* box-shadow: 0 8px 24px rgba(17, 199, 111, 0.15); */
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--picpay-green);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* box-shadow: 0 4px 12px rgba(17, 199, 111, 0.3); */
}

.solution-icon {
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    position: relative;
}

.icon-wrapper.blue {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
}

.icon-wrapper.gold {
    background: rgba(17, 199, 111, 0.1);
    color: var(--picpay-green);
}

.icon-wrapper.green {
    background: rgba(17, 199, 111, 0.1);
    color: var(--picpay-green);
}

.icon-wrapper.purple {
    background: rgba(108, 77, 208, 0.1);
    color: var(--accent-purple);
}

.icon-wrapper.orange {
    background: rgba(255, 107, 53, 0.1);
    /* color: var(--accent-orange); */
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-tag {
    display: inline-block;
    background: rgba(17, 199, 111, 0.08);
    border: 1px solid rgba(17, 199, 111, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--picpay-green-dark);
    font-weight: 600;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    /* box-shadow: var(--shadow-md); */
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: var(--bg-card);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--picpay-green);
    /* box-shadow: 0 16px 40px rgba(17, 199, 111, 0.15); */
}

.pricing-card-modern.featured {
    border-color: var(--picpay-green);
    border-width: 3px;
    /* background: linear-gradient(135deg, rgba(17, 199, 111, 0.04) 0%, var(--bg-card) 100%); */
    transform: scale(1.05);
    /* box-shadow: 0 12px 32px rgba(17, 199, 111, 0.2); */
}

.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--picpay-green);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    /* box-shadow: 0 6px 20px rgba(17, 199, 111, 0.3); */
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--picpay-green);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.price-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--picpay-green);
}

.pricing-annual {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
    font-weight: 500;
}

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

.pricing-features svg {
    flex-shrink: 0;
    color: var(--picpay-green);
}

.btn-pricing {
    width: 100%;
    background: var(--bg-secondary);
    border: 2px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: rgba(17, 199, 111, 0.08);
    border-color: var(--picpay-green);
    color: var(--picpay-green-dark);
}

.btn-pricing.primary {
    background: var(--picpay-green);
    color: #fff;
    border: none;
    /* box-shadow: 0 6px 20px rgba(17, 199, 111, 0.3); */
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 28px rgba(17, 199, 111, 0.4); */
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-modern {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item-modern.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-modern.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 100px 0;
    /* background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.1) 0%, var(--bg-primary) 70%); */
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-4px);
}

.cta-note {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* ===== FOOTER ===== */
.footer-modern {
    background: var(--bg-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-column a:hover {
    color: var(--picpay-green);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* ===== MODALS ===== */
.modal-modern {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 20px;
}

.modal-content-modern {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.3s ease;
    /* box-shadow: var(--shadow-xl); */
}

.modal-icon-wrapper {
    margin-bottom: 24px;
}

.modal-content-modern h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.modal-content-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-modal {
    background: var(--picpay-green);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 6px 20px rgba(17, 199, 111, 0.3); */
}

.btn-modal:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 28px rgba(17, 199, 111, 0.4); */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

/* ===== LOADING STATE ===== */
.btn-form-submit.loading .btn-text {
    opacity: 0;
}

.btn-form-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .pos-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card-modern.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

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

    .section-title {
        font-size: 2.25rem;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-card-modern {
        padding: 28px 20px;
    }

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

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