/* CSS Variables & Design System */
:root {
    --bg-white: #f9f9f9;
    --bg-black: #101010;
    --text-black: #000000;
    --text-white: #FFFFFF;

    --text-dim-light: #555555;
    --text-dim-dark: #888888;

    --accent: #FFFFFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-container: 2rem;
    --container-width: 1400px;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.section {
    padding: 8rem 0;
}

/* Theme Utilities */
.bg-dark {
    background-color: var(--bg-black);
    color: var(--text-white);
}

.bg-dark .text-dim {
    color: var(--text-dim-dark);
}

.bg-dark .btn {
    background: var(--text-white);
    color: var(--text-black);
}

.bg-dark .section-title {
    color: var(--text-white);
}

.bg-light {
    background-color: var(--bg-white);
    color: var(--text-black);
}

#work .container {
    max-width: 100%;
    padding: 0 1.5rem;
    /* Wider layout */
}

.bg-light .text-dim {
    color: var(--text-dim-light);
}

.bg-light .btn {
    background: var(--text-black);
    color: var(--text-white);
}

.bg-light .section-title {
    color: var(--text-black);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    padding-right: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 999px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    gap: 1.5rem;
    min-width: 140px;
}

.btn::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.02);
    opacity: 1;
    /* Keep opacity full for vibrancy */
}

.btn:hover::after {
    background-color: #39ff14;
    /* Neon Green */
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    animation: pulse-green 1.5s infinite;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 0.65rem 0;
    /* Just a tiny bit smaller */
    background: #f9f9f9;
    color: #000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 3rem;
}

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

.header-logo-img {
    height: 35px;
    /* Just a tiny bit smaller */
    width: auto;
}

.reg-mark-sm {
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 2px;
}

.nav-center {
    display: none;
}

@media (min-width: 900px) {
    .nav-center {
        display: flex;
        gap: 6rem;
        /* Wide spacing */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-link {
        font-size: 0.85rem;
        /* Slightly smaller nav links */
        color: #000;
        font-weight: 500;
        margin-left: 0;
        transition: opacity 0.3s ease;
    }

    .nav-link:hover {
        opacity: 0.6;
    }

    .nav-count {
        font-size: 0.7em;
        vertical-align: super;
        opacity: 0.7;
    }
}

/* Hero Section */
.hero {
    height: calc(100vh - 4.1rem);
    min-height: 580px;
    margin: 0 0.6rem 3px 0.6rem;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    /* Allow vertical stacking */
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000;
    color: var(--text-white);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        /* Desktop side-by-side */
    }
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    background: #000;
    /* Fallback */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1) brightness(0.6);
    /* Premium silver-grey look */
}

.video-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 16, 16, 0.4), rgba(16, 16, 16, 0.7));
    /* Grey atmospheric tint */
    z-index: 2;
}

.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0.15;
    /* Increased for that 'grainy filter' look */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(-5%, -5%)
    }

    20% {
        transform: translate(-10%, 5%)
    }

    30% {
        transform: translate(5%, -10%)
    }

    40% {
        transform: translate(-5%, 15%)
    }

    50% {
        transform: translate(-10%, 5%)
    }

    60% {
        transform: translate(15%, 0)
    }

    70% {
        transform: translate(0, 10%)
    }

    80% {
        transform: translate(-15%, 0)
    }

    90% {
        transform: translate(10%, 5%)
    }
}

/* Stats */
.stats-section {
    background: #111;
    color: #fff;
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.service-card {
    padding: 2rem;
    border-radius: 20px;
    background: #fff;
}

.hero-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 8vw;
    padding-right: 8vw;
}

@media (max-width: 768px) {
    .hero-container {
        padding-left: 5vw;
        padding-right: 5vw;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

.hero-center {
    text-align: left;
    position: relative;
    z-index: 6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-center {
        text-align: center;
        margin-bottom: 0;
    }
}

.hero-brand {
    font-size: clamp(3rem, 10vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    margin-bottom: 0;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-align: left;
    margin-top: -0.5rem;
    margin-right: 0;
}

@media (max-width: 768px) {
    .hero-subtitle {
        text-align: center;
        margin-top: 0;
    }
}

/* Hero Right List */
.hero-right-list {
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    display: none;
}

@media (min-width: 1024px) {
    .hero-right-list {
        display: block;
    }
}

.hero-right-list ul {
    list-style: none;
}

.hero-right-list li {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    color: #fff;
    /* Changed to full white */
    transition: var(--transition-smooth);
    cursor: pointer;
}

.hero-right-list li:hover {
    color: #fff;
    transform: translateX(-10px);
    /* Subtle slide-in effect */
}

/* Floating Elements */
.hero-bottom-left {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    max-width: 350px;
    text-align: left;
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-bottom-left {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 2rem auto;
        text-align: center;
        max-width: 90%;
    }
}

.hero-bottom-left p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-weight: 500;
}

.hero-bottom-left p strong {
    color: #fff;
}

/* If bold needed */

.hero-card {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: white;
    color: black;
    padding: 1.2rem;
    border-radius: 16px;
    width: 280px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-avatar {
    width: 48px;
    height: 48px;
    background: #ccc;
    border-radius: 8px;
    /* Slightly squarer */
}

.card-details h4 {
    font-size: 0.75rem;
    margin: 0;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
}

.card-details h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

.card-btn {
    width: fit-content;
    min-width: 140px;
    background: #000;
    color: #fff;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.2rem;
    padding-right: 0.8rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.card-dot,
.btn-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: block;
}

.card-btn:hover {
    transform: translateY(-2px);
}

/* Crosshairs */
.crosshair {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 1;
    pointer-events: none;
}

.c-left {
    bottom: 30vh;
    left: 3rem;
}

.c-center {
    bottom: 30vh;
    left: 50%;
    transform: translateX(-50%);
}

.c-right {
    bottom: 30vh;
    right: 3rem;
}


/* Sections */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.03em;
    line-height: 1;
}

/* Projects (Light) */
.projects-header {
    display: grid;
    grid-template-columns: 100%;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 2rem;
}

@media (min-width: 900px) {
    .projects-header {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
        text-align: center;
        margin-bottom: 6rem;
    }

    .projects-header-left {
        justify-self: start;
        text-align: left;
    }

    .projects-header-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-header-right {
        justify-self: end;
        text-align: right;
    }
}

.huge-projects-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.8;
    margin-bottom: 2rem;
    /* Increased to prevent overlap with descender */
    letter-spacing: -0.04em;
    font-weight: 600;
    color: #000;
}

.projects-year {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #000;
}

.projects-count {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
}

.projects-intro {
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.4;
    color: #666;
    margin-left: auto;
}

@media (max-width: 900px) {
    .projects-intro {
        margin-left: 0;
        max-width: 100%;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .project-card:nth-child(even) {
        margin-top: 0;
    }
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 0.5rem;
}

.project-title-group {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.project-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.01em;
}

.project-card-year {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
}

.project-dots {
    display: flex;
    gap: 5px;
    margin-top: auto;
    margin-bottom: auto;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e5e5;
    /* Default inactive gray */
    transition: background-color 0.3s ease;
}

.project-card:hover .dot:nth-child(1) {
    background-color: #ff5f57;
    /* Mac Red */
}

.project-card:hover .dot:nth-child(2) {
    background-color: #febc2e;
    /* Mac Yellow */
}

.project-card:hover .dot:nth-child(3) {
    background-color: #28c840;
    /* Mac Green */
}

.project-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* --- REFINED SERVICES SECTION --- */
#services {
    margin: 3px 0.6rem;
    border-radius: 2.5rem;
    background-color: #000;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 4rem;
}

.services-header .section-title {
    font-size: clamp(3.5rem, 13vw, 10rem);
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.header-icon {
    font-size: 0.8rem;
}

.header-count {
    opacity: 0.3;
    font-size: 0.25em;
    vertical-align: top;
    margin-left: 0.5rem;
}

.services-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Basic Service Item */
.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: start;
    transition: background 0.3s;
    cursor: pointer;
}

/* Expanded Service Item Grid */
.service-item.expanded {
    grid-template-columns: 80px 1.5fr 1fr auto;
    /* Content gets more space, Tags less */
    align-items: flex-start;
    gap: 2rem;
}

.service-num {
    font-family: 'Courier New', monospace;
    opacity: 0.5;
    font-size: 0.9rem;
    padding-top: 0.5rem;
}

/* Default Content Layout */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-name {
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
}

.service-img-thumb {
    display: none;
}

/* Hidden Description by Default */
.service-desc {
    max-width: 500px;
    color: var(--text-dim-dark);
    font-size: 0.95rem;
    display: none;
}


/* --- EXPANDED STATE STYLES --- */

/* 1. Grid Layout for Content (Image | Title/Desc) */
.service-item.expanded .service-content {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "img title"
        "img desc";
    column-gap: 2rem;
    align-items: start;
}

.service-item.expanded .service-main {
    display: contents;
    /* Remove flex, use grid parent */
}

/* 2. Image Placement */
.service-item.expanded .service-img-thumb {
    display: block;
    grid-area: img;
    width: 140px;
    height: auto;
}

/* 3. Title Placement */
.service-item.expanded .service-name {
    grid-area: title;
    margin-bottom: 0.5rem;
}

/* 4. Description Placement & Visibility */
.service-item.expanded .service-desc {
    display: block !important;
    /* Force show */
    grid-area: desc;
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
}

/* 5. Tags Layout and Styling */
.service-tags {
    display: none;
    gap: 0.5rem;
    align-content: flex-start;
    flex-wrap: wrap;
}

.service-item.expanded .service-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    padding-top: 0.5rem;
    max-width: 380px;
    /* Force visual match */
    width: 100%;
}

.service-tags::before {
    content: 'Categories';
    display: block;
    width: 100%;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.tag {
    background: #fff;
    color: #000;
    padding: 0.35rem 0.9rem;
    /* Smaller padding */
    border-radius: 99px;
    font-size: 0.75rem;
    /* Smaller font */
    font-weight: 500;
}

.tag:last-child {
    background: #333;
    color: #dedede;
}



.service-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-item:hover .service-toggle {
    border-color: #fff;
    transform: rotate(90deg);
}

.services-footer {
    padding-top: 4rem;
    text-align: center;
}

.btn-white {
    background: #fff;
    color: #000;
    padding: 0.8rem 1.2rem;
    padding-right: 0.8rem;
    border-radius: 99px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-width: 140px;
    transition: var(--transition-smooth);
}

.btn-white::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.btn-white:hover {
    transform: scale(1.02);
}

/* Experiences Header (Replicating Projects Header Layout) */
.experiences-header {
    display: grid;
    grid-template-columns: 100%;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 2rem;
}

.exp-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* On desktop, switch to 3-column layout */
@media (min-width: 900px) {
    .experiences-header {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
        text-align: center;
        margin-bottom: 6rem;
    }

    .exp-header-left {
        justify-self: start;
    }

    .exp-header-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Aligns Year under Title */
    }

    .exp-header-right {
        justify-self: end;
    }
}

/* --- REFINED EXPERIENCES BENTO --- */
.experiences-section {
    padding: 6rem 0;
}

.exp-header-top {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.year-mark {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
}

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

.bento-card {
    background: #fff;
    border-radius: 18px;
    /* Match Why Choose Us */
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
}

/* Score Card */
.score-card {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.score-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.score-large {
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.score-small {
    font-size: 1.5rem;
    color: #999;
}

.score-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    max-width: 150px;
    margin-top: 0.5rem;
}

.brand-strip {
    margin-top: auto;
    margin-bottom: 2rem;
}

.fabrica-brand {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.avatars-row {
    display: flex;
    margin-left: 10px;
    /* Offset for overlap */
    margin-bottom: 0.8rem;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    margin-left: -10px;
}

.avatar-circle.black {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.trusted-text {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trusted-text .stars {
    color: #FFB800;
    letter-spacing: -2px;
}

.stars {
    color: #FFB800;
    letter-spacing: -2px;
}

/* Button */
.btn-black-full {
    background: #090909;
    color: #fff;
    width: 100%;
    padding: 1rem;
    border-radius: 99px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.btn-black-full:hover {
    background: #222;
}

/* Split Cards */
.exp-profile-card,
.exp-quote-card,
.exp-quote-text-card,
.exp-profile-card-bottom {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.exp-profile-card,
.exp-profile-card-bottom {
    justify-content: center;
}

.exp-quote-card,
.exp-quote-text-card {
    flex: 1;
    /* Expand to fill column */
    justify-content: space-between;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* Rounded square as per design */
    background-size: cover;
    background-position: center;
}

.user-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.user-info span {
    font-size: 0.8rem;
    color: #888;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plus-icon-grey {
    color: #ccc;
    font-size: 1.5rem;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.4;
    transform: translateY(-2px);
}

/* --- REFINED PRICING --- */
.pricing-section {
    margin: 3px 0.6rem;
    border-radius: 2.5rem;
    background-color: #080808;
    background-image: radial-gradient(circle at 50% 50%, rgba(30, 30, 30, 1) 0%, rgba(0, 0, 0, 1) 100%);
    /* Note: For real grain, add: url('noise-texture.png') and use background-blend-mode: overlay; */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section .section-header {
    position: relative;
    padding-top: 1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-section .section-title {
    font-size: 6rem;
    /* Huge title */
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}


.simple-tag {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border: none;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.simple-tag::before {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.pricing-toggle {
    margin: 2rem auto;
    background: #151515;
    display: inline-flex;
    padding: 0.3rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-option {
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #888;
    transition: all 0.3s;
    font-weight: 500;
}

.pricing-option.active {
    background: #fff;
    color: #000;
}

.pricing-option:hover:not(.active) {
    color: #fff;
}

#services .container {
    max-width: 1300px;
    margin: 4rem auto 0;
}

.pricing-section .container {
    max-width: 95%;
    /* Push cards close to edge */
    margin: 0 auto;
    padding: 0 2rem;
}


/* --- PRICING GRID LAYOUT --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr 2.2fr;
        /* Left card narrower, Right card wider */
        gap: 0.5rem;
        /* Tighter gap */
    }
}

.pricing-card {
    background: #0d0d0d;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

/* Addon Card Styles */
.addon-card {
    justify-content: space-between;
    min-height: 320px;
}

.addon-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.addon-list {
    list-style: none;
    /* No default bullets */
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.addon-list li {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.addon-list li::before {
    content: '•';
    color: #39ff14;
    /* Green bullet */
    position: absolute;
    left: 0;
}

.addon-list strong {
    color: #fff;
    font-weight: 500;
}

.addon-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.addon-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.more-features {
    font-style: italic;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Core Card Styles */
.core-card {
    gap: 3rem;
}

@media (min-width: 900px) {
    .core-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.core-left,
.core-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.big-price {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    letter-spacing: -1px;
}

.big-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-left: 0.5rem;
}

.delivery-line {
    display: flex;
    align-items: baseline;
    align-items: center;
    /* Better alignment for graphical line */
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: auto;
}

.dotted-line {
    flex-grow: 1;
    height: 1px;
    background: #333;
    /* Base dark line */
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: none;
    opacity: 1;
}

/* The flying light effect */
.dotted-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #d2ff37, transparent);
    transform: translateX(-100%);
    animation: flyBy 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes flyBy {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

.value {
    color: #fff;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #dedede;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.pricing-features li::before {
    content: '+';
    color: #d2ff37;
    font-weight: 700;
    font-size: 1rem;
}

/* Full Width Button Styled like standard .btn */
.btn-white-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #000;
    border: none;
    width: 100%;
    padding: 1rem 1.5rem;
    /* Match btn padding ratio but larger */
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 2rem;
    font-family: var(--font-body);
}

.btn-white-full::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    /* Black dot for white button */
    border-radius: 50%;
}

.btn-white-full:hover {
    transform: scale(1.02);
}

/* Toggle Switch Styles */
.toggle-switch {
    width: 50px;
    height: 28px;
    background: #333;
    /* Dark track */
    border-radius: 99px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* White Circle */
.toggle-switch::after {
    content: '';
    position: absolute;
    left: 4px;
    /* Default Left/Off position */
    top: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.toggle-switch.active {
    background: #39ff14;
    /* Neon Green */
}

.toggle-switch.active::after {
    transform: translateX(22px);
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-backdrop.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    padding: 0;
    border-radius: 24px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-body-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-image-col {
    display: none;
}

.modal-form-col {
    padding: 2.5rem;
    flex: 1;
}

@media (min-width: 768px) {
    .modal-body-grid {
        flex-direction: row;
        min-height: 550px;
    }

    .modal-image-col {
        display: block;
        flex: 1;
        position: relative;
        background: #000;
    }

    .modal-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
        /* Slight dim */
    }

    .image-overlay-tint {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    }
}

.modal-backdrop.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #000;
}

.no-pay-badge {
    display: inline-block;
    background: #e6ffda;
    color: #2b9348;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.modal-header h3 {
    margin-bottom: 0.5rem;
    color: #000;
}

.modal-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.booking-form .form-group {
    margin-bottom: 1.2rem;
}

.booking-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #333;
}

.booking-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.booking-form input:focus {
    border-color: #000;
}

.modal-summary {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    align-items: center;
}

.modal-summary strong {
    color: #000;
}

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

/* Footer Area CSS */
.pricing-footer-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 6rem;
}

@media (min-width: 900px) {
    .pricing-footer-area {
        grid-template-columns: 1fr 2fr 1fr;
        /* layout spacer */
        align-items: start;
    }
}

.pf-label {
    font-weight: 500;
}

.pf-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pf-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #888;
    max-width: 500px;
}

.pf-text strong {
    color: #fff;
}

.pf-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.pf-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pf-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pf-role {
    font-size: 0.8rem;
    color: #666;
}

.btn-white-sm::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

/* --- REFINED FAQ SECTION --- */
.faq-section {
    padding: 6rem 0;
    background-color: #f8f8f8;
    /* Very clean light gray */
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr 1.6fr;
        gap: 5rem;
    }

    .faq-right {
        padding-left: 0;
    }
}

.huge-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #000;
}

.faq-desc {
    color: #666;
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Reduced from 1rem */
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    letter-spacing: -0.01em;
    color: #1a1a1a;
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-open .faq-toggle-icon {
    transform: rotate(45deg);
    /* Optional: turns + into x or similar */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.faq-open .faq-answer {
    max-height: 500px;
    margin-top: 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
    max-width: 90%;
}

/* Footer (Light) */
/* New Structured Footer */
.footer {
    padding: 8rem 0 4rem;
    background-color: var(--bg-white);
    /* Matching light gray background */
    color: #000;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: flex-start;
}

.branding-col {
    flex: 1;
    min-width: 300px;
}

.footer-logo-img {
    width: 250px;
    /* Large logo in footer */
    height: auto;
    display: block;
}

.newsletter-col {
    flex: 1.2;
    min-width: 300px;
}

.newsletter-col h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.newsletter-col p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 320px;
    font-size: 0.95rem;
}

.newsletter-form {
    position: relative;
    max-width: 350px;
    display: flex;
    align-items: center;
    background: #f0f0f0;
    /* Pill container background */
    border-radius: 99px;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    /* Space for text and button */
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    background: #fff;
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    width: 100%;
    font-size: 1rem;
    outline: none;
    color: #000;
    font-weight: 500;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-btn {
    background: #d2ff37;
    /* The requested Green */
    color: #000;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    background: #bce630;
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
}

.footer-links-group {
    display: flex;
    gap: 4rem;
    flex: 1;
    min-width: 300px;
}

.footer-col a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #000;
    opacity: 1;
}

.footer-col a:hover {
    opacity: 0.6;
}

.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    align-items: flex-end;
}

.footer-contact-info {
    flex: 1;
    min-width: 250px;
}

.footer-contact-info p {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.footer-email {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-statement {
    flex: 1.5;
    min-width: 300px;
}

.footer-statement p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    max-width: 480px;
    margin: 0;
    text-align: left;
}

.footer-credits {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
    color: #666;
}

.credit-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
    color: #000;
    font-weight: 600;
}

.credit-avatar {
    width: 28px;
    height: 28px;
    background: #e0e0e0;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-statement p {
        margin: 0;
        text-align: left;
    }

    .footer-credits {
        align-items: flex-start;
    }
}

/* Footer Dark Mode Overrides */


/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }

    .hero-container {
        padding: 0;
        height: auto;
    }

    .hero-brand {
        font-size: 15vw;
        /* Scale better on small screens */
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Why Us Section */
.why-us-section {
    padding-bottom: 0;
    background-color: #f9f9f9;
}

.why-header-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}


.plus-icon-css {
    width: 20px;
    height: 20px;
    background: #0a0a0a;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-v {
    width: 2px;
    height: 8px;
    background: #fff;
    position: absolute;
}

.plus-h {
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
}

.why-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.why-title .text-dim {
    color: #888;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 900px) {
    .why-content-wrapper {
        grid-template-columns: 0.4fr 1fr;
        /* Create offset */
    }
}

.why-lead-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.6);
    /* Precise opacity from snippet */
    max-width: 600px;
    margin-bottom: 2.5rem;
    /* Reduced from 4rem */
    font-weight: 500;
}

.why-lead-text strong {
    color: rgb(10, 10, 10);
    font-weight: 600;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .why-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.stat-top-card,
.stat-bottom-card {
    background: #fff;
    border-radius: 18px;
    /* Precise From Framer */
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-top-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    min-height: auto;
}

.stat-bottom-card {
    flex: 1;
    /* Fill remaining height */
    min-height: 300px;
    /* Tall box */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-top-card:hover,
.stat-bottom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat-idx {
    font-size: 10px;
    /* Precise From Framer */
    color: #090909;
    font-family: var(--font-body);
    font-weight: 600;
    opacity: 0.5;
    align-self: flex-start;
    margin-top: 0;
}

.stat-number {
    font-size: 45px;
    /* Precise From Framer */
    font-weight: 600;
    line-height: 1;
    color: #0a0a0a;
    letter-spacing: -0.07em;
}

.stat-label-right {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    text-align: right;
    margin-bottom: 2rem;
    align-self: flex-end;
    max-width: 250px;
}

.stat-footer-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    max-width: 280px;
}

.stat-logos-row {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    align-items: center;
    filter: grayscale(1);
}

.stat-logos-row img {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.stat-logos-row img:hover {
    opacity: 1;
}

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

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

@media (min-width: 900px) {
    .why-header-grid {
        grid-template-columns: 0.4fr 1fr;
        /* Same ratio as content wrapper */
        align-items: start;
    }
}

/* Override existing margins since we are using grid gap now */
.why-header-grid .why-header-label {
    margin-bottom: 0;
}

.why-header-grid .why-title {
    margin-bottom: 0;
    margin-top: -0.5rem;
    /* Align cap height optically */
}

/* --- LET'S TALK SECTION --- */
.lets-talk-section {
    position: relative;
    background-color: #000;
    overflow: hidden;
    padding: 6rem 0;
    margin: 3px 0.6rem;
    border-radius: 2.5rem;
    /* Match other cards */
}

.lets-talk-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    /* Constrain width */
    margin: 0 auto;
}

@media (min-width: 900px) {
    .lets-talk-layout {
        grid-template-columns: 0.8fr 1.2fr;
        /* Form column smaller */
        gap: 6rem;
    }
}

/* Left Form Card */
.lt-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    /* Reduced padding */
    color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
}

.lt-brand {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: block;
    color: #000;
}

.lt-header h3 {
    font-size: 1.5rem;
    /* Smaller title */
    font-weight: 600;
    margin-bottom: 1.2rem;
    /* Tighter spacing */
    line-height: 1.2;
    color: #333;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.lt-form .form-group {
    margin-bottom: 0.8rem;
    /* Tighter groups */
}

.lt-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #000;
}

.lt-form input,
.lt-form textarea {
    width: 100%;
    background: #f5f5f5;
    border: none;
    padding: 0.75rem;
    /* Smaller fields */
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333;
    resize: none;
}

.lt-form input:focus,
.lt-form textarea:focus {
    outline: 2px solid #000;
    background: #fff;
}

.btn-black-full {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem;
    /* Smaller button */
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    transition: transform 0.2s;
}

.btn-black-full:hover {
    transform: scale(1.02);
}

.form-terms {
    font-size: 0.7rem;
    color: #888;
    margin-top: 0.8rem;
    line-height: 1.4;
}

.form-terms a {
    color: #000;
    text-decoration: underline;
}

/* Right Content */
.lt-content {
    color: #fff;
}

.lt-content .huge-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
}

.lt-desc {
    font-size: 1.5rem;
    color: #fff;
    max-width: 500px;
    line-height: 1.4;
    margin-bottom: 4rem;
}

.lt-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .lt-features {
        grid-template-columns: 1fr 1fr;
    }
}

.icon-box {
    margin-bottom: 1rem;
    display: inline-flex;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.lt-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.lt-feature p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

/* --- STUDIO (ABOUT) PAGE --- */
.studio-hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: #f9f9f9;
    /* Light grey background */
    min-height: 100vh;
}

.studio-title {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6rem;
    color: #000;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .studio-grid {
        grid-template-columns: 200px 1fr 250px;
        gap: 4rem;
        align-items: start;
    }
}

/* Column 1: Label */
.label-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
}

.plus-icon-black {
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
}

/* Column 2: Main Content */
.studio-lead {
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    /* Reduced Size */
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 750px;
    letter-spacing: -0.01em;
}

.studio-lead .text-black {
    color: #000;
}

.studio-lead .text-grey {
    color: #999;
}

.studio-trust {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.avatar-group {
    display: flex;
}

.avatar-circle {
    width: 35px;
    /* Reduced from 45px */
    height: 35px;
    border-radius: 50%;
    border: 3px solid #f9f9f9;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* New Styles for Card */
.about-card-container {
    margin-top: 4rem;
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 2rem;
    /* Buffer from edge if needed */
}

.static-hero-card {
    background: white;
    color: black;
    padding: 1.2rem;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-text p {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

@media (max-width: 900px) {
    .approach-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .approach-left {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 3rem !important;
    }

    .studio-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .studio-hero,
    .studio-what-else,
    .studio-stats-approach {
        padding: 4rem 0 !important;
    }

    .about-card-container {
        justify-content: center;
        padding-right: 0;
    }
}

/* Column 3: Side Note */
.studio-silenote {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    max-width: 220px;
}

/* Upgrade Button Header */
.btn-upgrade {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    background: #000;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    flex-direction: row-reverse;
    /* Bullet on right */
}

.btn-upgrade:hover {
    transform: scale(1.05);
}

.upgrade-dot {
    width: 8px;
    height: 8px;
    background-color: #39ff14;
    /* Brighter Neon Green */
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}