/* =========================
   GLOBAL SETTINGS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

:root {
    --primary-font: proxima-nova-black, sans-serif;
}

/* =========================
   HERO / FRONT SECTION
========================= */

.front-text {
    /* margin-top: 20px; */
    min-height: 100vh;
    width: 100vw;
    background-color: white;
    /* text-align: center; */
    background-image: linear-gradient(rgba(240, 236, 236, 0.5),
            rgba(208, 204, 204, 0.5)),
        url(images/hero-bg.png);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

/* Main heading */
.front-text h1 {
    font-family: proxima-nova-black, sans-serif;
    /* margin-top: 100px; */

    font-size: 70px;
}

/* For Animated Solution Background */
.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 0%;
    height: 80%;

    background: linear-gradient(#8e8ad7);

    /* border-radius: 12px; */
    z-index: -1;

    animation: highlightSweep 4s ease-in-out 1;
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
}

@keyframes highlightSweep {
    0% {
        width: 0%;
        left: 0;


    }

    40% {
        width: 100%;
        left: 0;

    }

    60% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0%;
        left: 100%;

    }
}

/* Hero description text */
.front-text p {
    font-family: proxima-nova-black, sans-serif;
    margin-top: 15px;
    font-size: 24px;
}

/* Hero CTA button */
.front-text button {
    display: block;
    background-color: black;
    color: white;
    font-size: 25px;
    padding: 15px 30px;
    margin: 60px auto;
    /* border: 2px solid #000; */
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Button hover animation */
/* .front-text button:hover {
    transform: scale(1.5) translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
} */
.front-text button:hover {
    transform: scale(1.075) translateY(-3px);
    box-shadow: 0 15px 30px rgb(170, 170, 170);
    border-radius: 25px;
}



/* =========================
   NAVBAR
========================= */

nav {
    /* margin: 10px; */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    /* background-color: #001dfc; */
}

/* Main navbar container */
.div-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    font-family: proxima-nova-black, sans-serif;
}

/* Logo styling */
.nav-logo {
    width: 67.5px;
    height: 60px;
    display: flex;
    margin-left: 40px;
}

/* Navigation links container */
.nav-links ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

/* All anchor links */
a {
    color: black;
    text-decoration: none;
    font-size: 25px;
    margin: 0 15px;
}

/* Login & Sign-up buttons */
.sign-btn,
.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background-color: #f3f3f3;
    border: 2px solid #000;
    padding: 8px 20px;
    border-radius: 40px;
    font-family: proxima-nova-black, sans-serif;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Navbar button group */
nav .nav-buttons {
    display: flex;
    gap: 15px;
}

/* Navbar button hover effect */
nav .nav-buttons a:hover {
    cursor: pointer;
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Navigation menu items */
nav .nav-links ul li {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Animated underline */
nav .nav-links ul li::after {
    content: "";
    position: absolute;
    inset: auto 0 -5px;
    height: 2px;
    background: #000;
    transform: scaleX(0) scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Menu item hover zoom */
nav .nav-links ul li:hover {
    transform: scale(1.1);
}

/* Underline appears on hover */
nav .nav-links ul li:hover::after {
    transform: scaleX(1) scaleY(1.5);
}


/* =========================
   SECOND SECTION
========================= */

.second {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
    padding: 80px 10%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Left text content area */
.second-page-text {
    flex: 1;
    max-width: 600px;
    font-family: proxima-nova-black, sans-serif;
}

/* Section heading */
.second-page-text h2 {
    font-size: 48px;
    font-weight: 520;
    line-height: 1.1;
    margin-top: 120px;
    /* edited: to match image top and h2 top */
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Animated underline for heading */
.second-page-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0) scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.second-page-text h2:hover::after {
    transform: scaleX(1) scaleY(1.5);
}

/* Description paragraph */
.desc {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* =========================
   FEATURE POINTS LIST
========================= */

.points ul {
    list-style: none;
}

.points li {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Custom checkmark icon */
.points li::before {
    content: "✓";
    width: 30px;
    height: 30px;
    background: #070401;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}


/* =========================
   SECOND SECTION BUTTON
========================= */

.second {
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
}

.second-page-text button {
    margin-top: 20px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background: #000000;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.second-page-text button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgb(170, 170, 170);
}


/* =========================
   RIGHT SIDE IMAGE
========================= */

.social-img {
    flex: 1;
    max-width: 650px;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    margin-top: 20px;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================
   BACKGROUND WAVE EFFECT
========================= */

.wave-bg {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

/* Keep content above wave background */
.second-page-text,
.social-img {
    position: relative;
    z-index: 1;
}

.third {
    height: 100vh;
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    padding-top: 0;
    margin-top: 100px;
    padding: 80px 10%;
    box-sizing: border-box;
    font-family: proxima-nova-black, sans-serif;
}

.third h2 {
    font-size: 48px;
    font-weight: 520;
    line-height: 1.1;
    /* margin-bottom: 20px; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.third h2::after {
    content: "";
    position: absolute;
    left: 27%;
    bottom: -5px;
    width: 46%;
    height: 2px;
    background: #000;
    transform: scaleX(0) scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.third h2:hover::after {
    transform: scaleX(1) scaleY(1.5);
}

.first-row {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    margin-top: 50px;
}

.feature {
    display: flex;
    align-items: flex-start;
    flex: 1;
    gap: 25px;
}

.feature img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

.content h3 {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 15px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.second-row {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    margin-top: 50px;
}

.third-row {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    margin-top: 50px;
}

/* =========================
   How to Video SECTION BUTTON
========================= */

.how-video {
    padding: 120px 8%;
    background: #f8fafc;
}

.how-video-section {
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.how-video-section iframe {
    width: 750px;
    height: 420px;

    border: none;
    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .12);

    transition: .4s ease;
}

.how-video-section iframe:hover {
    transform: translateY(-10px);
}

.text-video-section {
    max-width: 500px;
    font-family: var(--primary-font);
}

.text-video-section h3 {
    font-size: 3rem;
    color: var(--heading);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-video-section p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 35px;
}

.text-video-section button {
    padding: 16px 34px;

    border: none;
    border-radius: 14px;

    background: black;

    color: white;
    font-size: 17px;
    font-weight: 600;

    cursor: pointer;
    transition: .3s;
}

.text-video-section button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(79, 70, 229, .35);
}

/* =========================
   FOURTH SECTION BUTTON
========================= */
.fourth {
    padding: 80px 0;
    font-family: var(--primary-font);
    /* make default font for this section */
}

.fourth h2 {
    text-align: center;
    font-family: var(--primary-font);
    font-size: 3rem;
    margin-bottom: 15px;
}

.fourth p {
    text-align: center;
    font-family: var(--primary-font);
}

.fourth ul {
    list-style: none;
    padding: 0;
}

/* Pricing Container */

.pricing {
    margin: 60px auto;
    width: 90vw;
    min-height: 75vh;
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    border-radius: 30px;
    padding: 40px;
}

/* Cards Wrapper */

.plan-card {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

/* Individual Card */

.cards {
    background: white;
    width: 20vw;
    min-width: 320px;
    min-height: 620px;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.cards h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.cards p {
    margin-bottom: 10px;
}

/* Highlight Middle Plan */

.second-plan {
    transform: scale(1.05);
    border: 3px solid #000000;
    position: relative;
}

.second-plan::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Prices */

.regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin: 10px 0 20px;
}

/* Button */

.cards button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #030303;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 25px;
    transition: .3s;
}

.cards button:hover {
    background: #333143;
}

/* Benefits */

.cards ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cards li {
    font-size: 15px;
    line-height: 1.5;
}

/* Tick Icon */

.cards li:not(.cross)::before {
    content: "✓ ";
    color: green;
    font-weight: bold;
}

/* Cross Icon */

.cross::before {
    content: "✕ ";
    color: red;
    font-weight: bold;
}

.cross {
    opacity: .6;
    text-decoration: line-through;
}

/* =========================
   FIFTH SECTION BUTTON
========================= */


.fifth {
    padding: 100px 8%;
    background: #f8fafc;
}

.fifth-section {
    font-family: var(--primary-font);
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.fifth-section h3 {
    width: 100%;
    text-align: center;

    font-size: 3rem;
    color: var(--heading);

    margin-bottom: 40px;
    position: relative;
}

.fifth-section h3::after {
    content: "";
    position: absolute;
    inset: auto 0 -5px;
    height: 2px;
    background: #000;
    transform: scaleX(0) scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;

}

.fifth-section h3::after {
    transform: scaleX(1) scaleY(1.5);
}

.fifth-section h3::after {
    content: "";
    width: 100px;
    height: 4px;

    background: linear-gradient(90deg,
            var(--primary),
            var(--accent));

    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);

    border-radius: 50px;
}

.fifth-section img {
    width: 360px;
    height: auto;

    object-fit: cover;

    border-radius: 20px;

    filter: grayscale(100%);
    opacity: .7;

    transition: all .3s ease;

    border: 1px solid var(--border);

    padding: 15px;

    background: white;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, .05);
}

.fifth-section img:hover {
    filter: grayscale(0%);
    opacity: 1;

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(15, 23, 42, .12);
}


/* Newletter */

.newsletter {
    font-family: var(--primary-font);
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 50px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.newsletter-container h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter-points li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.newsletter-form {
    margin-top: 35px;
    background: #fff;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 10px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form .icon {
    font-size: 1.3rem;
    padding-left: 15px;
    color: #64748b;
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px;
    font-size: 1rem;
    background: transparent;
}

.newsletter-form button {
    border: none;
    outline: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.last-points {
    margin-top: 20px;
}

.last-points p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive  */
@media (max-width: 768px) {
    .newsletter-container {
        padding: 35px 25px;
    }

    .newsletter-container h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-form .icon {
        display: none;
    }
}

.footer {
    font-family: var(--primary-font);
    background: #0f172a;
    color: #fff;
    padding: 80px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footem-items {
    display: grid;
    grid-template-columns: 2fr 1fr 1px 1.5fr;
    gap: 50px;
    align-items: start;
}

.about-proaffiliaters p {
    color: #94a3b8;
    line-height: 1.9;
    font-size: 16px;
    max-width: 500px;
}

/* Features */

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin-bottom: 18px;
}

.features a {
    text-decoration: none;
    color: #cbd5e1;
    transition: all 0.3s ease;
    font-size: 15px;
}

.features a:hover {
    color: #3b82f6;
    padding-left: 8px;
}

/* Divider */

.line-btw {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Section */

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.telegram,
.gmail-footer,
.address-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.telegram img,
.gmail-footer img,
.address-footer img {
    width: 45px;
    height: 45px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.telegram h4,
.gmail-footer h4,
.address-footer h4 {
    font-size: 15px;
    margin: 0;
    color: white;
    font-weight: 600;
}

.telegram p,
.gmail-footer p,
.address-footer p {
    margin: 2px 0 0;
    color: #94a3b8;
    font-size: 13px;
}

/* Footer Bottom */

.footer::after {
    content: "© 2026 ProAffiliaters. All Rights Reserved.";
    display: block;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 992px) {
    .footem-items {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .line-btw {
        display: none;
    }

    .about-proaffiliaters p {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 60px 25px;
    }

    .telegram,
    .gmail-footer,
    .address-footer {
        flex-direction: row;
        align-items: center;
    }

    .telegram h1,
    .gmail-footer h1,
    .address-footer h1 {
        font-size: 14px;
    }
}

.separater {
    width: 100%;
    height: 2px;
    background-color: black;
}



/* =========================
   CONTACT HERO
========================= */

.Contact-info {
    height: 80vh;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    position: sticky;
    top: 10px;
    overflow: hidden;

    font-family: var(--primary-font);
}

.Contact-info::before {
    content: "";
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;

    position: absolute;
    top: -100px;
    right: -100px;
}

.Contact-info::after {
    content: "";
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;

    position: absolute;
    bottom: -80px;
    left: -80px;
}

.Contact-info h1 {
    font-size: 72px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: opacity 0.1s linear;
}


/* =========================
   CONTACT FORM SECTION
========================= */

.Contact-Form {
    padding: 0 10% 80px;
    background: #f8fafc;
    font-family: var(--primary-font);
}

.contact-container {
    max-width: 900px;
    margin: auto;

    background: white;
    padding: 50px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    margin-top: -120px;
    position: relative;
    /* transition: top 0.15s ease-out;*/
    z-index: 10;
}

/* =========================
   CONTACT CARDS
========================= */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-bottom: 50px;
}

.card {
    background: #f8fafc;
    padding: 30px;

    border-radius: 16px;
    text-align: center;

    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 10px;
}

/* =========================
   FORM HEADER
========================= */

.contact-left {
    text-align: center;
    margin-bottom: 40px;
}

.contact-left h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* =========================
   FORM
========================= */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 16px;

    border: 2px solid #e5e7eb;
    border-radius: 12px;

    font-size: 16px;
    outline: none;

    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .15);
}

/* =========================
   BUTTON
========================= */

.submit-btn {
    background: #2563eb;
    color: white;

    border: none;
    border-radius: 12px;

    padding: 16px;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, .3);
}



/* ==========================
   PRIVACY POLICY PAGE
========================== */

.privacy-hero {
    font-family: var(--primary-font);
    min-height: 45vh;

    background: #1d68e1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 60px 20px;

    color: white;
}

.privacy-hero h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.privacy-hero p {
    font-size: 20px;
    max-width: 700px;
    opacity: .9;
}

.privacy-content {
    font-family: var(--primary-font);
    background: var(--bg-light);
    padding: 80px 8%;
}

.privacy-card {
    max-width: 1000px;
    margin: auto;

    background: white;

    border-radius: 24px;

    padding: 60px;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .08);
}

.last-updated {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.privacy-card h2 {
    color: var(--heading);
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 28px;
}

.privacy-card p {
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
}

.privacy-contact {
    margin-top: 25px;

    padding: 25px;

    background: #f8fafc;

    border-radius: 16px;

    border: 1px solid var(--border);
}

.privacy-contact p {
    margin: 10px 0;
}

/* Mobile */

@media (max-width:768px) {

    .privacy-hero h1 {
        font-size: 48px;
    }

    .privacy-card {
        padding: 30px;
    }

    .privacy-card h2 {
        font-size: 22px;
    }
}


/* ==========================
   LOGIN / SIGNUP
========================== */

.auth-page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;

    background:
        linear-gradient(
        135deg,
        #4F46E5,
        #8B5CF6
    );
}

.auth-card {
    width: 100%;
    max-width: 500px;

    background: white;

    padding: 50px;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(15,23,42,.15);
}

.auth-logo {
    text-align: center;
    margin-bottom: 25px;
}

.auth-logo img {
    width: 80px;
}

.auth-card h1 {
    text-align: center;
    color: #0F172A;
    margin-bottom: 10px;
}

.auth-card p {
    text-align: center;
    color: #64748B;
    margin-bottom: 35px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #0F172A;
}

.input-group input {
    padding: 16px;

    border: 2px solid #E2E8F0;

    border-radius: 12px;

    font-size: 16px;

    outline: none;

    transition: .3s;
}

.input-group input:focus {
    border-color: #4F46E5;

    box-shadow:
        0 0 0 4px rgba(79,70,229,.12);
}

.auth-btn {
    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
        135deg,
        #4F46E5,
        #8B5CF6
    );

    color: white;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.auth-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(79,70,229,.25);
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: #4F46E5;
    text-decoration: none;
}

.auth-footer {
    margin-top: 30px;

    text-align: center;

    color: #64748B;
}

.auth-footer a {
    color: #4F46E5;
    font-weight: 600;
    text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM OVERRIDES (TABLET & MOBILE)
   ========================================================================= */

/* Clean width overrides to prevent horizontal scrollbar on all viewports */
.front-text,
.second {
    width: 100%;
    max-width: 100%;
}

/* Fluid typography & elements using CSS clamp / fallback */
.front-text h1 {
    font-size: clamp(2rem, 6.5vw, 4.4rem);
}
.front-text p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    text-align: center;
    padding: 0 20px;
}
.second-page-text h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
}
.third h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
}
.text-video-section h3 {
    font-size: clamp(2rem, 5vw, 3rem);
}
.fourth h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}
.fifth-section h3 {
    font-size: clamp(2rem, 5vw, 3rem);
}
.Contact-info h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
}
.privacy-hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
}

/* Tablet Layout Modifications (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Navbar Adjustments */
    .div-container {
        padding: 0 20px;
    }
    .nav-logo {
        margin-left: 20px;
    }
    a {
        font-size: 20px;
        margin: 0 10px;
    }
    .sign-btn, .login-btn {
        font-size: 20px;
        padding: 6px 15px;
    }
    
    /* Social Automation Section */
    .second {
        padding: 60px 5%;
        gap: 40px;
        height: auto;
        min-height: auto;
    }
    .second-page-text h2 {
        margin-top: 40px;
    }
    .social-img {
        max-width: 450px;
    }

    /* Third Section (Features Grid) */
    .third {
        height: auto;
        min-height: auto;
        padding: 60px 5%;
        margin-top: 40px;
    }
    .first-row, .second-row, .third-row {
        gap: 30px;
        margin-top: 30px;
    }
    .feature img {
        width: 70px;
        height: 70px;
    }
    .content h3 {
        font-size: 22px;
    }
    .content p {
        font-size: 16px;
    }

    /* Video Section */
    .how-video {
        padding: 60px 5%;
    }
    .how-video-section {
        gap: 40px;
    }
    .how-video-section iframe {
        width: 100%;
        max-width: 550px;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    /* Pricing Section */
    .pricing {
        padding: 30px;
    }
    .plan-card {
        gap: 30px;
    }
    .cards {
        width: 100%;
        max-width: 320px;
        min-width: 280px;
        min-height: auto;
    }
    .second-plan {
        transform: none; /* Disable scaling on wrapping to prevent overlap */
    }
    .second-plan::before {
        top: -15px;
    }

    /* Brands Section */
    .fifth {
        padding: 60px 5%;
    }
    .fifth-section {
        gap: 50px;
    }
    .fifth-section img {
        width: 280px;
    }

    /* Contact Section */
    .Contact-info {
        height: 50vh;
    }
    .contact-container {
        margin-top: -80px;
        padding: 30px;
    }
    .contact-cards {
        gap: 15px;
    }
}

/* Mobile Layout Modifications (max-width: 768px) */
@media (max-width: 768px) {
    /* Navbar stack to prevent overflow (since HTML has no mobile toggle menu) */
    nav {
        margin: 10px 5px;
    }
    .div-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
        align-items: center;
    }
    .nav-logo {
        margin-left: 0;
    }
    .nav-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }
    .nav-links ul li {
        margin: 0;
    }
    a {
        font-size: 18px;
        margin: 0;
    }
    .nav-buttons {
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }
    .sign-btn, .login-btn {
        flex: 1;
        max-width: 140px;
        font-size: 18px;
    }

    /* Hero / Front Section */
    .front-text {
        padding: 80px 15px;
    }
    .front-text button {
        margin: 30px auto;
    }

    /* Social Automation Section */
    .second {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .second-page-text {
        max-width: 100%;
    }
    .second-page-text h2::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
    }
    .second-page-text h2:hover::after {
        transform: translateX(-50%) scaleX(1) scaleY(1.5);
    }
    .points li {
        justify-content: flex-start;
        text-align: left;
    }
    .social-img {
        max-width: 100%;
        margin-top: 30px;
    }

    /* Third Section (Features Grid) */
    .third h2::after {
        left: 10%;
        width: 80%;
    }
    .first-row, .second-row, .third-row {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    /* Video Section */
    .how-video-section {
        flex-direction: column-reverse;
        align-items: center;
    }
    .how-video-section iframe {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .text-video-section {
        max-width: 100%;
        text-align: center;
    }

    /* Pricing Section */
    .pricing {
        width: 95vw;
        padding: 20px;
    }
    .cards {
        max-width: 100%;
    }

    /* Contact Section */
    .Contact-info {
        height: 40vh;
    }
    .contact-container {
        margin-top: -60px;
        padding: 20px;
    }
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .card {
        padding: 20px;
    }
    .contact-left h2 {
        font-size: 28px;
    }

    /* Privacy Policy */
    .privacy-hero {
        padding: 40px 15px;
        min-height: auto;
    }
    .privacy-content {
        padding: 40px 4%;
    }
    .privacy-card {
        padding: 25px 15px;
    }
    .privacy-card h2 {
        font-size: 20px;
        margin-top: 25px;
    }

    /* Auth pages */
    .auth-page {
        padding: 15px;
    }
    .auth-card {
        padding: 30px 15px;
        border-radius: 20px;
    }
    .auth-card h1 {
        font-size: 28px;
    }
    .auth-card p {
        margin-bottom: 25px;
    }
}

/* Extra Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .nav-links ul {
        gap: 10px;
    }
    a {
        font-size: 16px;
    }
    .sign-btn, .login-btn {
        font-size: 16px;
        padding: 5px 10px;
    }
    .front-text {
        padding: 60px 10px;
    }
    .front-text button {
        font-size: 20px;
        padding: 12px 24px;
    }
}