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

:root {
    /* Colors - PicPay Style */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f9fc;
    --bg-tertiary: #e9ecef;
    --bg-card: #ffffff;

    /* Text */
    --text-primary: #1a1a1a;
    --text-secondary: #5c6470;
    --text-tertiary: #9299a3;

    /* Brand Colors - Cor Principal Sólida */
    --primary-color: #d70b52;
    --primary-dark: #b00943;
    --primary-light: #e91f62;
    --accent-blue: #0066FF;
    --accent-purple: #6C4DD0;
    --accent-orange: #FF6B35;
    --accent-pink: #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-primary: 0 0 40px rgba(215, 11, 82, 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(--primary-color);
}

.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(--primary-color);
    transition: width 0.3s ease;
}

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

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

.btn-header {
    background: var(--primary-color);
    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(215, 11, 82, 0.25);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(215, 11, 82, 0.35);
    background: var(--primary-dark);
}

/* ===== HERO SECTION ===== */
.hero-dark {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(215, 11, 82, 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(215, 11, 82, 0.1);
    border: 1px solid rgba(215, 11, 82, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    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-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

.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(215, 11, 82, 0.08);
    border: 1px solid rgba(215, 11, 82, 0.15);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

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

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

.btn-primary {
    background: var(--primary-color);
    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(215, 11, 82, 0.3);
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(215, 11, 82, 0.4);
    background: var(--primary-dark);
}

.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(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(215, 11, 82, 0.1);
}

.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    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(215, 11, 82, 0.3);
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(215, 11, 82, 0.4);
    background: var(--primary-dark);
}

.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: 6px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

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

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(215, 11, 82, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.solution-card-modern {
    background: var(--bg-card);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.solution-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 11, 82, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(215, 11, 82, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.solution-icon svg {
    color: var(--primary-color);
}

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

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

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.solution-link:hover {
    gap: 12px;
}

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

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

.stat-card-modern {
    text-align: center;
    padding: 32px;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(215, 11, 82, 0.1);
    border-radius: 14px;
    margin-bottom: 16px;
}

.stat-icon svg {
    color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

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

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

.benefit-card-modern {
    background: var(--bg-card);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover {
    border-color: rgba(215, 11, 82, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(215, 11, 82, 0.1);
    border-radius: 18px;
    margin-bottom: 24px;
}

.benefit-icon svg {
    color: var(--primary-color);
}

.benefit-card-modern h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

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

.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.06);
    border-radius: 32px;
    padding: 48px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-modern:hover {
    border-color: rgba(215, 11, 82, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-modern.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 12px 40px rgba(215, 11, 82, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    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-primary);
}

.price-text {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
}

.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: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
}

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

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

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

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

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

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

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

.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(215, 11, 82, 0.08);
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.btn-pricing.primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(215, 11, 82, 0.3);
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(215, 11, 82, 0.4);
    background: var(--primary-dark);
}

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

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

.faq-item-modern {
    background: var(--bg-card);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: rgba(215, 11, 82, 0.3);
}

.faq-item-modern.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(215, 11, 82, 0.1);
}

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

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

.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 28px 28px;
}

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

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(215, 11, 82, 0.08) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 22px 52px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 32px rgba(215, 11, 82, 0.3);
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(215, 11, 82, 0.4);
    background: var(--primary-dark);
}

.cta-note {
    display: block;
    margin-top: 24px;
    font-size: 0.95rem;
    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(--primary-color);
}

.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(--primary-color);
    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(215, 11, 82, 0.3);
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(215, 11, 82, 0.4);
    background: var(--primary-dark);
}

@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;
    }

    .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;
    }
}