:root {
    --primary-yellow: #FFD400;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --border-grey: #E5E5E5;
    --bg-light: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background elements */
.background-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-full-chart {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 95%;
    z-index: -2;
    /* Stay entirely behind the hero content */
    overflow: visible;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1440px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: -1;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 50%;
    /* in case the gen image has bg */
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-outline {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    font-size: 0.85rem;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-light);
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(255, 212, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.5);
}

.btn-primary .arrow {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-outline-large {
    padding: 1rem 2rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    font-size: 1rem;
}

.btn-outline-large:hover {
    background-color: var(--text-dark);
    color: var(--bg-light);
}


/* Hero Section */
.hero-section {
    max-width: 1440px;
    margin: 4rem auto;
    padding: 0 5%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: scale(1.4) translateY(0px);
    }

    50% {
        transform: scale(1.4) translateY(-15px);
    }
}

.hero-image img,
.hero-video {
    max-width: 100%;
    height: auto;
    transform: scale(1.4);
    animation: float 4s ease-in-out infinite;
    mix-blend-mode: multiply;
    /* Optional: might help remove background if the video is white */
}

.hero-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars-img {
    height: 30px;
    border-radius: 20px;
}

.social-text {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .bg-chart {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
        /* simple mobile menu handling can be added later */
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Base Container & Typography Updates */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-grey);
    font-weight: 500;
}

/* Trust Section (Proven Results) */
.trust-section {
    padding: 6rem 0;
    background-color: #f7f9fa;
    position: relative;
    overflow: hidden;
}

/* Subtle glowing background like in the reference */
.trust-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

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

.trust-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Content */
.trust-left {
    flex: 1.3;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.trust-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 212, 0, 0.8);
}

.trust-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.trust-desc {
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Huge Number */
.trust-huge-number {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.number-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.number {
    font-size: 10rem;
    font-weight: 100;
    color: var(--text-dark);
    line-height: 0.8;
    letter-spacing: -5px;
}

.plus {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-top: 1rem;
    margin-left: -0.5rem;
}

.number-text {
    display: flex;
    flex-direction: column;
}

.years {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -2px;
}

.markets {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

/* Right Cards */
.trust-right {
    flex: 1;
}

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

.trust-card {
    background: #151515;
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 212, 0, 0.1);
    border-color: rgba(255, 212, 0, 0.2);
}

.t-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 212, 0, 0.2);
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.85rem;
    color: #a0a0a0;
    line-height: 1.5;
}

/* Bottom Features */
.trust-bottom {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.trust-features {
    display: flex;
    gap: 3rem;
    flex: 1;
}

.t-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.tf-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--primary-yellow);
}

.tf-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.tf-text p {
    font-size: 0.8rem;
    color: var(--text-grey);
    line-height: 1.5;
}

.trust-cta {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-layout {
        flex-direction: column;
    }

    .trust-left {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .trust-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trust-cards-grid {
        grid-template-columns: 1fr;
    }

    .number {
        font-size: 8rem;
    }

    .years {
        font-size: 2.5rem;
    }
}

/* Base Utility Classes */
.bg-offwhite {
    background-color: #f7f9fa;
}

/* Services Showcase */
.services-showcase {
    padding: 8rem 0;
    background-color: #f7f9fa;
}

.showcase-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

/* Service Lists */
.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-list-left {
    text-align: right;
}

.showcase-list-left .showcase-item {
    flex-direction: row-reverse;
}

.showcase-list-left .showcase-item-text {
    text-align: right;
}

.showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: background-color 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.showcase-item:hover {
    background-color: rgba(255, 212, 0, 0.06);
    transform: translateY(-2px);
}

.showcase-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: rgba(255, 212, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.showcase-item-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.showcase-item-text p {
    font-size: 0.88rem;
    color: var(--text-grey);
    line-height: 1.5;
}

/* Center Duck */
.showcase-duck {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.showcase-duck img {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: duckFloat 4s ease-in-out infinite;
}

@keyframes duckFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-duck {
        order: -1;
    }

    .showcase-duck img {
        width: 280px;
    }

    .showcase-list-left {
        text-align: left;
    }

    .showcase-list-left .showcase-item {
        flex-direction: row;
    }

    .showcase-list-left .showcase-item-text {
        text-align: left;
    }
}

/* Comparison Section — In-House vs SEO Duck */
.comparison-section {
    padding: 8rem 0;
    background-color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture overlay */
.comparison-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

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

.vs-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 212, 0, 0.5));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    margin-top: 4rem;
}

.vs-split-card {
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #0f0f0f;
}

.vs-half {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
}

.vs-inhouse {
    background: #0f0f0f;
    color: #fff;
}

.vs-duck {
    background: #fdfbf4
}

.vs-half-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.vs-header-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-header-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.vs-header-text p {
    font-size: 0.95rem;
    color: #888;
}

.vs-duck .vs-header-text p {
    color: #666;
}

.vs-price-block {
    margin-bottom: 2.5rem;
}

.vs-price {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.vs-price span {
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.7;
    letter-spacing: 0;
}

.vs-price-block p {
    font-size: 1.05rem;
    color: #888;
}

.vs-duck .vs-price-block p {
    color: var(--text-dark);
    font-weight: 500;
}

.vs-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.vs-items-list li {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.vs-items-inhouse li {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.vs-items-duck li {
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.vs-item-icon {
    margin-right: 1.25rem;
    display: flex;
    align-items: center;
    color: #888;
}

.vs-item-label {
    flex-grow: 1;
    color: #ccc;
}

.vs-duck .vs-item-label {
    color: var(--text-dark);
}

.vs-items-inhouse .vs-item-value {
    color: #fff;
    font-weight: 700;
}

.vs-items-duck .vs-item-value {
    font-weight: 800;
}

.vs-footer-text {
    text-align: center;
    font-size: 0.95rem;
    color: #888;
}

.vs-duck-cta-container {
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
}

.vs-duck-cta-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.vs-divider {
    position: absolute;
    top: -5%;
    bottom: -5%;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 212, 0, 0.8) 20%, rgba(255, 212, 0, 0.8) 80%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.6), 0 0 40px rgba(255, 212, 0, 0.2);
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 212, 0, 0.5);
    z-index: 3;
    border: 4px solid var(--primary-yellow);
}

/* First 30 Days Section */
.first-30-days {
    margin-top: 5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
}

.first-30-days h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.day-item {
    background: #111;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.2s, border-color 0.2s;
}

.day-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 212, 0, 0.3);
}

.day-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 212, 0, 0.4);
}

.day-item span:not(.day-num) {
    font-size: 1rem;
    font-weight: 600;
    color: #ddd;
}

/* Responsive */
@media (max-width: 1024px) {
    .vs-split-card {
        flex-direction: column;
    }

    .vs-half {
        padding: 3rem 2rem;
    }

    .vs-divider {
        top: 50%;
        bottom: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 212, 0, 0.8) 20%, rgba(255, 212, 0, 0.8) 80%, rgba(255, 255, 255, 0) 100%);
        transform: translateY(-50%);
    }

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

@media (max-width: 600px) {
    .days-grid {
        grid-template-columns: 1fr;
    }
}

/* Cases V2 Section */
.cases-section {
    padding: 8rem 0;
}

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

.case-card-v2 {
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.case-logo {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-grey);
}

.case-metric {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.case-metric-label {
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.case-desc {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.case-link {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-yellow);
    align-self: flex-start;
}

@media (max-width: 900px) {
    .cases-row {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Carousel Placeholder */
.testimonials-section {
    padding: 8rem 0;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
}

.testimo-card {
    min-width: 350px;
    flex: 1;
    background: var(--bg-light);
    border: 1px solid var(--border-grey);
    padding: 3rem;
    border-radius: 12px;
    text-align: left;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimo-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: none;
}

.t-info strong {
    display: block;
    margin-bottom: 0.2rem;
}

.t-info span {
    font-size: 0.85rem;
    color: var(--text-grey);
}

/* Process Section */
.process-section {
    padding: 8rem 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    position: relative;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.step-num {
    position: absolute;
    top: -14px;
    left: 0;
    background: var(--bg-light);
    color: var(--primary-yellow);
    font-weight: 900;
    font-size: 1.2rem;
    padding-right: 15px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Technology Section */
.platform-section {
    padding: 8rem 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platform-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.platform-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

.integrations span {
    color: var(--text-grey);
    margin-right: 1rem;
    font-weight: 600;
}

.mock-dash {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 350px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dash-header {
    background: #f0f0f0;
    padding: 15px;
    display: flex;
    gap: 8px;
}

.dash-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.dash-body {
    flex: 1;
    padding: 20px;
}

.dash-chart-mock {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 212, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: 2px solid var(--primary-yellow);
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    text-align: center;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.ind-card {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-grey);
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

.ind-card:hover {
    transform: translateY(-2px);
    border-color: var(--text-dark);
}

/* Resources Section */
.resources-section {
    padding: 8rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: var(--bg-light);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s;
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.r-img {
    height: 180px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.resource-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    background: var(--primary-yellow);
    padding: 8rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    font-weight: 500;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ft-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
    font-weight: 900;
    letter-spacing: -1px;
}

.ft-brand p {
    color: #aaa;
}

.ft-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
}

.ft-links ul {
    list-style: none;
    padding: 0;
}

.ft-links li {
    margin-bottom: 0.8rem;
}

.ft-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.ft-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-grey);
    transition: color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.toggle-label.active {
    color: var(--text-dark);
    font-weight: 700;
}

.save-badge {
    display: inline-block;
    background-color: rgba(255, 212, 0, 0.25);
    color: #b8960a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    padding: 0;
}

.toggle-switch.active {
    background-color: var(--primary-yellow);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(24px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-light);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Featured Card */
.pricing-card-featured {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
    transform: scale(1.04);
    box-shadow: 0 25px 60px rgba(26, 26, 26, 0.2);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 30px 70px rgba(26, 26, 26, 0.28);
}

.pricing-card-featured .pricing-desc {
    color: #aaa;
}

.pricing-card-featured .pricing-features li {
    color: #ddd;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-card-featured .feature-disabled {
    color: #555;
}

.popular-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 24px;
    border-radius: 0 0 12px 12px;
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-grey);
}

.pricing-card-featured .pricing-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-tier-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: 1rem;
}

.pricing-card-featured .pricing-tier-badge {
    color: var(--primary-yellow);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 1rem;
}

.pricing-amount .currency {
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 0.6;
}

.pricing-amount .price {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-grey);
    margin-left: 4px;
}

.pricing-card-featured .pricing-amount .period {
    color: #888;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.5;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.pricing-features li svg {
    flex-shrink: 0;
}

.feature-disabled {
    color: #bbb !important;
}

/* Pricing Buttons */
.btn-pricing-outline {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    border: 2px solid var(--border-grey);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
}

.btn-pricing-outline:hover {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
}

.btn-pricing-primary {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background-color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(255, 212, 0, 0.35);
    margin-top: auto;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 212, 0, 0.5);
}

.btn-pricing-primary .arrow {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.btn-pricing-primary:hover .arrow {
    transform: translateX(4px);
}

/* Footer Note */
.pricing-footer-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
    }

    .process-step {
        border-left: 2px solid #e0e0e0;
        border-top: none;
        padding-top: 0;
        padding-left: 2rem;
        padding-bottom: 2rem;
    }

    .step-num {
        top: 0;
        left: -14px;
        padding-right: 0;
        padding-bottom: 15px;
    }

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

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

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

/* Process Section Responsive Fixes */
@media (max-width: 1024px) {
    .process-hero-layout {
        flex-direction: column !important;
        gap: 4rem !important;
    }

    .process-stats {
        flex-direction: row !important;
        justify-content: space-around !important;
        width: 100% !important;
        gap: 2rem !important;
    }

    .process-stats .stat-block {
        text-align: center;
        flex: 1;
    }

    .process-stats .stat-block div[style*="height: 1px"] {
        display: none !important;
    }

    .process-circle-diagram {
        margin: 4rem 0 !important;
    }
}

@media (max-width: 600px) {
    .process-stats {
        flex-direction: column !important;
        gap: 3rem !important;
    }

    .process-circle-diagram {
        transform: scale(0.65) !important;
        margin: -2rem 0 !important;
    }
}

/* DuckHub Tool Section (Isometric Dashboard Mockup) */
.duckhub-section {
    padding: 8rem 0;
    background-color: #050505;
    color: #fff;
    overflow: hidden;
}

.duckhub-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.dh-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.dh-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 212, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(255, 212, 0, 0.05);
}

.dh-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 212, 0, 0.8);
}

.dh-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.dh-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.dh-stats {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.dh-stat {
    display: flex;
    flex-direction: column;
}

.dh-stat-val {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.dh-stat-label {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    white-space: nowrap;
}

.dh-stat-divider {
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 212, 0, 0) 0%, rgba(255, 212, 0, 0.5) 50%, rgba(255, 212, 0, 0) 100%);
}

.dh-btn-primary {
    background: #fdfdfd;
    color: #000;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255, 212, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dh-btn-primary:hover {
    box-shadow: 0 0 50px rgba(255, 212, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    background: #fff;
    color: #000;
}

/* 3D Dashboard Mockup */
.dh-mockup-wrapper {
    flex: 1.2;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dh-mockup-3d {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 500px;
    transform: rotateY(-15deg) rotateX(10deg) rotateZ(0deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.dh-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: 0;
}

.dh-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    border: 1px solid rgba(255, 212, 0, 0.3);
    border-radius: 16px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 212, 0, 0.05);
    display: flex;
    overflow: hidden;
    z-index: 1;
}

.dh-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
}

.dh-sb-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border-radius: 8px;
    transition: all 0.2s;
}

.dh-sb-icon.active {
    color: var(--primary-yellow);
    background: rgba(255, 212, 0, 0.1);
}

.dh-panel-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.dh-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dh-panel-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.dh-ph-actions {
    display: flex;
    gap: 0.5rem;
}

.dh-ph-btn {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.dh-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dh-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.dh-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dh-card-head h4 {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 500;
}

.dh-card-metric {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dh-val {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.dh-trend {
    font-size: 0.85rem;
    font-weight: 600;
}

.dh-trend.positive {
    color: var(--primary-yellow);
}

.dh-mock-chart {
    height: 60px;
    width: 100%;
}

.dh-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: #555;
}

/* Floating Cards */
.dh-floating-card {
    position: absolute;
    background: #1a1a1a;
    border: 1px solid rgba(255, 212, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.dh-float-1 {
    top: 50px;
    right: -100px;
    width: 260px;
    transform: translateZ(40px);
}

.dh-float-2 {
    bottom: 50px;
    right: -120px;
    width: 280px;
    transform: translateZ(60px);
}

.dh-mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
    margin-top: 1rem;
}

.dh-mock-bars .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, rgba(255, 212, 0, 0.2) 100%);
    border-radius: 2px 2px 0 0;
}

.dh-health-status {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.8rem;
}

.dh-health-bar {
    height: 6px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.dh-health-bar .dh-fill {
    height: 100%;
    width: 98%;
    background: var(--primary-yellow);
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .duckhub-layout {
        flex-direction: column;
    }

    .dh-content {
        max-width: 100%;
        text-align: center;
    }

    .dh-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dh-mockup-3d {
        transform: none;
    }

    .dh-float-1,
    .dh-float-2 {
        display: none;
        /* Hide floating cards on small screens for better fit */
    }
}

@media (max-width: 600px) {
    .dh-stats {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .dh-stat-divider {
        width: 50%;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 212, 0, 0) 0%, rgba(255, 212, 0, 0.5) 50%, rgba(255, 212, 0, 0) 100%);
    }

    .dh-title {
        font-size: 3rem;
    }
}

/* Full-Stack SEO Section */
.fs-seo-section {
    background-color: #0f0f0f;
    padding: 8rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.fs-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.fs-left {
    flex: 1;
    max-width: 500px;
}

.fs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.fs-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 212, 0, 0.8);
}

.fs-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.fs-desc {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fs-desc-sub {
    font-size: 1.05rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.fs-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fs-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fs-f-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 212, 0, 0.1);
    flex-shrink: 0;
}

.fs-f-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
}

.fs-f-text p {
    font-size: 0.95rem;
    color: #a0a0a0;
}

.fs-btn {
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.15);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
}

/* Right Stack */
.fs-right {
    flex: 1.2;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 4rem;
    position: relative;
}

.fs-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    width: 100%;
    max-width: 550px;
    padding: 2rem 0;
    /* padding for the connecting line */
}

.fs-stack-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.fs-stack-line-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.8);
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 10%;
    z-index: 0;
}

.fs-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fs-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 212, 0, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fs-card.hovered {
    transform: scale(1.02);
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 212, 0, 0.05);
    border-color: rgba(255, 212, 0, 0.3);
}

.fs-card.hovered::before {
    opacity: 1;
}

.fs-card-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 212, 0, 0.2);
}

.fs-card-content {
    flex: 1;
}

.fs-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
}

.fs-card-content p {
    font-size: 0.95rem;
    color: #a0a0a0;
}

.fs-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.fs-card.hovered .fs-card-icon {
    color: var(--primary-yellow);
    border-color: rgba(255, 212, 0, 0.4);
    background: rgba(255, 212, 0, 0.05);
}

.fs-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fs-card.hovered .fs-card-tags,
.fs-card:hover .fs-card-tags {
    max-height: 100px;
    opacity: 1;
    margin-top: 1rem;
}

.fs-card-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #ccc;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-tag-dot {
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

/* Progress Indicator */
.fs-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.fs-prog-top,
.fs-prog-bottom {
    font-size: 0.8rem;
    color: #888;
    margin: 1rem 0;
}

.fs-prog-line {
    flex: 1;
    width: 1px;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 4px, transparent 4px, transparent 8px);
    position: relative;
    margin: 10px 0;
}

/* Arrow pointing up at the top of the dashed line */
.fs-prog-line::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.4);
}

.fs-prog-fill {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 212, 0, 0.6);
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 10%;
}

.fs-prog-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-yellow);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    bottom: 10%;
    box-shadow: 0 0 15px rgba(255, 212, 0, 1);
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.fs-prog-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 212, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .fs-layout {
        flex-direction: column;
    }

    .fs-left {
        max-width: 100%;
    }

    .fs-right {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .fs-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .fs-card-num {
        font-size: 2.5rem;
    }

    .fs-progress {
        display: none;
        /* Might be too cramped on mobile */
    }
}

/* Our Team Section */
.team-section {
    padding: 8rem 0;
    background-color: #f7f9fa;
    /* using their offwhite style */
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.team-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.team-left {
    flex: 1;
    max-width: 480px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.team-desc {
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.team-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.tf-item .tf-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.tf-item:hover .tf-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 212, 0, 0.15);
}

.tf-item span {
    font-size: 0.8rem;
    font-weight: 700;
}

.team-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-team {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
}

/* Right side cards */
.team-right {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.team-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 240px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 30px rgba(255, 212, 0, 0.15);
}

.card-center {
    width: 280px;
    z-index: 2;
    transform: translateY(-20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 40px rgba(255, 212, 0, 0.1);
}

.card-center:hover {
    transform: translateY(-30px) scale(1.02);
}

.card-left {
    transform: rotate(-2deg);
}

.card-left:hover {
    transform: translateY(-10px) rotate(-1deg);
}

.card-right {
    transform: rotate(2deg);
}

.card-right:hover {
    transform: translateY(-10px) rotate(1deg);
}

.team-img-wrapper {
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.card-center .team-img-wrapper {
    height: 320px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    position: relative;
}

.team-duck-icon {
    position: absolute;
    top: -18px;
    left: 1.5rem;
    width: 36px;
    height: 36px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--text-grey);
}

.team-line {
    width: 20px;
    height: 3px;
    background: var(--primary-yellow);
    margin-top: 1rem;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.team-card:hover .team-line {
    width: 40px;
}

.floating-spark {
    position: absolute;
    top: -20px;
    right: 20px;
    animation: duckFloat 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-layout {
        flex-direction: column;
        text-align: center;
    }

    .team-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-features {
        justify-content: center;
    }

    .team-right {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .team-right {
        flex-direction: column;
        gap: 2rem;
    }

    .card-left,
    .card-center,
    .card-right {
        transform: none;
        width: 100%;
        max-width: 320px;
    }

    .card-center:hover,
    .card-left:hover,
    .card-right:hover {
        transform: translateY(-10px);
    }

    .floating-spark {
        display: none;
    }
}

/* Proven Results Section Overrides */
.trust-huge-number {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-huge-number .number {
    font-size: 25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 0.7;
    letter-spacing: -10px;
    position: relative;
    z-index: 1;
}


.number-right {
    display: flex;
    flex-direction: column;
}

.plus-years {
    display: flex;
    font-size: 8rem;
    font-weight: 900;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}



.trust-huge-number .markets {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

/* Make cards light */
.trust-card {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    position: relative;
    overflow: hidden;
}

.trust-card h3 {
    color: var(--text-dark) !important;
}

.trust-card p {
    color: var(--text-grey) !important;
}

.trust-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(255, 212, 0, 0.15) !important;
    border-color: rgba(255, 212, 0, 0.4) !important;
}

.trust-card .t-icon {
    background: rgba(255, 212, 0, 0.1) !important;
    color: var(--primary-yellow) !important;
    border: 1px solid rgba(255, 212, 0, 0.2) !important;
    transition: transform 0.3s ease;
}

.trust-card:hover .t-icon {
    transform: scale(1.1);
}

.card-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.trust-card:hover .card-underline {
    width: 40px;
}

/* Animations */
.reveal-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-stagger.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-cards-grid.is-visible .animated-card {
    opacity: 0;
    animation: fadeUpCard 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.trust-cards-grid.is-visible .animated-card:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-cards-grid.is-visible .animated-card:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-cards-grid.is-visible .animated-card:nth-child(3) {
    animation-delay: 0.3s;
}

.trust-cards-grid.is-visible .animated-card:nth-child(4) {
    animation-delay: 0.4s;
}

.trust-cards-grid.is-visible .animated-card:nth-child(5) {
    animation-delay: 0.5s;
}

.trust-cards-grid.is-visible .animated-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeUpCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Resource Card Flexbox Fix for Buttons */
.resource-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card .btn {
    margin-top: auto !important;
    align-self: flex-start;
}


/* =====================================================
   HOW WE WORK SECTION
   ===================================================== */
.hww-section {
    background: #050505;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

/* Header */
.hww-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hww-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 212, 0, 0.3);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--primary-yellow);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.1) inset;
}

.hww-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hww-title-accent {
    color: var(--primary-yellow);
}

.hww-subtitle {
    font-size: 1.05rem;
    color: #777;
    max-width: 480px;
    margin: 0 auto;
}

/* ---- Workflow Stage ---- */
.hww-stage {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* SVG Connector Line */
.hww-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 400px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

/* Cards Container - Flex Row */
.hww-cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
}

/* Step Cards */
.hww-card {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    flex: 1;
    text-align: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.35s ease;
    cursor: default;
    /* Bottom yellow glow border effect */
    border-bottom: 2px solid rgba(255, 212, 0, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 -2px 10px rgba(255, 255, 255, 0.02) inset;
}

/* Hover: lift + glow */
.hww-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 212, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 212, 0, 0.15),
        0 0 30px rgba(255, 212, 0, 0.1);
}

/* Step Number in Top Left */
.hww-card-step {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 0;
}

/* Card Icon with Circular Dark Background */
.hww-card-icon {
    width: 64px;
    height: 64px;
    margin: 2rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080808;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8) inset, 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Card Title */
.hww-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

/* Card Description */
.hww-card-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* ---- Bottom Metrics ---- */
.hww-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hww-metric {
    text-align: left;
    flex: 1;
}

.hww-metric-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hww-metric-value span {
    font-size: 2rem;
    font-weight: 700;
}

.hww-metric-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hww-metric-desc {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.45;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hww-cards-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hww-card {
        flex: 0 0 calc(50% - 2rem);
    }

    .hww-line {
        display: none;
    }

    .hww-metrics {
        flex-wrap: wrap;
    }

    .hww-metric {
        flex: 0 0 calc(50% - 2rem);
        margin-bottom: 2rem;
    }

    .hww-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .hww-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .hww-card {
        width: 100%;
        max-width: 320px;
    }

    .hww-metrics {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hww-metric {
        width: 100%;
        margin-bottom: 2rem;
    }

    .hww-title {
        font-size: 2.5rem;
    }
}

/* Contact Form Section */

.contact-section {
    padding: 120px 0;
    background: #0f0f0f;
    color: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-badge {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.contact-content p {
    max-width: 440px;
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form {
    background: #fff;
    color: #111;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-row label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #222;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
    border-radius: 16px;
    padding: 15px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: #111;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary-yellow);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.18);
}

.form-row textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit {
    width: 100%;
    border: none;
    justify-content: center;
    cursor: pointer;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 28px;
        border-radius: 24px;
    }
}