/* Padzilla Landing Page - CSS */

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2D2D2D;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-green {
    color: #27c12d;
}

.required {
    color: #ef4444;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #27c12d;
    color: white;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    background-color: #1fa025;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2D2D2D;
    color: #2D2D2D;
    padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
    background-color: #2D2D2D;
    color: white;
}

.btn-white {
    background-color: white;
    color: #27c12d;
    padding: 0.75rem 1.5rem;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

@media (min-width: 640px) {
    .btn-full {
        width: auto;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f0f0f0;
}

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

.logo img {
    height: 32px;
}

@media (min-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: #7A7A7A;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2D2D2D;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: #7A7A7A;
    font-weight: 500;
}

.phone-link:hover {
    color: #27c12d;
}

@media (min-width: 640px) {
    .phone-link {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 0 6rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f8f8 0%, white 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 5rem;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(39, 193, 45, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(39, 193, 45, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-container {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(39, 193, 45, 0.1);
    color: #27c12d;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #7A7A7A;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #7A7A7A;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.phone-frame {
    position: relative;
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    border-radius: 3rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotate(0deg);
}

.phone-notch {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 1.5rem;
    background: #1a1a1a;
    border-radius: 9999px;
}

.phone-frame img {
    border-radius: 2.5rem;
    width: 100%;
}

/* Phone screen container */
.phone-screen {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    display: block;
}

.phone-screen iframe {
    width: 100%;
    aspect-ratio: 9/16;
    border: none;
    border-radius: 2.5rem;
}

/* Play overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 2.5rem;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-overlay:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(39, 193, 45, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    margin-left: 8px;
}

.play-text {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-badge-size {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(39, 193, 45, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D2D2D;
}

.badge-label {
    font-size: 0.875rem;
    color: #7A7A7A;
}

/* Stats Section */
.stats {
    background: #2D2D2D;
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27c12d;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #7A7A7A;
}

.section-header-light h2 {
    color: white;
}

.section-header-light p {
    color: rgba(255, 255, 255, 0.7);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

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

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

.benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(39, 193, 45, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #27c12d;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #27c12d;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #7A7A7A;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    padding: 5rem 0;
    background: #f8f8f8;
}

.use-cases-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.use-case-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.use-case-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.05);
}

.use-case-content {
    padding: 1.5rem;
}

.use-case-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.use-case-content p {
    color: #7A7A7A;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features-container {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr 1fr;
    }
}

.features-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .features-content h2 {
        font-size: 2.5rem;
    }
}

.features-content>p {
    font-size: 1.125rem;
    color: #7A7A7A;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 0.75rem;
}

.feature-check {
    width: 1.5rem;
    height: 1.5rem;
    background: #27c12d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-title {
    font-weight: 600;
    color: #2D2D2D;
}

.feature-desc {
    font-size: 0.875rem;
    color: #7A7A7A;
}

.features-image img {
    width: 100%;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #2D2D2D;
}

.pricing-card {
    max-width: 32rem;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-header {
    background: #27c12d;
    padding: 2rem;
    text-align: center;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 768px) {
    .price {
        font-size: 3.75rem;
    }
}

.period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(39, 193, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-note {
    font-size: 0.875rem;
    color: #7A7A7A;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-body .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .pricing-body .btn {
        width: auto;
        display: flex;
        margin: 0 auto;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.contact-form-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e2e2;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27c12d;
    box-shadow: 0 0 0 3px rgba(39, 193, 45, 0.1);
}

.form-group textarea {
    resize: none;
}

.recaptcha-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
}

.recaptcha-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    visibility: hidden;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .form-buttons {
        flex-direction: row;
    }
}

/* Testimonial Section */
.testimonial {
    padding: 5rem 0;
    background: white;
}

.testimonial-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial blockquote {
    font-size: 1.25rem;
    color: #2D2D2D;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonial blockquote {
        font-size: 1.5rem;
    }
}

.author-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #2D2D2D;
}

.author-title {
    color: #7A7A7A;
}

.author-subtitle {
    color: #27c12d;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f8f8;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #27c12d;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: #7A7A7A;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #27c12d 0%, #1fa025 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .final-cta h2 {
        font-size: 3rem;
    }
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: #2D2D2D;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-brand img {
    height: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact a,
.footer-contact .address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #27c12d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 64rem;
}

.modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Selection */
::selection {
    background-color: #27c12d;
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #27c12d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1fa025;
}

/* Mobile Sticky Button */
.mobile-sticky-btn-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: #27c12d;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-sticky-btn-wrapper.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-sticky-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.desktop-only-btn {
    display: none;
}

@media (min-width: 768px) {
    .mobile-sticky-btn-wrapper {
        display: none;
    }

    .desktop-only-btn {
        display: inline-flex;
    }
}