:root {
    --bg-color: #FAFAFA;
    --surface-color: #FFFFFF;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --border-color-hover: #D1D5DB;
    --accent-color: #111827;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    background-color: #090909;
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.main-canvas {
    background-color: var(--bg-color);
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.nav-wrapper {
    position: sticky;
    top: 1.5rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}

.navbar {
    position: relative;
    z-index: 10;
    background-color: #F3F4F6;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    pointer-events: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.25rem;
    z-index: 200;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.btn-primary {
    background-color: var(--text-primary);
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #374151;
}

.btn-primary.large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #F9FAFB;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.hero {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-video-container {
    width: 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    max-width: 800px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Floating Library Section */
.floating-library-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.library-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.library-text {
    text-align: center;
    z-index: 10;
}

.library-subtitle {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.library-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
}

.floating-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float-icon 6s ease-in-out infinite;
}

.floating-icon:nth-child(2) img {
    animation-delay: 0s;
}

.floating-icon:nth-child(3) img {
    animation-delay: 1.5s;
}

.floating-icon:nth-child(4) img {
    animation-delay: 3s;
}

.floating-icon:nth-child(5) img {
    animation-delay: 4.5s;
}

.floating-icon:nth-child(6) img {
    animation-delay: 1s;
}

.floating-icon:nth-child(7) img {
    animation-delay: 2.5s;
}

.floating-icon:nth-child(8) img {
    animation-delay: 4s;
}

.floating-icon:nth-child(9) img {
    animation-delay: 0.5s;
}

.floating-icon:nth-child(10) img {
    animation-delay: 2s;
}

.floating-icon:nth-child(11) img {
    animation-delay: 3.5s;
}

.floating-icon:nth-child(12) img {
    animation-delay: 1.2s;
}

.floating-icon:nth-child(13) img {
    animation-delay: 2.8s;
}

.floating-icon:nth-child(14) img {
    animation-delay: 4.2s;
}

@keyframes float-icon {

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

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

/* Section Common */
.grid-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}





/* =============================================
   SELECTED WORKS — Nexola Homepage Row Style
   ============================================= */
.projects-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 3.5rem;
}

.projects-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-top: 1rem;
}

/* =============================================
   SELECTED WORKS — Nexola Homepage Row Layout
   ============================================= */
/* Project rows container with horizontal scroll */
.sw-rows {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    width: 100%;
    padding: 1rem 0 3rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.sw-rows::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Each project card */
.sw-row {
    flex: 0 0 380px;
    /* Fixed width */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.3s ease;
    scroll-snap-align: start;
    position: relative;
    background-color: var(--bg-color, #fff);
}

.sw-row:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Image on top */
.sw-row-image {
    order: 1;
    /* Move image to top */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    border-bottom: 1px solid var(--border-color);
}

.sw-row:hover .sw-row-image img {
    transform: scale(1.05);
}

.sw-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.sw-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.sw-row:hover .sw-row-icon {
    opacity: 1;
    transform: scale(1.15);
}

/* Meta info below image */
.sw-row-meta {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    gap: 0.4rem;
    border-right: none;
}

.sw-row-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sw-row-cat {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Title Arrow */
.sw-row-arrow {
    display: inline-block;
    margin-left: 0.2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.25s ease, transform 0.3s cubic-bezier(0.25, 1, 0.3, 1);
}

.sw-row:hover .sw-row-arrow {
    color: var(--text-primary);
    transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 768px) {
    .sw-rows {
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .sw-row {
        flex: 0 0 280px;
    }

    .sw-row-image {
        height: 200px;
    }

    .sw-row-meta {
        padding: 1.25rem;
    }

    .sw-row-title {
        font-size: 1.15rem;
    }
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
    padding-right: 1rem;
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color, #fff);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color, #fff);
    transform: scale(1.05);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* About Section */
.about-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    width: 100%;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}



.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column: Stats Stack */
.about-stats-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat-card {
    background: #FFFFFF;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.012);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.3, 1), border-color 0.4s ease;
}

.stat-card:hover {
    transform: scale(1.02);
    border-color: rgba(17, 24, 39, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: #FAF9F6;
    border: 1px solid rgba(229, 231, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
}

.stat-card:hover .stat-icon {
    border-color: var(--text-primary);
    background-color: #FFFFFF;
    transform: scale(1.05);
}

/* Right Column: Expertise Card */
.about-expertise-column {
    height: 100%;
}

.expertise-card {
    background: #FFFFFF;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.012);
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    height: 100%;
}

.expertise-title-label {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.expertise-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.expertise-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.expertise-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: #FAF9F6;
    border: 1px solid rgba(229, 231, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
}

.expertise-item:hover .expertise-icon {
    border-color: var(--text-primary);
    background-color: #FFFFFF;
    transform: scale(1.05);
}

.expertise-details h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.expertise-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.greeting-container {
    margin-top: 2rem;
    margin-bottom: 0.25rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

#hello-text {
    transition: opacity 0.8s ease;
}

.greeting-world {
    color: var(--text-secondary);
}



/* Experience Section */
.experience-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.experience-title h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.experience-legend {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.black-dot {
    background-color: var(--text-primary);
}

.gray-dot {
    background-color: #B0B0B0;
}

.experience-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.experience-row {
    display: flex;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}

.experience-row:last-child {
    border-bottom: none;
}

.exp-dates {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.exp-details-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.exp-dot {
    margin-top: 0.5rem;
}

.exp-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.exp-role {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.exp-company {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.duration-pill {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
}

.retainer-pill {
    background-color: #EBF7EE;
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    vertical-align: middle;
}

/* =============================================
   AGENCY WORKFLOW SECTION
   ============================================= */
.workflow-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.workflow-header {
    margin-bottom: 3.5rem;
}

.workflow-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0.5rem 0 1rem;
}

.workflow-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1.5rem;
}

.workflow-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.workflow-card.large-card {
    justify-content: space-between;
    height: 100%;
}

.workflow-card-content {
    flex-grow: 1;
}

.workflow-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.workflow-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.workflow-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-badge {
    align-self: flex-start;
    background-color: #f3f4f6;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    margin-top: 2rem;
}

.workflow-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

    .workflow-card.large-card {
        min-height: 350px;
    }
}

@media (max-width: 640px) {
    .workflow-subgrid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: 80px 0;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

.testimonials-header {
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0.5rem 0 1rem;
}

.testimonials-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    width: 100%;
    padding: 1rem 0 3rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: #EAE8E3;
    line-height: 1;
    margin-bottom: -1rem;
    margin-left: -0.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #EAE8E3;
    padding-top: 1.5rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #6B7280;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 2rem);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
    }
    .testimonials-grid {
        gap: 1rem;
        padding-bottom: 2rem;
    }
}

/* Footer (Mobbin-style) */
.footer {
    background-color: #090909;
    color: #FFFFFF;
    padding: 100px 2rem 60px 2rem;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 340px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    font-family: var(--font-family);
}

.footer-tagline {
    font-size: 0.95rem;
    color: #A3A3A3;
    line-height: 1.6;
    font-weight: 400;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #A3A3A3;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 0.25rem;
    width: fit-content;
}

.footer-email:hover {
    color: #FFFFFF;
}

.footer-email-icon {
    color: #737373;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.footer-email:hover .footer-email-icon {
    color: #FFFFFF;
}

.footer-links-grid {
    display: flex;
    gap: 6rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 140px;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-column ul li a {
    text-decoration: none;
    font-size: 0.95rem;
    color: #A3A3A3;
    font-weight: 400;
    transition: color 0.15s ease;
}

.footer-column ul li a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1F1F1F;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #525252;
}

.footer-copyright {
    font-weight: 400;
}

.footer-legal-links {
    display: flex;
    gap: 6rem;
    min-width: 340px;
}

.legal-link {
    text-decoration: none;
    color: #525252;
    transition: color 0.15s ease;
    width: 140px;
}

.legal-link:hover {
    color: #FFFFFF;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-color);
    padding: 100px 2rem;
    display: flex;
    justify-content: center;
    text-align: center;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.status-pill {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #10B981;
    border-radius: 50%;
    animation: dot-pulse 1.8s infinite ease-in-out;
}

@keyframes dot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
    max-width: 580px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-cta {
    background-color: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid #D1D5DB;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-cta:hover {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
    transform: translateY(-1px);
}

.btn-icon {
    color: #4B5563;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 3.75rem;
    }

    .hero-video-container {
        width: 60%;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .grid-section-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .floating-library-section {
        min-height: auto;
        padding: 60px 0;
    }

    .library-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
        min-height: auto;
        padding: 0 1rem;
    }

    .library-text {
        width: 100%;
        margin-bottom: 2rem;
    }

    .library-title {
        font-size: 3.25rem;
    }

    .floating-icon {
        position: static !important;
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero h1 br {
        display: none;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-video-container {
        width: 85%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 1.5rem;
        left: 0;
        right: 0;
        background-color: #F3F4F6;
        border-radius: 24px;
        flex-direction: column;
        padding: 3.5rem 1.5rem 1.5rem;
        gap: 1.5rem;
        box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
        transform: translateY(-2rem);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.25, 1, 0.3, 1);
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .project-row-item {
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
        padding: 1.25rem 1rem;
    }

    .proj-preview-box {
        width: 80px;
        height: 50px;
    }

    .proj-visit {
        grid-column: span 2;
        display: flex;
        justify-content: flex-end;
        margin-top: 0.25rem;
    }

    .main-canvas {
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .footer {
        padding: 60px 1.5rem 40px 1.5rem;
    }

    .footer-inner {
        gap: 50px;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-grid {
        gap: 3rem;
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .footer-legal-links {
        gap: 2rem;
        min-width: unset;
        width: 100%;
    }

    .legal-link {
        width: auto;
    }

    .cta-section {
        padding: 70px 1.5rem;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .experience-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        position: relative;
    }

    .exp-dates {
        flex-direction: row;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--text-secondary);
    }

    .exp-dates span:first-child::after {
        content: " —";
    }

    .exp-details-wrapper {
        gap: 0.75rem;
    }

    .exp-dot {
        margin-top: 0.25rem;
    }

    .exp-duration {
        align-self: flex-start;
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        gap: 1.5rem;
        padding: 0.5rem 1.25rem;
        width: calc(100% - 2rem);
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-video-container {
        width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
        padding: 0 0.25rem;
        justify-content: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: auto;
        flex: 1;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .library-container {
        gap: 0.85rem;
    }

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

    .floating-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .about-stats-column {
        flex-direction: row;
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
        gap: 0.25rem;
    }

    .stat-info {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .stat-label {
        text-align: left;
        font-size: 0.75rem;
    }

    .stat-icon {
        display: none;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .expertise-list {
        gap: 1.25rem;
    }

    .expertise-item {
        gap: 1rem;
        padding-bottom: 1rem;
    }

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

    .footer-legal-links {
        gap: 1.5rem;
        justify-content: flex-start;
    }
}


/* Reveal animations */
.reveal-element {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

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

/* Stagger transition delay for project cards */
.project-row-item:nth-child(1) {
    transition-delay: 0.1s;
}

.project-row-item:nth-child(2) {
    transition-delay: 0.2s;
}

.project-row-item:nth-child(3) {
    transition-delay: 0.3s;
}

.project-row-item:nth-child(4) {
    transition-delay: 0.4s;
}

.project-row-item:nth-child(5) {
    transition-delay: 0.5s;
}

.project-row-item:nth-child(6) {
    transition-delay: 0.6s;
}

.project-row-item:nth-child(7) {
    transition-delay: 0.7s;
}

.project-row-item:nth-child(8) {
    transition-delay: 0.8s;
}

/* Stagger transition delay for floating stack icons */
.floating-icon.reveal-element:nth-child(14) {
    transition-delay: 1.12s;
}

/* ==========================================
   RETAINER PLAN PAGE
   ========================================== */

.retainer-page-body {
    background-color: #090909;
}

.retainer-container {
    padding-top: 5.5rem !important;
}

/* Retainer Hero (Dark Card Overlay) */
.retainer-hero {
    background-color: #0F0F0F;
    color: #FFFFFF;
    border-radius: 24px;
    padding: 80px 3rem 60px 3rem;
    margin: 0 auto 2rem auto;
    max-width: 1400px;
    text-align: center;
    position: relative;
    border: 1px solid #1F1F1F;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.retainer-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.dark-status-pill {
    background-color: #1A1A1A;
    border: 1px solid #2D2D2D;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #10B981;
    letter-spacing: 0.01em;
}

.retainer-hero h1 {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.retainer-hero h1 span {
    color: #6B7280;
}

.retainer-hero p {
    font-size: 1.15rem;
    color: #9CA3AF;
    line-height: 1.6;
    max-width: 660px;
    font-weight: 400;
}

.retainer-hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-dark-primary {
    background-color: #FFFFFF;
    color: #000000;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-dark-primary:hover {
    background-color: #E5E7EB;
    transform: translateY(-1px);
}

.btn-dark-secondary {
    background-color: #1F1F1F;
    color: #FFFFFF;
    border: 1px solid #2D2D2D;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-dark-secondary:hover {
    background-color: #2D2D2D;
    border-color: #4B5563;
    transform: translateY(-1px);
}

.retainer-hero-stats {
    width: 100%;
    max-width: 900px;
    margin: 4rem auto 0 auto;
    border-top: 1px solid #1F1F1F;
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #FAF9F6;
    padding: 100px 2rem;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}



.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE8E3;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.how-it-works-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.step-badge {
    background-color: #FAF9F6;
    color: #111827;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-family: monospace;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAE8E3;
}

.how-it-works-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.how-it-works-card p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
}

.how-it-works-down-arrow {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.scroll-down-btn {
    background-color: #FFFFFF;
    border: 1px solid #EAE8E3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.scroll-down-btn:hover {
    background-color: #FAF9F6;
    transform: translateY(2px);
}

/* Retainer Plans Section */
.plans-section {
    background-color: #FAF9F6;
    padding: 60px 2rem 100px 2rem;
    border-top: 1px solid #EAE8E3;
}

.plans-split {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.plans-info-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 993px) {
    .plans-info-left {
        position: sticky;
        top: 140px;
    }
}

.plans-info-left h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #111827;
}

.plans-info-left .plans-subtitle {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.65;
}

.plans-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1rem 0;
}

.plans-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
}

.plans-check-item svg {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.plans-checklist-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #FFFFFF;
    border: 1px solid #EAE8E3;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.plans-checklist-note-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FAF9F6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    flex-shrink: 0;
}

.plans-cards-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 993px) {
    .plans-cards-right {
        align-self: stretch;
    }

    .plans-cards-right .plan-card-item:nth-child(1) {
        position: sticky;
        top: 140px;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .plans-cards-right .plan-card-item:nth-child(2) {
        position: sticky;
        top: 175px;
        z-index: 20;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .plans-cards-right .plan-card-custom {
        position: sticky;
        top: 210px;
        z-index: 30;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }
}

.plan-card-item {
    background-color: #FFFFFF;
    border: 1px solid #EAE8E3;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.plan-card-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-card-item-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.plan-type-pill {
    background-color: #FAF9F6;
    border: 1px solid #EAE8E3;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-price-row {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 1.5rem;
}

.plan-price-row span {
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
}

.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.plan-feature-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4B5563;
    font-weight: 400;
}

.plan-feature-line svg {
    color: #10B981;
    flex-shrink: 0;
}

.btn-plan-action {
    width: 100%;
    background-color: #FFFFFF;
    color: #111827;
    border: 1px solid #D1D5DB;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-plan-action:hover {
    background-color: #FAF9F6;
    border-color: #9CA3AF;
}

.plan-card-item.featured {
    background-color: #0E0E0E;
    border-color: #1F1F1F;
    color: #FFFFFF;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan-card-item.featured .plan-card-item-header h3 {
    color: #FFFFFF;
}

.plan-card-item.featured .plan-type-pill {
    background-color: #1F1F1F;
    border-color: #2D2D2D;
    color: #FFFFFF;
}

.plan-card-item.featured .plan-price-row {
    color: #FFFFFF;
    border-color: #1F1F1F;
}

.plan-card-item.featured .plan-price-row span {
    color: #9CA3AF;
}

.plan-card-item.featured .plan-feature-line {
    color: #D1D5DB;
}

.plan-card-item.featured .btn-plan-action {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
}

.plan-card-item.featured .btn-plan-action:hover {
    background-color: #E5E7EB;
}

.plan-card-custom {
    background-color: #FFFFFF;
    border: 1px solid #EAE8E3;
    border-radius: 20px;
    padding: 1.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.custom-card-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.custom-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #FAF9F6;
    border: 1px solid #EAE8E3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    flex-shrink: 0;
}

.custom-card-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.15rem;
}

.custom-card-text p {
    font-size: 0.9rem;
    color: #6B7280;
}

.btn-custom-action {
    background-color: #FFFFFF;
    color: #111827;
    border: 1px solid #D1D5DB;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.btn-custom-action:hover {
    background-color: #FAF9F6;
    border-color: #9CA3AF;
}

/* Retainer Bottom CTA Section */
.bottom-cta-section {
    background-color: #FAF9F6;
    padding: 100px 2rem;
    border-top: 1px solid #EAE8E3;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    position: relative;
    z-index: 10;
}

.bottom-cta-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.bottom-cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}

.bottom-cta-left h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 500;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bottom-cta-left p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.65;
}

.bottom-cta-buttons {
    display: flex;
    gap: 1rem;
}

.what-you-get-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE8E3;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.what-you-get-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8B8579;
    margin-bottom: 1.5rem;
}

.what-you-get-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.what-you-get-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.what-you-get-line svg {
    color: #10B981;
    flex-shrink: 0;
}

/* Retainer Responsiveness */
@media (max-width: 992px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .plans-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bottom-cta-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .retainer-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .how-it-works-section {
        padding: 80px 1.5rem;
    }

    .plans-section {
        padding: 50px 1.5rem 80px 1.5rem;
    }

    .bottom-cta-section {
        padding: 80px 1.5rem;
    }
}

@media (max-width: 768px) {
    .retainer-container {
        padding-top: 2.5rem !important;
    }

    .retainer-hero {
        padding: 40px 1.5rem 40px 1.5rem;
        margin: 1rem 0.5rem 1.5rem 0.5rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .plan-card-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .btn-custom-action {
        width: 100%;
        text-align: center;
    }

    .how-it-works-section {
        padding: 60px 1.25rem;
    }

    .plans-section {
        padding: 40px 1.25rem 60px 1.25rem;
    }

    .bottom-cta-section {
        padding: 60px 1.25rem;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .how-it-works-card {
        padding: 1.75rem 1.25rem;
    }

    .what-you-get-card {
        padding: 1.75rem 1.5rem;
    }

    .bottom-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .bottom-cta-buttons .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .retainer-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .retainer-hero-actions .btn-dark-primary,
    .retainer-hero-actions .btn-dark-secondary {
        width: 100%;
        justify-content: center;
    }

    .retainer-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .retainer-hero-stats .stat-item {
        text-align: left;
    }

    .plan-card-item {
        padding: 1.75rem;
    }
}