/* =============================================
   JENNIFER DE PAULA - Light Sage & Taupe
   ============================================= */

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

:root {
    /* Core palette */
    --white: #ffffff;
    --sage: #e4e7dd;
    --sage-dark: #d5d9cd;
    --sage-light: #eef0e9;
    --taupe: #857e78;
    --taupe-dark: #6e6862;
    --taupe-light: #a09a94;

    /* Semantic */
    --bg: #ffffff;
    --bg-2: #f8f8f6;
    --bg-3: var(--sage);
    --bg-card: var(--white);
    --bg-alt: var(--sage-light);
    --text: #1a1a1a;
    --text-2: #333333;
    --text-3: #555555;
    --text-muted: var(--taupe);
    --border: #d9d9d4;
    --border-light: #e8e8e3;

    /* Fonts */
    --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-hero: 'DM Sans', 'Inter', -apple-system, sans-serif;

    /* Misc */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
    --shadow: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* --- TYPOGRAPHY --- */
.section-heading {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.section-heading em {
    font-style: italic;
}

/* Text reveal on scroll */
.text-reveal {
    background: linear-gradient(to right, var(--text) var(--reveal, 0%), var(--border) var(--reveal, 0%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: --reveal 0.05s linear;
}

.section-heading--right {
    text-align: right;
}

.section-heading--light {
    color: var(--text);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 460px;
}

/* --- BUTTON --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--text);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn:hover {
    background: var(--taupe-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--outline:hover {
    background: var(--sage-light);
    border-color: var(--taupe-light);
}

.btn--full { width: 100%; }

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    border-bottom: none;
}

.header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.08), transparent 40%, transparent 60%, rgba(0,0,0,0.08));
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img { height: 68px; }

.header__menu {
    display: flex;
    list-style: none;
    gap: 6px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
}

.header__link {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2px;
    padding: 7px 16px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.header__link:hover {
    color: var(--text);
    background: var(--white);
}

.header__cta {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: var(--sage);
    color: var(--text-2);
    border: 1px solid var(--sage-dark);
}

.header__cta:hover {
    background: var(--taupe);
    color: var(--white);
    border-color: var(--taupe);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.header__toggle span {
    width: 26px;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
}

.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* =============================================
   HERO - Skiogy Style (Light Section)
   ============================================= */
.hero {
    background: var(--bg);
    color: var(--text);
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    padding: 150px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

.hero .hero__inner {
    position: relative;
    z-index: 1;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.hero__marquee {
    border-top: none;
    padding: 0;
    margin-top: auto;
    min-width: 0;
}

/* Users block */
.hero__users {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero__users-avatars {
    display: flex;
    align-items: center;
}

.hero__users-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--sage);
    border: 2px solid var(--white);
    padding: 4px;
    animation: avatarPulse 3s ease-in-out infinite;
}

.hero__users-img:nth-child(2) { animation-delay: 0.3s; }
.hero__users-img:nth-child(3) { animation-delay: 0.6s; }
.hero__users-img:nth-child(4) { animation-delay: 0.9s; }

.hero__users-img--overlap {
    margin-left: -10px;
}

.hero__users-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-3);
}

/* Tag pill */
.hero__tag-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 28px;
}

/* Title */
.hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.6rem, 5.1vw, 4.7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    color: var(--text);
}

.hero__title-line {
    display: block;
}

.hero__title-line strong {
    font-weight: 800;
}

/* Desc */
.hero__desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--taupe);
    max-width: 420px;
    line-height: 1.7;
    margin-top: 20px;
}

/* Layout */
.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    overflow: hidden;
}

.hero__center-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero__bottom-block {}

.hero__bottom-block .hero__desc {
    padding-top: 4px;
}

.hero__bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}

/* Custom CTA button */
.hero__btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 24px 8px 8px;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    background-image: linear-gradient(var(--bg), var(--bg)), conic-gradient(from var(--border-angle), var(--taupe), var(--sage-dark), transparent 40%, transparent 60%, var(--sage-dark), var(--taupe));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: borderSpin 4s linear infinite;
}

.hero__btn-custom:hover {
    background-image: linear-gradient(#1a1a1a, #1a1a1a), conic-gradient(from var(--border-angle), var(--taupe), var(--sage-dark), transparent 40%, transparent 60%, var(--sage-dark), var(--taupe));
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero__btn-custom:hover .hero__btn-text {
    color: var(--white);
}

.hero__btn-custom:hover .hero__btn-avatar img {
    border: 2px solid rgba(255,255,255,0.2);
}

.hero__btn-custom:hover .hero__btn-status {
    border-color: #1a1a1a;
}

.hero__btn-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.hero__btn-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero__btn-status {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #34c759;
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: statusPulse 2s ease-in-out infinite;
}

.hero__btn-text {
    color: var(--text);
    letter-spacing: 0.2px;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark variant */
.hero__btn-custom--dark {
    background-image: linear-gradient(#1a1a1a, #1a1a1a), conic-gradient(from var(--border-angle), var(--taupe), var(--sage-dark), transparent 40%, transparent 60%, var(--sage-dark), var(--taupe));
}

.hero__btn-custom--dark .hero__btn-text {
    color: var(--white);
}

.hero__btn-custom--dark .hero__btn-status {
    border-color: #1a1a1a;
}

.hero__btn-custom--dark:hover {
    background-image: linear-gradient(var(--bg), var(--bg)), conic-gradient(from var(--border-angle), var(--taupe), var(--sage-dark), transparent 40%, transparent 60%, var(--sage-dark), var(--taupe));
}

.hero__btn-custom--dark:hover .hero__btn-text {
    color: var(--text);
}

.hero__btn-custom--dark:hover .hero__btn-status {
    border-color: var(--white);
}

.hero__btn-avatar img {
    transition: border 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__btn-status {
    transition: border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes borderSpin {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* Hero entrance animations */
@keyframes heroReveal {
    0% { opacity: 0; transform: translateY(18px); filter: blur(6px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroCardReveal {
    0% { opacity: 0; transform: scale(0.96) translateY(12px); filter: blur(4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes heroMarqueeReveal {
    0% { opacity: 0; mask-image: linear-gradient(90deg, transparent, transparent); }
    100% { opacity: 1; mask-image: linear-gradient(90deg, black, black); }
}

.hero__users {
    opacity: 0;
    animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero__title {
    opacity: 0;
    animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.hero__marquee {
    opacity: 0;
    animation: heroReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.hero__bottom-block {
    opacity: 0;
    animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
}

.hero__card {
    opacity: 0;
    animation: heroCardReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* Dots */
.hero__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__dot--1 { background: var(--sage); }
.hero__dot--2 { background: var(--sage-dark); }
.hero__dot--3 { background: var(--taupe-light); }

.hero__dot--scroll {
    background: var(--taupe);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.hero__dot--scroll:hover {
    background: var(--taupe-dark);
    transform: scale(1.08);
}

/* Right - Image card */
.hero__right {
    position: relative;
}

.hero__card {
    position: relative;
    background: var(--sage);
    border-radius: 20px;
    overflow: hidden;
    height: 710px;
    display: flex;
    flex-direction: column;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    flex: 1;
}

.hero__card-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(133, 126, 120, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.hero__card-text h3 {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 6px;
}

.hero__card-text p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    max-width: 280px;
}

.hero__card-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--taupe-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.hero__card-arrow:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee__track {
    display: inline-flex;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
}

.marquee__item {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--taupe);
    flex-shrink: 0;
}

.marquee__sep {
    margin: 0 24px;
    color: var(--border);
    flex-shrink: 0;
}

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

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* =============================================
   ABOUT - BENTO GRID
   ============================================= */
.about {
    padding: 140px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

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

.about .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    overflow: hidden;
}

.bento__card:hover {
    border-color: var(--taupe-light);
    box-shadow: var(--shadow-sm);
}

/* Card image - tall */
.bento__card--image {
    padding: 0;
    grid-row: span 2;
}

.bento__card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Card stat */
.bento__card--stat {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento__card--stat svg {
    color: var(--taupe);
}

.bento__stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text);
}

.bento__stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Card text */
.bento__card--text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.bento__card--text p {
    font-size: 0.92rem;
    color: var(--text-3);
    line-height: 1.7;
}

.bento__card--text strong {
    color: var(--text);
}

/* Card feature */
.bento__card--feature {
    background: var(--sage);
}

.bento__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--taupe-dark);
}

.bento__card--feature h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.bento__card--feature p {
    font-size: 0.85rem;
    color: var(--taupe-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bento__explore {
    font-size: 0.82rem;
    color: var(--taupe-dark);
    font-weight: 500;
}

.bento__explore:hover { color: var(--text); }

/* Card dark */
.bento__card--dark {
    background: var(--taupe);
    border-color: var(--taupe);
    color: var(--white);
}

.bento__card--dark h3 {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--white);
}

.bento__card--dark p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* =============================================
   SOLUTIONS
   ============================================= */
/* =============================================
   SOLUTIONS - Cards Layout
   ============================================= */
.solutions {
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.solutions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

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

.solutions__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.solutions__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.solutions__header .section-heading {
    margin-bottom: 16px;
}

.solutions__desc {
    font-size: 0.92rem;
    color: var(--taupe);
    line-height: 1.7;
}

/* Cards grid */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sol-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    position: relative;
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.06);
}

.sol-card--featured {
    background: var(--text);
    border-color: var(--text);
}

.sol-card--featured .sol-card__number,
.sol-card--featured .sol-card__title {
    color: var(--white);
}

.sol-card--featured .sol-card__desc {
    color: var(--taupe-light);
}

.sol-card--featured .sol-card__stat-num {
    color: var(--white);
}

.sol-card--featured .sol-card__stat-label {
    color: var(--taupe-light);
}

.sol-card--featured .sol-card__link {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.sol-card--featured .sol-card__link:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

/* Card header */
.sol-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.sol-card__number {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--taupe-light);
    letter-spacing: 1px;
}

.sol-card__stat {
    text-align: right;
}

.sol-card__stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text);
}

.sol-card__stat-label {
    display: block;
    font-size: 0.68rem;
    color: var(--taupe);
    margin-top: 2px;
}

/* Rating */
.sol-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
}

.sol-card__rating svg {
    color: #f5c542;
}

.sol-card__rating span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

/* Card content */
.sol-card__title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.sol-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

/* Stats row (featured card) */
.sol-card__stats-row {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Card footer */
.sol-card__footer {
    margin-top: 28px;
}

.sol-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--taupe);
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.sol-card__link svg {
    transition: transform 0.3s ease;
}

.sol-card__link:hover {
    color: var(--white);
    background: var(--text);
    border-color: var(--text);
}

.sol-card__link:hover svg {
    transform: translate(2px, -2px);
}

/* CTA bottom */
.solutions__cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services {
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background: var(--sage-light);
}

.services__header {
    text-align: center;
    margin-bottom: 72px;
}

.services__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.services__header .section-heading {
    margin-bottom: 0;
}

/* Grid 2x4 */
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.services__item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    overflow: hidden;
}

.services__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    border-color: var(--sage-dark);
}

.services__item--highlight {
    background: var(--text);
    border-color: var(--text);
}

.services__item--highlight .services__item-number {
    color: var(--taupe-light);
}

.services__item--highlight .services__item-title {
    color: var(--white);
}

.services__item--highlight .services__item-desc {
    color: var(--taupe-light);
}

.services__item--highlight .services__item-arrow {
    color: var(--white);
    border-color: rgba(255,255,255,0.15);
}

.services__item--highlight:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.services__item--highlight .services__item-arrow:hover {
    background: var(--white);
    color: var(--text);
}

/* Item top */
.services__item-top {
    margin-bottom: 16px;
}

.services__item-number {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--taupe-light);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.services__item-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.services__item-desc {
    font-size: 0.82rem;
    color: var(--taupe);
    line-height: 1.6;
    flex: 1;
}

/* Arrow */
.services__item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--taupe);
    margin-top: 20px;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.services__item:hover .services__item-arrow {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.services__item:hover .services__item-arrow svg {
    transform: translate(1px, -1px);
}

.services__item-arrow svg {
    transition: transform 0.3s ease;
}

/* =============================================
   CASES
   ============================================= */
.cases {
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.cases__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 72px;
}

.cases__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.cases__header .section-heading {
    margin-bottom: 16px;
}

.cases__desc {
    font-size: 0.92rem;
    color: var(--taupe);
    line-height: 1.7;
}

/* Grid */
.cases__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card */
.case-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 24px 32px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    position: relative;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.06);
    border-color: var(--sage-dark);
}

.case-card__icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.case-card:hover .case-card__icon {
    transform: scale(1.08);
}

.case-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-card__content {
    flex: 1;
}

.case-card__name {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.case-card__desc {
    font-size: 0.8rem;
    color: var(--taupe);
    line-height: 1.5;
}

.case-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--taupe);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.case-card:hover .case-card__arrow {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.case-card:hover .case-card__arrow svg {
    transform: translate(1px, -1px);
}

.case-card__arrow svg {
    transition: transform 0.3s ease;
}

/* Bottom CTA */
.cases__bottom {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

/* =============================================
   PRESS
   ============================================= */
.press {
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
}

.press__header {
    margin-bottom: 72px;
}

.press__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.press__header .section-heading {
    margin-bottom: 0;
}

.press__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.press-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: var(--transition);
}

.press-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--taupe-light);
}

.press-card img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.press-card:hover img { filter: grayscale(0%); }

/* =============================================
   BLOG
   ============================================= */
.blog {
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

/* Blog header */
.blog__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 72px;
}

.blog__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.blog__header-left .section-heading {
    margin-bottom: 0;
}

.blog__header-right {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.blog__desc {
    font-size: 0.88rem;
    color: var(--taupe);
    line-height: 1.7;
}

/* Blog grid */
.blog__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.blog-card--featured {
    grid-row: span 2;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--text);
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.06);
    border-color: var(--sage-dark);
}

.blog-card__image {
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card--featured .blog-card__image {
    flex: 1;
    min-height: 280px;
}

.blog-card:not(.blog-card--featured) .blog-card__image {
    height: 160px;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card--featured .blog-card__content {
    padding: 32px;
}

.blog-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--taupe);
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    align-self: flex-start;
}

.blog-card__title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.blog-card--featured .blog-card__title {
    font-size: 1.3rem;
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--taupe);
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.blog-card__cta svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__cta {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.blog-card:hover .blog-card__cta svg {
    transform: translate(2px, -2px);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.testimonials__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 72px;
}

.testimonials__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.testimonials__header-left .section-heading {
    margin-bottom: 0;
}

.testimonials__header-right {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.testimonials__desc {
    font-size: 0.88rem;
    color: var(--taupe);
    line-height: 1.7;
}

/* Video testimonials */
.testimonials__videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.testimonial-video {
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-video:hover {
    transform: translateY(-4px);
}

.testimonial-video__placeholder {
    position: relative;
    background: var(--sage);
    aspect-ratio: 9 / 12;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
}

.testimonial-video__play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-video__play svg {
    margin-left: 3px;
}

.testimonial-video:hover .testimonial-video__play {
    transform: scale(1.1);
    background: var(--text);
    color: var(--white);
}

.testimonial-video__card {
    padding: 16px 0;
}

.testimonial-video__quote {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 14px;
}

.testimonial-video__info {
    display: flex;
    flex-direction: column;
}

.testimonial-video__info strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-video__info span {
    font-size: 0.72rem;
    color: var(--taupe);
}

/* Legacy card styles kept for avatar */
.testimonial-card {
    background: var(--sage-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card__text {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sage);
    border: 1px solid var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--taupe-dark);
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-card__author span {
    font-size: 0.78rem;
    color: var(--taupe);
}

.testimonial-card--image {
    padding: 0;
    overflow: hidden;
}

.testimonial-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

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

/* Top: headline left + desc/CTA right */
.contact__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 64px;
}

.contact__top-left {
    flex: 1;
}

.contact__top-right {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
}

.contact__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.contact__headline .section-heading {
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 0.92rem;
    color: var(--taupe);
    line-height: 1.7;
}

/* Contact cards grid */
.contact__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 28px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.contact__card:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.contact__card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--taupe);
    transition: all 0.35s ease;
}

.contact__card:hover .contact__card-icon {
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.contact__card strong {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact__card span {
    font-size: 0.78rem;
    color: var(--taupe);
    line-height: 1.5;
    transition: color 0.35s ease;
}

.contact__card:hover span {
    color: rgba(255,255,255,0.6);
}

/* Modal */
.contact__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.contact__modal.active {
    display: flex;
}

.contact__modal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: heroReveal 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact__modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--taupe);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.contact__modal-close:hover {
    color: var(--text);
}

.contact__modal-title {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--taupe-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--taupe);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(133,126,120,0.1);
}

.contact-form textarea { resize: vertical; min-height: 80px; }

.contact-form .btn {
    margin-top: 6px;
    padding: 16px;
    font-size: 0.9rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 0;
    background: #0a0a0a;
    color: var(--white);
}

/* Top: logo + nav */
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer__nav {
    display: flex;
    gap: 32px;
}

.footer__nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--white);
}

/* Columns */
.footer__columns {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0;
}

.footer__col-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer__contact-block .footer__email {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 12px;
    transition: opacity 0.3s ease;
}

.footer__contact-block .footer__email:hover {
    opacity: 0.7;
}

.footer__address {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer__col a {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer__col a:hover {
    color: var(--white);
}

/* Bottom */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer__bottom p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer__credit-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__credit-link:hover {
    color: var(--white);
}

/* =============================================
   INNER PAGES - Header always visible
   ============================================= */
.header--inner {
    top: 0 !important;
    opacity: 1 !important;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
}

/* =============================================
   PAGE HERO (blog listing, etc.)
   ============================================= */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}

.page-hero__content {
    max-width: 640px;
}

.page-hero__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.page-hero__title {
    font-family: var(--font-hero);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 20px;
}

.page-hero__title em {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

.page-hero__desc {
    font-size: 1rem;
    color: var(--taupe);
    line-height: 1.7;
    max-width: 480px;
    text-wrap: balance;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page {
    padding: 80px 0 120px;
    background: var(--white);
}

.about-page__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--border);
}

.about-page__image {
    border-radius: 20px;
    overflow: hidden;
}

.about-page__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-page__intro--reverse .about-page__text {
    order: -1;
}

.about-page__text h2 {
    margin-bottom: 24px;
}

.about-page__text p {
    font-size: 1.05rem;
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-page__text p strong {
    color: var(--text);
    font-weight: 600;
}

.about-page__credentials {
    margin-bottom: 100px;
}

.about-page__credentials h2 {
    margin-bottom: 48px;
}

.about-page__credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-page__credential {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page__credential:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.about-page__credential-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sage);
    color: var(--text);
    margin-bottom: 20px;
}

.about-page__credential h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-page__credential p {
    font-size: 0.9rem;
    color: var(--taupe);
    line-height: 1.6;
}

.about-page__cta {
    text-align: center;
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.about-page__cta h2 {
    margin-bottom: 16px;
}

.about-page__cta p {
    font-size: 1.05rem;
    color: var(--taupe);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-page__cta .btn--primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--text);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-page__cta .btn--primary:hover {
    background: var(--taupe-dark);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .about-page__intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-page__intro--reverse .about-page__text {
        order: 0;
    }
    .about-page__credentials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* =============================================
   CASES PAGE
   ============================================= */
.cases-page {
    padding: 80px 0 120px;
    background: var(--white);
}

.cases-page__filters {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cases-page__filter {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--taupe);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-page__filter:hover {
    border-color: var(--taupe-dark);
    color: var(--text);
}

.cases-page__filter.active {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.cases-page__section {
    margin-bottom: 64px;
}

.cases-page__section-title {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.cases-page__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cases-page__card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cases-page__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.cases-page__card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases-page__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases-page__card h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.cases-page__card p {
    font-size: 0.8rem;
    color: var(--taupe);
    line-height: 1.5;
    text-wrap: balance;
}

.cases-page__cta {
    text-align: center;
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.cases-page__cta h2 {
    margin-bottom: 16px;
}

.cases-page__cta p {
    font-size: 1.05rem;
    color: var(--taupe);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cases-page__cta .btn--primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--text);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cases-page__cta .btn--primary:hover {
    background: var(--taupe-dark);
    transform: translateY(-2px);
}

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

@media (max-width: 600px) {
    .cases-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   BLOG LISTING PAGE
   ============================================= */
.blog-listing {
    padding: 80px 0 120px;
    background: var(--white);
}

/* Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.blog-filter {
    padding: 8px 20px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--taupe);
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter:hover {
    border-color: var(--taupe);
    color: var(--text);
}

.blog-filter.active {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* Listing grid */
.blog-listing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 64px;
}

.blog-listing__grid .blog-card--featured {
    grid-row: span 2;
}

/* Blog card meta */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--taupe-light);
    margin-bottom: 14px;
    margin-top: auto;
}

/* Load more */
.blog-listing__more {
    display: flex;
    justify-content: center;
}

.blog-listing__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-listing__more-btn:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* =============================================
   POST PAGE
   ============================================= */
.post {
    padding: 140px 0 100px;
    background: var(--white);
}

/* Breadcrumb */
.post__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
    font-size: 0.8rem;
    color: var(--taupe-light);
}

.post__breadcrumb a {
    color: var(--taupe);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post__breadcrumb a:hover {
    color: var(--text);
}

.post__breadcrumb svg {
    color: var(--border);
}

/* Post header */
.post__header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.post__header .blog-card__tag {
    margin-bottom: 24px;
}

.post__title {
    font-family: var(--font-hero);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 32px;
}

/* Post meta */
.post__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

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

.post__author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.post__author div {
    text-align: left;
}

.post__author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.post__author span {
    font-size: 0.75rem;
    color: var(--taupe);
}

.post__info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--taupe);
}

/* Cover image */
.post__cover {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 56px;
    max-height: 480px;
}

.post__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Post body */
.post__body {
    max-width: 720px;
    margin: 0 auto;
}

.post__body .post__lead {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text-2);
    margin-bottom: 40px;
    font-weight: 400;
}

.post__body h2 {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 48px 0 16px;
    letter-spacing: -0.02em;
}

.post__body p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-3);
    margin-bottom: 20px;
}

.post__body blockquote {
    margin: 40px 0;
    padding: 32px 36px;
    border-left: 3px solid var(--text);
    background: var(--bg-2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post__body blockquote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-2);
    margin-bottom: 0;
    line-height: 1.7;
}

.post__body figure {
    margin: 40px 0;
}

.post__body figure img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

.post__body figcaption {
    font-size: 0.78rem;
    color: var(--taupe);
    text-align: center;
    margin-top: 12px;
}

/* Share */
.post__share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.post__share > span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--taupe);
}

.post__share-links {
    display: flex;
    gap: 10px;
}

.post__share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--taupe);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post__share-btn:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* Author box */
.post__author-box {
    max-width: 720px;
    margin: 56px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.post__author-box-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post__author-box-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.post__author-box-info p {
    font-size: 0.85rem;
    color: var(--taupe);
    line-height: 1.7;
    margin-bottom: 16px;
}

.post__author-box-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.post__author-box-link:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* Related posts */
.post__related {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid var(--border);
}

.post__related-title {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.post__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__left { min-height: auto; text-align: center; align-items: center; }
    .hero__tag-pill { min-width: auto; }
    .hero__desc { margin: 0 auto; padding-top: 24px; }
    .hero__bottom { justify-content: center; }
    .hero__card { min-height: 400px; }
    .hero__right { margin-top: 32px; }

    .bento { grid-template-columns: 1fr 1fr; }
    .bento__card--image { grid-row: span 1; max-height: 400px; }

    .solutions__grid { grid-template-columns: 1fr 1fr; }
    .sol-card--featured { grid-column: 1 / -1; }
    .sol-card--featured .sol-card__stats-row { gap: 40px; }
    .section-heading--right { text-align: left; }

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

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

    .press__grid { grid-template-columns: repeat(3, 1fr); }

    .blog__header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .blog__header-right { max-width: 100%; }
    .blog__grid { grid-template-columns: 1fr; }
    .blog-card--featured { grid-row: span 1; }

    .blog-listing__grid { grid-template-columns: 1fr; }
    .blog-listing__grid .blog-card--featured { grid-row: span 1; }

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

    .testimonials__header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .testimonials__header-right { max-width: 100%; }
    .testimonials__videos { grid-template-columns: 1fr 1fr; }
    .testimonials__quote { padding: 32px 24px; }

    .footer__columns { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__contact-block { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .header {
        top: -100px;
        opacity: 0;
        transition: top 0.4s ease, opacity 0.4s ease, background 0.3s ease;
    }

    .header.scrolled {
        top: 0;
        opacity: 1;
    }

    .header::after {
        background: rgba(0,0,0,0.06);
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0;
        transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__nav.open { right: 0; }

    .header__menu {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        background: none;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .header__link {
        font-family: var(--font-hero);
        font-size: 1.8rem;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: var(--text);
        padding: 10px 0;
        transition: opacity 0.3s ease;
    }

    .header__link:hover {
        opacity: 0.5;
    }

    .header__cta { display: none; }
    .header__toggle { display: flex; z-index: 1001; }

    .hero { padding: 48px 0 40px; min-height: auto; }
    .hero__users {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 16px;
    }
    .hero__users { justify-content: center; }
    .hero__users-img { width: 30px; height: 30px; }
    .hero__users-text { font-size: 0.75rem; }
    .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero__title-line { display: block; }
    .hero__marquee { margin-top: 28px; }
    .hero__card {
        min-height: auto;
        height: auto;
        background: none;
        border-radius: 16px;
    }
    .hero__image {
        border-radius: 16px;
        aspect-ratio: 3 / 4;
    }
    .hero__card-text h3 { font-size: 1rem; }
    .hero__dots { display: none; }

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

    .solutions__grid { grid-template-columns: 1fr; }
    .sol-card--featured { grid-column: auto; }

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

    .about, .solutions, .services, .cases, .press, .blog, .testimonials, .contact {
        padding: 80px 0;
    }

    .section-heading {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .contact__top {
        flex-direction: column;
        gap: 32px;
    }

    .contact__top-right {
        flex: 1;
    }

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

    .testimonials__videos {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
    }

    .testimonials__videos::-webkit-scrollbar {
        display: none;
    }

    .testimonial-video {
        min-width: 220px;
        max-width: 220px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .testimonial-video__placeholder {
        aspect-ratio: 3 / 4;
    }

    .page-hero { padding: 120px 0 60px; }
    .blog-listing { padding: 60px 0 80px; }

    .post { padding: 100px 0 80px; }
    .post__meta { flex-direction: column; gap: 16px; }
    .post__author-box { flex-direction: column; }
    .post__related-grid { grid-template-columns: 1fr; }

    .footer__top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .footer__marquee-track span {
        font-size: 2.5rem;
    }

    .footer__columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cases__grid { grid-template-columns: 1fr; }
    .press__grid { grid-template-columns: 1fr; }
    .stat-pill { width: 100%; }
    .hero__stats { width: 100%; }
    .services__grid { grid-template-columns: 1fr; }

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