:root {
    --bg-white: #ffffff;
    --bg-light: #fdf2ff;
    --bg-card: #ffffff;
    --primary: #7c3aed;
    /* Vibrant Purple */
    --primary-gradient: linear-gradient(95deg, #7c3aed 0%, #db2777 100%);
    --hap-gradient-color: linear-gradient(90deg, rgb(89, 86, 240) 0%, rgb(255, 80, 184) 100%);
    --primary-light: #f3e8ff;
    --primary-dark: #6d28d9;
    --secondary: #db2777;
    /* Deep Pink */
    --accent: #9333ea;
    --text-main: #1e1b4b;
    --text-muted: #4b5563;
    --border-color: #f3e8ff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(124, 58, 237, 0.1), 0 2px 4px -1px rgba(124, 58, 237, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(124, 58, 237, 0.1), 0 4px 6px -2px rgba(124, 58, 237, 0.05);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .container {
        width: 82%;
    }
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
}

span {
    color: #330aa3;
    background-image: linear-gradient(45deg, #330aa3 17%, #8a02b8 70%, #e800d5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: 0.6s;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 140%;
}

.btn-secondary {
    background: #fff;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Header */






.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

nav ul a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

nav ul a:not(.btn-secondary):hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0.8rem 0;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Services */
.services {
    padding: 3rem 0;
    background: var(--bg-white);
}

.section-title {
    margin-bottom: 3rem;
    max-width: 800px;
}

.services .section-title {
    text-align: center;
}

.services .section-title h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.services .section-title p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-v2 {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-v2:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: var(--primary);
}

.service-card-v2.highlighted {
    background: #fdf2ff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.05);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: #f5f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-card-v2.highlighted .icon-box {
    background: #ffffff;
}

.icon-box img {
    width: 32px;
    height: 32px;
    transition: var(--transition-fast);
}

.service-card-v2:hover .icon-box img {
    transform: scale(1.2) rotate(5deg);
}

.service-card-v2 h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.service-card-v2 p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.arrow-link {
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.service-card-v2:hover .arrow-link {
    transform: translateX(5px);
}

/* About Tabs Section */
.about-tabs-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.tabs-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.tabs-menu {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    border-left: 2px solid rgba(124, 58, 237, 0.2);
}

.tab-btn {
    padding: 2rem 2.5rem;
    cursor: pointer;
    border-left: 3px solid transparent;
    margin-left: -2px;
    transition: var(--transition);
    opacity: 0.6;
}

.tab-btn:hover {
    opacity: 0.8;
}

.tab-btn.active {
    opacity: 1;
    border-left-color: var(--primary);
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
}

.tab-btn h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.tab-btn p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.tabs-content {
    flex: 1;
    background: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane h2 {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.tab-pane p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tab-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
    .tabs-container {
        flex-direction: column;
        gap: 2rem;
    }

    .tabs-menu {
        flex: auto;
        width: 100%;
        flex-direction: column;
        /* Changed to column to show all titles */
        border-left: none;
        border-bottom: none;
        padding-bottom: 0;
        display: flex;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
        border-left: 3px solid transparent;
        border-bottom: 1px solid rgba(124, 58, 237, 0.1);
        margin-left: 0;
        margin-bottom: 0;
        padding: 1rem 1.5rem;
        text-align: left;
        /* Better for vertical list */
        white-space: normal;
        background: #fdf2ff;
        border-radius: 8px;
    }

    .tab-btn.active {
        border-left-color: var(--primary);
        border-bottom-color: transparent;
        background: linear-gradient(90deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
    }
}

@media (max-width: 768px) {
    .tabs-content {
        padding: 0;
    }

    .tab-btn h3 {
        font-size: 1rem;
        margin-bottom: 0;
        text-align: left;
    }

    .tab-btn p {
        display: none;
    }

    .tab-btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }

    .tab-pane h2 {
        font-size: 1.6rem;
    }

    .tab-image {
        height: 220px;
        margin-top: 1.5rem;
    }
}


/* CTA Banner */
.cta-banner {
    padding: 4rem 0;
    background: var(--bg-white);
}

.cta-banner-card {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.cta-image {
    flex: 0 0 150px;
    z-index: 1;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-cta {
    background: #fff;
    color: #005a8a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Process V2 */
.process-v2 {
    padding: 8rem 0;
    background: #2e1065;
    color: #fff;
    border-radius: 40px;
    margin: 2rem;
}

.section-title.light h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.8rem;
}

.section-title.light p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.text-center {
    text-align: center !important;
}

.section-title.text-center {
    margin-left: auto;
    margin-right: auto;
}

.process-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.process-card-v2 {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card-v2:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.step-counter {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.15;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    width: 40px;
}

.process-card-v2 h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-card-v2 p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Process */
@media (max-width: 1200px) {
    .process-card-v2 {
        flex: 0 0 calc(33.33% - 1.5rem);
        min-width: 250px;
    }
}

@media (max-width: 992px) {
    .process-card-v2 {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 576px) {
    .process-v2 {
        margin: 1rem;
        padding: 4rem 0;
    }

    .process-card-v2 {
        flex: 0 0 100%;
        min-width: 0;
    }

    .section-title.light h2 {
        font-size: 2rem;
    }
}

/* Resources & Case Studies Sections */
.case-studies,
.search-trends {
    padding: 5rem 0;
    background: var(--bg-white);
}

.case-studies .section-title h2,
.search-trends .section-title h2 {
    color: #0f172a;
    font-size: 2.2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.resource-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #bae6fd;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.card-image {
    padding: 1.5rem 1.5rem 0 1.5rem;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.tag-green {
    background: #f0fdf4;
    color: #16a34a;
}

.tag-light-green {
    background: #f7fee7;
    color: #65a30d;
}

.resource-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #0f172a;
    flex-grow: 1;
}

.btn-card-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border: 1px solid #334155;
    color: #334155;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    transition: var(--transition-fast);
}

.btn-card-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-orange {
    display: inline-block;
    background: #f97316;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-orange:hover {
    background: #ea580c;
    transform: scale(1.05);
}

.mt-4 {
    margin-top: 2rem;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
}

.dot {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    border: 1px solid #3b82f6;
    display: inline-block;
}

.dot.active {
    background: #84cc16;
    border-color: #84cc16;
}

/* Responsive Resources Grid */
@media (max-width: 992px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact {
    padding: 5rem 0;
}

.contact-card {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--glass);
    max-width: 800px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1.5rem;
}

input,
textarea {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 12px;
    color: var(--text-main);
    width: 100%;
    outline: none;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Mobile Navigation Toggle Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {

    .hero .container,
    .about-grid,
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .section-title h2,
    .faq-header h2,
    .diamond-header h2 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem !important;
    }

    h2 {
        font-size: 1.52rem !important;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(124, 58, 237, 0.1);
        padding: 2rem;
        z-index: 1000;
        transform: translateX(0);
    }

    nav ul.active {
        right: 0;
        transform: translateX(0);
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul a {
        font-size: 1.5rem;
        display: block;
        padding: 1rem 0;
    }

    .form-group {
        flex-direction: column;
    }

    .cta-banner-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
        max-width: 100%;
        padding: 0;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        text-align: center;
    }

    .contact-card {
        padding: 2.5rem 1.5rem;
    }

    .glass-card {
        padding: 2.5rem 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

/* --- Premium Reveal System --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    pointer-events: none;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* --- Lead Generation & About Section --- */
.lead-section {

    overflow: hidden;
}

.lead-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lead-main h2 {
    font-size: 1.8rem;
    color: var(--text-main);
    line-height: 1.3;
    text-align: left;
    margin-bottom: 1.5rem;
}

.lead-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.lead-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease-out;
}

.lead-list.active li {
    opacity: 1;
    transform: translateX(0);
}

.lead-list.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.lead-list.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.lead-list.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.lead-list.active li:nth-child(4) {
    transition-delay: 0.4s;
}

.lead-list.active li:nth-child(5) {
    transition-delay: 0.5s;
}

.lead-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.lead-content-with-image {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.lead-text-content {
    flex: 1;
}

.lead-text-content h2 {
    font-size: 1.6rem;
}

.lead-text-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.lead-circle-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    transition: transform 0.8s ease-out;
}

.lead-circle-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.lead-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lead-form-card {
    background: #f0f9ff;
    padding: 2.5rem;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.lead-form-card.active {
    opacity: 1;
    transform: translateY(0);
}

.lead-form-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.form-group-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lead-form-card input,
.lead-form-card select,
.lead-form-card textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.tnc-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tnc-checkbox input {
    width: auto;
    margin-top: 3px;
}

.btn-submit-lead {
    background: #db2777;
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit-lead:hover {
    background: #be185d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(219, 39, 119, 0.3);
}

.lead-cta-card {
    background: #7c3aed;
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: 0.2s;
    /* Stagger after the form */
}

.lead-cta-card.active {
    opacity: 1;
    transform: translateY(0);
}

.lead-cta-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.lead-cta-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: white;
}

.lead-cta-card .btn-card-outline {
    background: white;
    color: #7c3aed;
    border: none;
    display: inline-flex;
}

.lead-cta-card .btn-card-outline:hover {
    background: var(--bg-light);
    color: #5b21b6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .lead-container {
        grid-template-columns: 1fr;
    }

    .lead-content-with-image {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lead-main h2 {
        text-align: center;
    }
}

/* ============================================================
   DIAMOND FEATURES SECTION
   ============================================================ */
.diamond-features {
    padding: 2rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

/* Header */
.diamond-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}

.diamond-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.diamond-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Grid: single row, 4 equal columns */
.diamond-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

/* Card */
.diamond-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.3s ease;
}

/* Gradient top-border accent on hover */
.diamond-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.diamond-card:hover::before {
    transform: scaleX(1);
}

.diamond-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Subtle background shimmer on hover */
.diamond-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.diamond-card:hover::after {
    opacity: 1;
}

/* Icon */
.diamond-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease;
}

.diamond-card:hover .diamond-card__icon {
    transform: rotate(10deg) scale(1.15);
    background: var(--primary);
    color: #fff;
}

.diamond-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.diamond-card p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ---- Scroll Reveal Animations ---- */
.reveal-diamond {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-diamond.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---- Mobile Responsive ---- */
@media (max-width: 1024px) {
    .diamond-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .diamond-features {
        padding: 4rem 0;
    }

    .diamond-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .diamond-grid {
        grid-template-columns: 1fr;
    }

    .diamond-header h2 {
        font-size: 1.7rem;
    }

    .diamond-card {
        padding: 2rem 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-label {
    display: inline-block;
    color: #4fd1c5;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.faq-header h2 {
    text-align: left;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-main);
    margin: 0;
}

.faq-accordion {
    border-top: 1px solid #edf2f7;
}

.accordion-item {
    border-bottom: 1px solid #edf2f7;
    transition: var(--transition-fast);
}

.accordion-item:hover {
    background-color: #f8fafc;
}

.accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.accordion-question span {
    color: inherit;
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-question span {
    color: var(--primary);
}

.chevron {
    transition: transform 0.4s ease;
    color: var(--text-muted);
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-answer p {
    padding: 0 0 1.5rem 0;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.accordion-item.active .accordion-answer {
    max-height: 300px;
    /* High enough for content */
}

/* FAQ Responsive */
@media (max-width: 992px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-header {
        position: static;
        text-align: left;
    }

    .faq-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .accordion-question {
        font-size: 1rem;
        padding: 1.2rem 0;
    }
}

/* =============================================
   NEW BRAND SECTIONS
   ============================================= */

/* Section 1: Partner Banner */
.partner-banner {
    background: #2e1065;
    padding: 2.5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.partner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.partner-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.partner-text span {
    font-size: 1.2rem;
    font-weight: 300;
    display: block;
    margin-bottom: 0.5rem;
}

.partner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.partner-badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-badge:hover {
    transform: translateY(-5px);
}

.google-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.premier-tag {
    background: #ff5252;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.8rem 0.4rem;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    border-radius: 4px;
    letter-spacing: 1px;
}

.google-partner-info {
    display: flex;
    flex-direction: column;
}

.gp-text-google {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5f6368;
    line-height: 1;
}

.gp-text-partner {
    font-size: 1.8rem;
    font-weight: 400;
    color: #5f6368;
    line-height: 1;
}

/* Section 2: Trust Stats Bar */
.trust-stats {
    padding: 4rem 0;
    background: #fdf2ff;
}

.stats-bar {
    background: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.stat-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.stat-text h4 span {
    display: block;
    font-weight: 600;
}

.stat-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Section 3: Services Logos Section */
.services-logos {

    background: white;
}

.logos-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    align-items: center;
}

.premier-2024-badge {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.premier-2024-badge:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.premier-2024-badge img {
    width: 80px;
    margin-bottom: 1.5rem;
}

.premier-2024-badge h3 {
    font-size: 1.8rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.badge-year {
    background: #5f6368;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.logo-grid-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo-grid-item:hover {
    background: #f8fafc;
    transform: translateX(10px);
}

.logo-grid-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-grid-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .partner-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .partner-text h2 {
        font-size: 1.8rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        border-radius: 30px;
    }

    .stat-item {
        gap: 1.2rem;
    }

    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .stat-icon {
        padding: 0.6rem !important;
        flex-shrink: 0;
    }

    .stat-icon img {
        width: 30px !important;
        height: 30px !important;
    }

    .stat-text h4 span {
        font-size: 1.3rem !important;
    }

    .stat-text p {
        font-size: 0.85rem !important;
    }

    .logos-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .premier-2024-badge {
        max-width: 400px;
        margin: 0 auto;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: 1fr;
    }

    .partner-text h2 {
        font-size: 1.5rem;
    }
}

/* hema */
.banner-heading {
    text-align: left;
}

.banner-img {
    width: 40%;
    text-align: center;
}

@media (max-width: 768px) {
    .banner-heading {
        text-align: center;
    }

    .banner-img {
        width: 100%;
    }
}