/* Center align last two logos in last row and keep box size same */
.clients-grid .center-logo {
    justify-content: center;
    align-items: center;
    display: flex;
}
/* Center align last two logos in clients grid */
.clients-grid .center-logo {
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    grid-column: span 2;
}
:root {
    --primary-green: #14382b;
    --secondary-green: #1c7454;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.nav-cta {
    background: var(--secondary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(28, 116, 84, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 56, 43, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
    padding: 120px 0 80px;
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231c7454' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(20, 56, 43, 0.2);
    border: 3px solid var(--secondary-green);
}

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

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(28, 116, 84, 0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-green);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-form-container {
    position: relative;
    align-self: start;
}

/* Contact Form */
.contact-form-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.hero-form-container .form-container {
    border: 1px solid rgba(28, 116, 84, 0.15);
}

.form-container h2 {
    color: var(--primary-green);
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 700;
}

.form-container p {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row .form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(28, 116, 84, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(28, 116, 84, 0.4);
}

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

.submit-btn:hover svg {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0 !important;
}

/* Get Started Section */
.get-started-section {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    padding: 40px 0;
    text-align: center;
}

.get-started-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-green);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(28, 116, 84, 0.3);
}

.get-started-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 56, 43, 0.4);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 100px 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.problem-header h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.problem-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    background: var(--white);
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-left: 5px solid var(--secondary-green);
}

.intro-question {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.intro-action {
    font-size: 1.15rem;
    color: var(--secondary-green);
    font-weight: 500;
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.problem-card-danger::before {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.problem-card-warning::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.problem-card-success::before {
    background: linear-gradient(90deg, var(--secondary-green), #22c55e);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.problem-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-card-danger .problem-card-icon {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.problem-card-warning .problem-card-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.problem-card-success .problem-card-icon {
    background: rgba(28, 116, 84, 0.1);
    color: var(--secondary-green);
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.problem-detail-box {
    max-width: 900px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, rgba(28, 116, 84, 0.08) 0%, rgba(20, 56, 43, 0.05) 100%);
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid rgba(28, 116, 84, 0.15);
    text-align: center;
}

.problem-detail-box p {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

.problem-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-gray);
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
}

.benefit-highlight span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.problem-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-text {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.problem-cta-section .primary-cta {
    background: var(--white);
    color: var(--primary-green);
}

.problem-cta-section .primary-cta:hover {
    background: #f0fdf4;
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(28, 116, 84, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(28, 116, 84, 0.4);
}

/* Credentials Section */
.credentials-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d261d 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
}

.credentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.credentials-section .container {
    position: relative;
    z-index: 1;
}

.credentials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.credential-card {
    background: rgba(255,255,255,0.08);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.credential-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.credential-card .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #7dd3b8;
    margin-bottom: 10px;
    line-height: 1;
}

.credential-card .label {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
}

.secondary-cta-container {
    text-align: center;
    margin-top: 60px;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

/* Why Section */
.why-section {
    background: var(--secondary-green);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.why-section h2 {
    color: var(--white);
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.9;
}

/* Clients Section */
.clients-section {
    background: var(--white);
    padding: 100px 0;
}

.clients-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.client-card {
    background: var(--light-gray);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-green);
    box-shadow: 0 15px 35px rgba(28, 116, 84, 0.15);
    background: var(--white);
}

.client-card:hover img {
    filter: none;
    opacity: 1;
}

/* USP Section */
.usp-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.usp-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 700;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: var(--white);
    border-radius: 14px;
    border-left: 4px solid var(--secondary-green);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.usp-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.usp-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.usp-item p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-green);
}

.faq-question .icon {
    font-size: 1.8rem;
    color: var(--secondary-green);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active {
    background: var(--primary-green);
}

.faq-item.active .faq-question {
    color: var(--white);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: #7dd3b8;
}

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

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--primary-green);
    padding: 50px 0 30px;
    color: var(--white);
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

footer .logo {
    margin-bottom: 20px;
    display: inline-block;
    font-size: 2rem;
}

/* CTA Section */
.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--border-gray);
}

.cta-benefits li:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-benefits li {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-header h2 {
        font-size: 1.8rem;
    }

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

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

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

@media (max-width: 768px) {
    .header-content {
        gap: 10px;
    }

    .logo-img {
        height: 32px;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .trust-badges {
        gap: 20px;
    }

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

    .problem-section {
        padding: 60px 0;
    }

    .problem-intro {
        padding: 25px 20px;
        margin-bottom: 35px;
    }

    .intro-question {
        font-size: 1.15rem;
    }

    .intro-action {
        font-size: 1rem;
    }

    .problem-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .problem-detail-box {
        padding: 25px 20px;
    }

    .problem-detail-box p {
        font-size: 1rem;
    }

    .problem-benefits {
        gap: 12px;
    }

    .benefit-highlight {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .problem-cta-section {
        padding: 35px 25px;
    }

    .cta-text {
        font-size: 1.1rem;
    }

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

    .credential-card .number {
        font-size: 2rem;
    }

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

    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 8px;
    }

    .logo-img {
        height: 28px;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 15px;
    }

    .trust-number {
        font-size: 1.2rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }

    .form-container h2 {
        font-size: 1.3rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 14px;
    }

    .problem-header h2 {
        font-size: 1.3rem;
    }

    .problem-intro {
        padding: 20px 15px;
        border-left-width: 4px;
    }

    .intro-question {
        font-size: 1.05rem;
    }

    .intro-action {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .problem-card {
        padding: 25px 20px;
    }

    .problem-card h3 {
        font-size: 1.1rem;
    }

    .problem-card p {
        font-size: 0.9rem;
    }

    .problem-detail-box {
        padding: 20px 15px;
    }

    .problem-detail-box p {
        font-size: 0.95rem;
    }

    .benefit-highlight {
        padding: 8px 14px;
    }

    .benefit-highlight span {
        font-size: 0.8rem;
    }

    .problem-cta-section {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .cta-text {
        font-size: 1rem;
    }

    .primary-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* Thank You Page */
.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
    padding: 40px 20px;
}

.thankyou-container {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thankyou-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.thankyou-container h1 {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.thankyou-container p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thankyou-container .highlight {
    color: var(--secondary-green);
    font-weight: 600;
}

.thankyou-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-green);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.thankyou-cta:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.thankyou-logo {
    margin-bottom: 30px;
}

.thankyou-logo img {
    height: 50px;
    width: auto;
}
