/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-2xl) 0 var(--space-xl);
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating photos */
.hero-floating {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hero-float-img {
    position: absolute;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    will-change: transform;
    pointer-events: none;
    cursor: default;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
    opacity: 0;
    animation: floatIn 0.8s forwards;
}
.hero-float-img:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

@keyframes floatIn {
    from { opacity: 0; scale: 0.85; }
    to { opacity: 1; scale: 1; }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--golden);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.hero h1 em {
    font-family: var(--font-display);
    font-style: normal;
    color: var(--golden);
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.3;
}

/* Text rotation */
.text-rotate-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    height: 1.3em;
}
.text-rotate-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-rotate-item {
    height: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--light-blue);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
    text-align: center;
}
.hero-desc strong { color: var(--off-white); font-weight: 600; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(124, 152, 179, 0.15);
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}
.hero-proof-item {
    display: flex;
    flex-direction: column;
}
.hero-proof-item strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--golden);
    letter-spacing: -0.02em;
}
.hero-proof-item span {
    font-size: 0.78rem;
    color: var(--soft-blue);
    font-weight: 500;
}
.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(124, 152, 179, 0.2);
}

/* ═══════════════════════════════════════
   LOGOS CLIENTS
   ═══════════════════════════════════════ */
.logos-section {
    padding: var(--space-xl) 0 var(--space-lg);
}
.logos-label {
    font-size: 0.85rem;
    color: var(--soft-blue);
    text-align: center;
    margin-bottom: var(--space-md);
    font-weight: 500;
}
.logo-cloud {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid rgba(124, 152, 179, 0.1);
    border-right: 1px solid rgba(124, 152, 179, 0.1);
}
@media (min-width: 768px) {
    .logo-cloud { grid-template-columns: repeat(6, 1fr); }
}
.logo-cloud::before,
.logo-cloud::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
}
.logo-cloud::before { top: -1px; border-top: 1px solid rgba(124, 152, 179, 0.1); }
.logo-cloud::after { bottom: -1px; border-bottom: 1px solid rgba(124, 152, 179, 0.1); }

.logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1.5rem;
    background: var(--midnight);
    position: relative;
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
    border-right: 1px solid rgba(124, 152, 179, 0.1);
}
.logo-cell:nth-child(3n) { border-right: none; }
@media (min-width: 768px) {
    .logo-cell { padding: 3rem 2rem; }
    .logo-cell:nth-child(3n) { border-right: 1px solid rgba(124, 152, 179, 0.1); }
    .logo-cell:nth-child(6n) { border-right: none; }
}
.logo-cell.alt {
    background: rgba(27, 73, 101, 0.08);
}
.logo-cell img {
    width: 55%;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1) opacity(0.5);
    transition: filter 0.4s, opacity 0.4s;
    pointer-events: none;
    user-select: none;
}
.logo-cell img.logo-on-white {
    filter: grayscale(1) invert(1) opacity(0.5);
    mix-blend-mode: screen;
}
.logo-cell:hover img.logo-on-white {
    filter: grayscale(1) invert(1) opacity(0.7);
}
.logo-cell:hover img {
    filter: grayscale(1) brightness(0) invert(1) opacity(0.7);
}

/* Plus icons at grid intersections */
.logo-cell .plus-icon {
    position: absolute;
    z-index: 10;
    width: 22px;
    height: 22px;
    color: rgba(249, 220, 92, 0.45);
}
.logo-cell .plus-br { right: -11px; bottom: -11px; }
.logo-cell .plus-bl { left: -11px; bottom: -11px; }

/* Last row: remove bottom border */
@media (min-width: 768px) {
    .logo-cell:nth-last-child(-n+6) { border-bottom: none; }
}
@media (max-width: 767px) {
    .logo-cloud { grid-template-columns: repeat(2, 1fr); }
    .logo-cell:nth-child(3n) { border-right: 1px solid rgba(124, 152, 179, 0.1); }
    .logo-cell:nth-child(2n) { border-right: none; }
    .logo-cell:nth-last-child(-n+2) { border-bottom: none; }
}

/* ═══════════════════════════════════════
   PROBLEM — Bento Grid
   ═══════════════════════════════════════ */
.problem {
    background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-light) 100%);
}
.problem-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: var(--space-lg);
    border-left: 1px solid rgba(124, 152, 179, 0.1);
    border-top: 1px solid rgba(124, 152, 179, 0.1);
    overflow: visible;
}
@media (min-width: 768px) {
    .problem-bento {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: auto;
    }
}

.problem-card {
    position: relative;
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
    border-right: 1px solid rgba(124, 152, 179, 0.1);
    padding: 2rem 1.5rem;
    background: var(--midnight);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: background 0.3s;
    overflow: visible;
}
.problem-card.alt {
    background: rgba(27, 73, 101, 0.08);
}

@media (min-width: 768px) {
    .problem-card { padding: 2.5rem 2rem; }
}

/* Cards with corner-plus need higher z-index than their neighbors */
.problem-card, .method-card, .offer-card, .who-card, .testimonial-card {
    z-index: auto;
}

.problem-card-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--golden);
    margin-bottom: 0.75rem;
}
.problem-card p {
    font-size: 0.92rem;
    color: var(--light-blue);
    line-height: 1.65;
}
.problem-card p strong { color: var(--off-white); }

.problem-card-illustration {
    position: relative;
    margin-top: 1.25rem;
    height: 120px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .problem-card-illustration { height: 150px; }
}
.problem-card-illustration::after {
    display: none;
}
.problem-card-illustration svg {
    width: 100%;
    height: 100%;
    opacity: 1.8;
    filter: brightness(1.6);
}

/* Grid spans desktop */
@media (min-width: 768px) {
    .pb-span-3-2 { grid-column: span 3; grid-row: span 2; }
    .pb-span-3-2r { grid-column: span 3; grid-row: span 2; }
    .pb-span-4 { grid-column: span 4; }
    .pb-span-2 { grid-column: span 2; }
    .pb-span-1 { grid-column: span 1; }
}

/* Footer heading inside the grid — no borders */
.problem-footer-cell {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 2rem;
    text-align: right;
    border: none;
}
@media (min-width: 768px) {
    .problem-footer-cell { padding: 3rem 2.5rem; }
}
.problem-footer-cell h2 {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}
.problem-footer-cell h2 em {
    font-family: var(--font-display);
    font-style: normal;
    color: var(--golden);
    font-weight: 400;
    font-size: 1.05em;
}
.problem-footer-cell .source {
    font-size: 0.78rem;
    color: var(--soft-blue);
}

/* ═══════════════════════════════════════
   WHO / SOLUTION-WHO
   ═══════════════════════════════════════ */
.who {
    position: relative;
}
.who-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    align-items: center;
}
.who-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.who-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.5) 0%, transparent 50%);
}
.who-content p {
    font-size: 1.05rem;
    color: var(--light-blue);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}
.who-content p strong { color: var(--off-white); }

.who-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: var(--space-md) 0;
    border-left: 1px solid rgba(124, 152, 179, 0.1);
    border-top: 1px solid rgba(124, 152, 179, 0.1);
}
.who-card {
    position: relative;
    background: var(--midnight);
    border-right: 1px solid rgba(124, 152, 179, 0.1);
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
    padding: 1.5rem 1.75rem;
    transition: background 0.3s;
}
.who-card:nth-child(even) {
    background: rgba(27, 73, 101, 0.08);
}
.who-card:hover {
    background: rgba(27, 73, 101, 0.12);
}
.who-card:nth-child(even):hover {
    background: rgba(27, 73, 101, 0.18);
}
.who-card-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: var(--off-white);
}
.who-card-desc {
    font-size: 0.82rem;
    color: var(--soft-blue);
    font-style: italic;
}

/* ═══════════════════════════════════════
   METHOD
   ═══════════════════════════════════════ */
.method {
    background: linear-gradient(to bottom, var(--midnight-light) 0%, var(--midnight-light) 90%, var(--midnight) 100%);
    position: relative;
    overflow-x: clip;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: var(--space-lg);
    max-width: 100%;
    overflow: visible;
}
@media (min-width: 768px) {
    .method-grid { grid-template-columns: repeat(6, 1fr); }
}

.method-card {
    position: relative;
    background: var(--midnight);
    border: 1px solid rgba(124, 152, 179, 0.1);
    margin: -1px 0 0 -1px;
    padding: 2rem 1.75rem;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
.method-card:nth-child(even) {
    background: rgba(27, 73, 101, 0.08);
}
@media (min-width: 768px) {
    .method-card { padding: 2.5rem 2rem; min-height: 280px; }
    .method-card.m-span-4 { grid-column: span 4; }
    .method-card.m-span-3 { grid-column: span 3; }
    .method-card.m-span-2 { grid-column: span 2; }
    .method-card.m-span-6 { grid-column: span 6; }
}


.method-card-letter {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soft-blue);
    margin-bottom: 1rem;
}
.method-first-letter {
    font-family: var(--font-display);
    font-size: 2.2em;
    font-weight: 400;
    line-height: 1;
    color: #F9DC5C !important;
}
.method-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.method-card p {
    font-size: 0.88rem;
    color: var(--soft-blue);
    line-height: 1.65;
}
.method-card p.method-card-letter {
    color: var(--soft-blue);
}
.method-card-result {
    font-size: 0.82rem;
    color: var(--golden);
    font-weight: 600;
    margin-top: auto;
    padding-top: 1.25rem;
}
.method-card-result::before { content: '\2192 '; }

.method-card-illustration {
    position: relative;
    margin-top: 1.5rem;
    height: 130px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .method-card-illustration { height: 160px; }
}
.method-card-illustration::after {
    display: none;
}
.method-card-illustration svg {
    width: 100%;
    height: 100%;
    opacity: 1.8;
    filter: brightness(1.6);
}

.method-source {
    font-size: 0.72rem;
    color: #9BB0C4;
    opacity: 0.8;
    margin-top: var(--space-md);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: nowrap;
}

.method-title-cell {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 2rem 2.5rem 0;
    border: none;
    background: none;
    margin: -1px 0 0 -1px;
    position: relative;
}
.method-title-cell::before { display: none; }
.method-title-cell::after { display: none; }
@media (min-width: 768px) {
    .method-title-cell { grid-column: span 3; }
}
.method-title-cell .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.method-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ═══════════════════════════════════════
   REASSURANCE / STATS
   ═══════════════════════════════════════ */
.reassurance {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
    min-height: 900px;
    display: flex;
    align-items: flex-start;
    padding-top: 8rem;
}
.reassurance-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.reassurance-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.reassurance-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--midnight) 0%, rgba(13, 27, 42, 0.75) 15%, rgba(13, 27, 42, 0.4) 35%, rgba(13, 27, 42, 0.4) 55%, rgba(17, 34, 64, 0.75) 75%, var(--midnight-light) 100%),
        linear-gradient(to right, rgba(13, 27, 42, 0.9) 0%, transparent 25%, transparent 75%, rgba(13, 27, 42, 0.9) 100%),
        rgba(13, 27, 42, 0.45);
}
.reassurance .container {
    position: relative;
    z-index: 5;
}
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
    border-left: 1px solid rgba(124, 152, 179, 0.15);
    border-top: 1px solid rgba(124, 152, 179, 0.15);
    overflow: visible;
    position: relative;
    z-index: 5;
}
@media (min-width: 768px) {
    .reassurance-grid { grid-template-columns: repeat(4, 1fr); }
}
.reassurance-card {
    position: relative;
    background: rgba(13, 27, 42, 0.82);
    border-right: 1px solid rgba(124, 152, 179, 0.15);
    border-bottom: 1px solid rgba(124, 152, 179, 0.15);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: background 0.3s;
    overflow: visible;
}
.reassurance-card:hover {
    background: rgba(13, 27, 42, 0.92);
}
.reassurance-plus {
    position: absolute;
    width: 22px;
    height: 22px;
    color: rgba(249, 220, 92, 0.45);
    z-index: 100;
    transform: translateX(-50%);
    pointer-events: none;
}

.reassurance-num {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--golden);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.reassurance-label {
    font-size: 0.78rem;
    color: var(--light-blue);
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════ */
.projects {
    background: var(--midnight-light);
    padding: var(--space-xl) 0;
}
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-lg);
    gap: var(--space-md);
    flex-wrap: wrap;
}
.projects-header .section-title {
    margin: 0;
}
.projects-header p {
    font-size: 0.9rem;
    color: var(--soft-blue);
    max-width: 380px;
    text-align: right;
    line-height: 1.6;
}
.projects-list {
    position: relative;
}
.project-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(124, 152, 179, 0.1);
    cursor: pointer;
    transition: opacity 0.3s;
}
.project-item:last-child {
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
}
.project-item:hover {
    opacity: 0.6;
}
.project-item h3 {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    transition: transform 0.3s;
}
.project-item:hover h3 {
    transform: translateX(10px);
}
.project-item-meta {
    font-size: 0.82rem;
    color: var(--soft-blue);
    transition: transform 0.3s;
    text-align: right;
    flex-shrink: 0;
    margin-left: 2rem;
}
.project-item:hover .project-item-meta {
    transform: translateX(-10px);
}
.project-item-meta span {
    display: block;
}
.project-item-meta .project-tag {
    color: var(--golden);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hover modal */
.project-modal {
    position: fixed;
    width: 350px;
    height: 220px;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: top left;
    transition: opacity 0.35s, transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.project-modal.active {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}
@media (max-width: 1024px) {
    .project-modal, .project-cursor { display: none !important; opacity: 0 !important; visibility: hidden !important; }
}
.project-modal-inner {
    position: absolute;
    width: 100%;
    transition: top 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    top: 0;
}
.project-modal-slide {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project-modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cursor dot */
.project-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--golden);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 101;
    opacity: 0;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: top left;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--midnight);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.project-cursor.active {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}

/* ═══════════════════════════════════════
   OFFERS
   ═══════════════════════════════════════ */
.offers-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}
.offers-header .section-title {
    margin: 0 auto;
}

.offers-group-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft-blue);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid rgba(124, 152, 179, 0.15);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: var(--space-xl);
    border-left: 1px solid rgba(124, 152, 179, 0.1);
    border-top: 1px solid rgba(124, 152, 179, 0.1);
    overflow: visible;
}
.offer-card {
    background: var(--midnight-light);
    border-right: 1px solid rgba(124, 152, 179, 0.1);
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
    padding: clamp(2rem, 3vw, 3rem);
    position: relative;
    transition: background 0.3s;
    overflow: visible;
}
.offer-card:nth-child(odd) {
    background: rgba(13, 27, 42, 0.6);
}
.offer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--midnight);
    background: var(--golden);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    z-index: 3;
}
.offer-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: var(--space-sm);
}
.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.offer-desc {
    font-size: 0.88rem;
    color: var(--soft-blue);
    font-style: italic;
    margin-bottom: var(--space-md);
}
.offer-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--off-white);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}
.offer-price small {
    font-size: 0.5em;
    font-weight: 500;
    color: var(--soft-blue);
}
.offer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: var(--space-md);
}
.offer-features li {
    font-size: 0.85rem;
    color: var(--light-blue);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.offer-features li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--golden);
    border-radius: 50%;
    margin-top: 0.45rem;
}
.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 12px;
    transition: all 0.3s;
}
.offer-btn.primary {
    background: var(--golden);
    color: var(--midnight);
}
.offer-btn.primary:hover {
    box-shadow: 0 8px 30px rgba(249, 220, 92, 0.3);
    transform: translateY(-1px);
}
.offer-btn.secondary {
    border: 1px solid rgba(124, 152, 179, 0.3);
    color: var(--off-white);
}
.offer-btn.secondary:hover {
    border-color: var(--golden);
    color: var(--golden);
}

/* Kit solo */
.kit-section {
    margin-top: var(--space-md);
}
.kit-card {
    background: var(--midnight-light);
    border: 1px solid rgba(124, 152, 179, 0.1);
    border-radius: 0;
    padding: clamp(2rem, 3vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
}
.kit-notes {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.kit-note {
    font-size: 0.82rem;
    color: var(--soft-blue);
}
.kit-note.positive { color: var(--golden); }
.kit-note.negative { color: var(--soft-blue); opacity: 0.7; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
    background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-light) 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 0;
    margin-top: var(--space-lg);
    border-left: 1px solid rgba(124, 152, 179, 0.1);
    border-top: 1px solid rgba(124, 152, 179, 0.1);
}
.testimonial-card {
    position: relative;
    background: var(--midnight);
    border-right: 1px solid rgba(124, 152, 179, 0.1);
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: background 0.3s;
}
.testimonial-card:hover {
    background: rgba(27, 73, 101, 0.08);
}
.testimonial-card:nth-child(even) {
    background: rgba(27, 73, 101, 0.08);
}
.testimonial-card:nth-child(even):hover {
    background: rgba(27, 73, 101, 0.15);
}
/* Asymmetric layout: card 1 large left, cards 4 & 7 wide */
.testimonial-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.testimonial-card:nth-child(4) {
    grid-column: span 2;
}
.testimonial-card:nth-child(7) {
    grid-column: span 2;
}
.testimonial-quote {
    font-size: 0.9rem;
    color: var(--light-blue);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}
.testimonial-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--golden);
    line-height: 0.5;
    display: block;
    margin-bottom: 0.75rem;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(249, 220, 92, 0.2);
    flex-shrink: 0;
}
.testimonial-info {
    flex: 1;
    min-width: 0;
}
.testimonial-author {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--off-white);
}
.testimonial-role {
    font-size: 0.72rem;
    color: var(--soft-blue);
    margin-top: 0.15rem;
}
.testimonial-linkedin {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(124, 152, 179, 0.2);
    transition: border-color 0.3s, background 0.3s;
}
.testimonial-linkedin:hover {
    border-color: rgba(249, 220, 92, 0.4);
    background: rgba(249, 220, 92, 0.08);
}
.testimonial-linkedin svg {
    width: 16px;
    height: 16px;
    fill: var(--soft-blue);
    transition: fill 0.3s;
}
.testimonial-linkedin:hover svg {
    fill: var(--golden);
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    align-items: start;
}
.about-conviction {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--golden);
    line-height: 1.35;
}
.about-text p {
    font-size: 1rem;
    color: var(--light-blue);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--off-white); }
.about-pillars {
    display: flex;
    gap: 1.5rem;
    margin-top: var(--space-md);
}
.about-pillar {
    flex: 1;
    padding: 1.25rem;
    background: rgba(27, 73, 101, 0.15);
    border: 1px solid rgba(27, 73, 101, 0.25);
    border-radius: 8px;
}
.about-pillar strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--off-white);
}
.about-pillar span {
    font-size: 0.78rem;
    color: var(--soft-blue);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
    background: var(--midnight-light);
}
.faq-grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}
.faq-items {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
}
.faq-question {
    width: 100%;
    background: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--off-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--golden); }
.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--soft-blue);
    transition: transform 0.3s, stroke 0.3s;
}
.faq-item.open .faq-question svg {
    transform: rotate(45deg);
    stroke: var(--golden);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
    padding-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--soft-blue);
    line-height: 1.7;
}
.faq-answer-inner strong { color: var(--light-blue); }

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
    text-align: center;
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 220, 92, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta .section-title {
    margin: 0 auto var(--space-sm);
    text-align: center;
}
.final-cta-sub {
    font-size: 1.1rem;
    color: var(--soft-blue);
    margin-bottom: var(--space-lg);
}

.test-block {
    max-width: 640px;
    margin: 0 auto;
    background: var(--midnight);
    border: 1px solid rgba(124, 152, 179, 0.1);
    border-radius: 0;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: left;
    position: relative;
}
.test-block h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.test-block-sub {
    font-size: 0.88rem;
    color: var(--soft-blue);
    margin-bottom: var(--space-md);
}
.test-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}
.test-list li {
    font-size: 0.88rem;
    color: var(--light-blue);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}
.test-list li::before {
    content: '\2713';
    color: var(--golden);
    font-weight: 700;
    flex-shrink: 0;
}
.test-block .btn-primary { width: 100%; justify-content: center; }
.test-note {
    font-size: 0.75rem;
    color: var(--soft-blue);
    text-align: center;
    margin-top: var(--space-sm);
    font-style: italic;
}

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */
.gallery {
    background: var(--midnight);
    border-top: 1px solid rgba(124, 152, 179, 0.1);
}
.gallery-masonry {
    columns: 3;
    column-gap: 0;
    margin-top: var(--space-lg);
    border-left: 1px solid rgba(124, 152, 179, 0.1);
    border-top: 1px solid rgba(124, 152, 179, 0.1);
}
.gallery-item {
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(124, 152, 179, 0.1);
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
}
.gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.8s;
    opacity: 0;
    transform: scale(1.05);
}
.gallery-item.in-view img {
    opacity: 1;
    transform: scale(1);
}
.gallery-item:hover img {
    transform: scale(1.04);
}
@media (max-width: 1024px) {
    .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
    .gallery-masonry { columns: 1; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — HOMEPAGE SPECIFIC
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .problem-grid,
    .who-grid,
    .about-grid,
    .faq-grid { grid-template-columns: 1fr; }

    .method-steps { grid-template-columns: 1fr; }

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

    .testimonials-grid { grid-template-columns: 1fr 1fr; border: none; }
    .testimonial-card:nth-child(1) { grid-column: span 2; grid-row: auto; }
    .testimonial-card:nth-child(4) { grid-column: span 1; }
    .testimonial-card:nth-child(7) { grid-column: span 2; }
    .testimonial-card { border-left: 1px solid rgba(124, 152, 179, 0.1); border-top: 1px solid rgba(124, 152, 179, 0.1); }

    .kit-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 8rem 0 4rem; }
    .hero-floating { display: none; }

    .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); text-align: center; }
    .text-rotate-wrapper { height: 2.6em; overflow: hidden; }
    .text-rotate-item { height: 2.6em; white-space: normal !important; }

    .hero-proof { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
    .hero-proof-item { align-items: center; }
    .hero-proof-divider { width: 40px; height: 1px; }

    .projects-header p { text-align: left; }
    .project-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .project-item-meta { margin-left: 0; text-align: left; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(4),
    .testimonial-card:nth-child(7) { grid-column: auto; grid-row: auto; }

    .about-pillars { flex-direction: column; }
    .offer-price { font-size: 1.4rem; }
    .project-item:hover { opacity: 1; }
    .project-item:hover h3 { transform: none; }
    .project-item:hover .project-item-meta { transform: none; }
}
