/* ============================================
   VYAPARI WEBSITE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container-main {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 30px;
    width: auto;
    max-width: 145px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FF6B35;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 4rem 2rem;
    background: linear-gradient(to right bottom, rgb(232, 244, 248), white);
}

.hero .container-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'DM Serif Text', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #042D46;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    background: #FF6B35;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

.cta-button:hover {
    background: #E55A24;
    transform: translateY(-4px);
    animation: jump 0.6s ease infinite;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.secondary-button {
    background: white;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.secondary-button:hover {
    background: #f8f9fa;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-splash-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* New phone mockup styles */
.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.max-w-xs {
    max-width: 20rem;
}

.bg-white {
    background-color: white;
}

.w-48 {
    width: 12rem;
}

.w-32 {
    width: 8rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

.aspect-\[9\/16\] {
    aspect-ratio: 9 / 16;
}

.top-3 {
    top: 0.75rem;
}

.right-3 {
    right: 0.75rem;
}

.bottom-6 {
    bottom: 1.5rem;
}

.left-3 {
    left: 0.75rem;
}

.phone-mockup {
    width: 280px;
    height: 420px;
    background: white;
    border: 10px solid #042D46;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #042D46;
    border-radius: 0 0 25px 25px;
}

.phone-mockup-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #042D46 0%, #003D5C 100%);
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.8rem;
    border-radius: 20px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 5rem 2rem;
    background: white;
}

.how-it-works .container-main {
    text-align: center;
}

.how-it-works h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #042D46;
    letter-spacing: -0.5px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FFE5D4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FF6B35;
    font-weight: 400;
    margin: 0 auto 1.5rem;
    font-family: 'DM Serif Text', serif;
}

.step h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #042D46;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.info-banner {
    background: #E8F4FF;
    padding: 1.2rem;
    border-radius: 0.75rem;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: black;
    width: fit-content;
}

.info-banner-container {
    display: flex;
    justify-content: center;
}

/* ============================================
   TOOLS SECTION
   ============================================ */

.tools {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.tools h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #042D46;
    letter-spacing: -0.5px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.tool-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tool-icon {
    width: 50px;
    height: 50px;
    background: #FFE5D4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #FF6B35;
}

.tool-icon i {
    font-size: 1.8rem;
}

/* Alternating colors for tool icons */
.tool-card:nth-child(1) .tool-icon {
    color: #042D46;
    background: #D4E8F7;

}

.tool-card:nth-child(2) .tool-icon {
    background: #FFE5D4;

    color: #FF6B35;
}

.tool-card:nth-child(3) .tool-icon {
    color: #042D46;
    background: #D4E8F7;
}

.tool-card h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #042D46;
}

.tool-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   BUILT FOR SECTION
   ============================================ */

.built-for {
    padding: 5rem 2rem;
    background: white;
}

.built-for h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #042D46;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: background 0.3s ease;
}

.feature:hover {
    background: #f8f9fa;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FFE5D4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.feature-icon i {
    font-size: 2rem;
}

/* Alternating colors for feature icons */
.feature:nth-child(1) .feature-icon,
.feature:nth-child(3) .feature-icon,
.feature:nth-child(5) .feature-icon,
.feature:nth-child(7) .feature-icon,
.feature:nth-child(9) .feature-icon,
.feature:nth-child(11) .feature-icon {
    background: #D4E8F7;
    color: #042D46;
}

.feature:nth-child(2) .feature-icon,
.feature:nth-child(4) .feature-icon,
.feature:nth-child(6) .feature-icon,
.feature:nth-child(8) .feature-icon,
.feature:nth-child(10) .feature-icon,
.feature:nth-child(12) .feature-icon {
    background: #FFE5D4;
    color: #FF6B35;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================
   WHY LOVE US SECTION
   ============================================ */

.why-love-us {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #042D46 0%, #003D5C 100%);
    color: white;
}

.why-love-us h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    letter-spacing: -0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-content h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: white;
}

.benefit-content p {
    font-size: 0.9rem;
    color: #E8F0F7;
    line-height: 1.6;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    padding: 5rem 2rem;
    background: white;
}

.reviews h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #042D46;
    letter-spacing: -0.5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    padding: 1.75rem 1.5rem;
    border-radius: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}


.stars {
    color: #FF6B35;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 3px;
}

.stars i {
    color: #FF6B35;
    margin-right: 0.35rem;
}

.review-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.75rem;
    line-height: 1.75;
    flex-grow: 1;
}

.review-author {
    font-size: 1rem;
    color: #555;
    text-align: end;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #e8e8e8;
}

.reviewer-info {
    flex: 1;
}

.reviewer {
    font-size: 1rem;
    font-weight: 400;
    color: #042D46;
    margin: 0 0 0.35rem 0;
    display: block;
}

.reviewer-category {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    display: block;
}

.reviewer-icon {
    width: 40px;
    height: 40px;
    background: #FFE5D4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Alternating colors for reviewer icons */
.review-card:nth-child(1) .reviewer-icon {
    background: #D4E8F7;
    color: #042D46;
}

.review-card:nth-child(2) .reviewer-icon {
    background: #FFE5D4;
    color: #FF6B35;
}

.review-card:nth-child(3) .reviewer-icon {
    background: #D4E8F7;
    color: #042D46;
}

.review-card:nth-child(4) .reviewer-icon {
    background: #FFE5D4;
    color: #FF6B35;
}

.reviewer-location {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.review-text {
    line-height: 1.5;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.community h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #042D46;
    letter-spacing: -0.5px;
}

.community p {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION & FORM
   ============================================ */

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #042D46 0%, #003D5C 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #E8F0F7;
}

.form-container {
    background: white;
    padding: 3rem 3.5rem;
    border-radius: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #5a6270;
    text-align: left;
}

.form-group input,
.form-group textarea {
    padding: 0.95rem 1rem;
    border: 1px solid #e0e5eb;
    border-radius: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    font-family: 'DM Sans', sans-serif;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.form-actions .cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.form-actions .secondary-button {
    background-color: white;
    color: #5a6270;
    border: 2px solid #5a6270;
}

.form-notice {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #0f1419;
    color: #a0a8b5;
    padding: 3.5rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1350px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0a8b5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #a0a8b5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B35;
}

.footer-logo {
    height: 30px;
    width: auto;
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a2332;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero .container-main {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3rem 2rem;
    }

    .steps,
    .tools-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero .container-main {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-image {
        padding: 2rem 1rem;
    }

    .hero-splash-image {
        max-height: 400px;
    }

    .steps,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.85rem 0.75rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-actions {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .form-actions .cta-button {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .how-it-works h2,
    .tools h2,
    .built-for h2,
    .why-love-us h2,
    .reviews h2,
    .community h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .phone-mockup {
        width: 220px;
        height: 350px;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        margin-bottom: 0.75rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container-main {
        padding: 0 1rem;
    }

    .hero {
        padding: 1.5rem 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.85rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        padding: 1rem;
    }

    .hero-splash-image {
        max-height: 350px;
    }

    .hero-content a button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
        border-radius: 0.8rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem 0.6rem;
        font-size: 0.85rem;
        border-radius: 0.4rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .form-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .form-actions .cta-button {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    [data-netlify-recaptcha="true"] {
        transform: scale(0.9);
        transform-origin: 0 0;
        margin: -15px 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .step p {
        font-size: 0.85rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tool-card h3 {
        font-size: 1.1rem;
    }

    .tool-card p {
        font-size: 0.85rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-content h3 {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.85rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.25rem 1rem;
    }

    .review-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .reviewer {
        font-size: 0.95rem;
    }

    .reviewer-category {
        font-size: 0.8rem;
    }

    .footer-flex {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-right .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-right .footer-links a {
        font-size: 0.9rem;
    }

    .community h2 {
        font-size: 1.5rem;
    }

    .community p {
        font-size: 1rem;
    }
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */

.back-link {
    color: #042d46;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #E55A24;
}

.policy-section {
    padding: 4rem 2rem;
    background: oklch(.985 .002 247.839);
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #042D46;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.last-updated {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.policy-text {
    line-height: 1.8;
    color: #555;
}

.policy-text h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #042D46;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.policy-text h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #042D46;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-text p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.policy-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.policy-text li {
    margin-bottom: 0.75rem;
    font-size:1rem;
    line-height: 1.7;
}

.policy-text strong {
    color: #042D46;
    font-weight: 600;
}

.policy-text a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-text a:hover {
    color: #E55A24;
    text-decoration: underline;
}

.disclaimer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
}

/* Policy Footer */
.policy-footer {
    background: #0f1419;
    color: #a0a8b5;
    padding: 3rem 2rem;
    margin-top: auto;
}

.policy-footer .container-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: #a0a8b5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

.policy-footer .footer-bottom {
    border-top: 1px solid #1a2332;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-text h2 {
        font-size: 1.3rem;
    }

    .policy-text h3 {
        font-size: 1rem;
    }

    .back-link {
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 1rem;
    }

    .policy-content h1 {
        font-size: 1.5rem;
    }

    .policy-text h2 {
        font-size: 1.2rem;
    }

    .policy-text h3 {
        font-size: 0.95rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .back-link {
        font-size: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .phone-mockup {
        width: 200px;
        height: 320px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .container-main {
        padding: 0 1rem;
    }
}

/* --- New Footer Layout (Left logo, Right links) --- */
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto 2rem;
    text-align: left;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #a0a8b5;
    max-width: 420px;
}

.footer-left .footer-logo {
    height: 33px;
    width: auto;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #a0a8b5;
}

.footer-right .footer-links {
    display: flex;
    gap: 2rem;
}

.footer-right .footer-links a {
    color: #a0a8b5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-right .footer-links a:hover {
    color: #FF6B35;
}

/* --- Responsive Fix --- */
@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-right .footer-links {
        gap: 1rem;
    }
}

.text-gray-700 {
    color: oklch(.373 .034 259.733);
    font-weight: 400;
}

.text-gray-900 {
    color: oklch(.261 .047 261.411);
    font-weight: 900;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #042D46;
}

.modal-header,
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: 'DM Serif Text', serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.modal-body p {
    margin: 1rem 0;
    color: #555;
    line-height: 1.6;
}

.close {
    color: #999;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.close:hover {
    color: #FF6B35;
}

.modal-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.modal-button:hover {
    background: #E55A24;
    transform: translateY(-2px);
}