:root {
    --bg-primary: #000000;
    --bg-secondary: #000000;
    --accent: #00FF88;
    --accent-rgb: 0, 255, 136;
    --text-primary: #FFFFFF;
    --text-muted: #A1A1A1;
    --border-color: #222222;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-snappy: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Custom Selection */
::selection {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Typography & Global Layout */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 8%;
}

/* Buttons & UI Interactions */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 999px;
    cursor: pointer;
}

.btn-primary {
    color: var(--bg-primary);
    background-color: var(--accent);
    border: 1px solid var(--accent);
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
}

.btn-glass {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.btn-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: translateX(-100%);
    transition: all 0.6s;
    z-index: -1;
}

.btn-glass:hover::before {
    transform: translateX(100%);
}

.btn-glass:hover {
    border-color: #00FF88;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
}

.btn-secondary {
    color: var(--text-primary);
    background-color: transparent;
    border: 1px solid var(--border-color);
    transition: var(--transition-snappy);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-primary);
    transform: translateY(102%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover::before {
    transform: translateY(0);
}

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    cursor: pointer;
}

.text-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-btn:hover {
    color: var(--accent);
}

.text-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* SECTION LABEL STYLE */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.section-label .bullet {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

/* 1. NAVIGATION BAR */
.nav-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw;
    z-index: 100;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    width: 100%;
    margin: 0 auto;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled Floating Pill State */
.nav-bar.scrolled {
    top: 1.5rem;
    width: 90%;
    max-width: 1100px;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-bar.scrolled .header-inner {
    padding: 0.8rem 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
    z-index: 2;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links-center {
    display: flex;
    gap: 3.5rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
    transition: var(--transition-snappy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-snappy);
}

/* 2. HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    background-color: var(--bg-primary);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(var(--accent-rgb), 0.08), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 1250px;
    position: relative;
    z-index: 1;
}

/* Premium Entrance Slide-Up Effect with Masks */
.hero-title-container {
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6.2vw, 5.8rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}


.hero-title .word-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.1em;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(110%);
    animation: revealWord 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .word.delayed-1 { animation-delay: 0.15s; }
.hero-title .word.delayed-2 { animation-delay: 0.3s; }
.hero-title .word.delayed-3 { animation-delay: 0.45s; }
.hero-title .word.delayed-4 { animation-delay: 0.6s; }

@keyframes revealWord {
    to {
        transform: translateY(0);
    }
}

.hero-subtext-container {
    overflow: hidden;
    margin-bottom: 3.5rem;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    max-width: 620px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    transform: translateY(100%);
    opacity: 0;
    animation: revealSubtext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes revealSubtext {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: revealActions 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

@keyframes revealActions {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
    animation: bounceSlow 2s infinite ease-in-out;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--accent);
    margin-top: 10px;
    transform-origin: top;
    animation: scaleLine 2s infinite ease-in-out;
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes scaleLine {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}
}

/* 1.5. STATS SECTION */
.stats-section {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-val {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}
/* 1.8. TRUST LOGOS SECTION */
.trust-logos-section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.trust-logos-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.trust-logos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.trust-logos-grid span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-snappy);
    cursor: default;
}

.trust-logos-grid span:hover {
    color: var(--text-primary);
    opacity: 1;
}

@media (max-width: 768px) {
    .trust-logos-grid {
        gap: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}

/* 2.5. EXPERIENCE & EDUCATION SECTION */
.experience-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.experience-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1A1A1A;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    border: 1px solid #333;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 220px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #222;
    z-index: 1;
}

.timeline-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--accent);
    height: 0;
    transition: height 0.1s ease-out;
}

.timeline-item {
    display: flex;
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    left: 215px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent);
    z-index: 2;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}

.timeline-item.active .timeline-dot {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.timeline-left {
    width: 220px;
    padding-right: 40px;
    text-align: right;
    flex-shrink: 0;
}

.timeline-date {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
}

.timeline-right {
    padding-left: 40px;
    flex-grow: 1;
    padding-top: -5px;
}

.timeline-company-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 15px;
    }
    .timeline-line {
        left: 15px;
    }
    .timeline-item {
        flex-direction: column;
    }
    .timeline-dot {
        left: 10px;
    }
    .timeline-left {
        width: 100%;
        text-align: left;
        padding-left: 45px;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    .timeline-right {
        padding-left: 45px;
    }
}

/* 3. FEATURED WORK (EDITORIAL SHOWCASE) */
.work-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.work-header {
    margin-bottom: 8rem;
    max-width: 800px;
}

.work-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
}

.work-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

/* Premium Split Column Editorial Design */
.project-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.project-row.reversed {
    grid-template-columns: 0.9fr 1.1fr;
}

.project-row.reversed .project-visual-wrapper {
    grid-column: 2;
}

.project-row.reversed .project-info {
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    padding-right: 2rem;
}

/* Immersive Project Visual Wrapper */
.project-visual-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-visual-wrapper:hover {
    border-color: var(--accent);
}

/* Mockup Browser Bar on Project Card */
.project-browser-bar {
    height: 28px;
    background-color: #141414;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
    flex-shrink: 0;
    z-index: 3;
}

.project-browser-bar .browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.project-browser-bar .browser-dot.red { background-color: #FF5F56; opacity: 0.7; }
.project-browser-bar .browser-dot.yellow { background-color: #FFBD2E; opacity: 0.7; }
.project-browser-bar .browser-dot.green { background-color: #27C93F; opacity: 0.7; }

.project-img-wrapper {
    width: 100%;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: transform 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Premium full height reveal scroll on hover */
.project-visual-wrapper:hover .project-img {
    transform: translateY(calc(-100% + 100%));
}

/* Fallback Design if image is missing */
.project-img-fallback {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(var(--accent-rgb), 0.1) 0%, transparent 60%), #111111;
    color: var(--text-primary);
    padding: 3rem;
    text-align: center;
    border-radius: 0;
    z-index: 1;
}

.project-img-fallback::before {
    content: '';
    position: absolute;
    inset: 1px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.project-img-fallback h3 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.project-img-fallback p {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
}

/* Project Info Styling */
.project-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.project-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.8rem;
}

.project-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Metrics List - Editorial Details */
.project-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    margin-bottom: 3rem;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.metric-val {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.metric-val span {
    color: var(--accent);
}

.project-metrics.list-style .metric-item {
    position: relative;
    padding-left: 1rem;
    justify-content: center;
}

.project-metrics.list-style .metric-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.project-metrics.list-style .metric-val {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}


/* 4. ABOUT SECTION */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 7rem;
    align-items: center;
}

/* Beautiful Editorial Avatar Layout */
.about-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--bg-primary);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.about-image-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-container:hover .about-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Frame overlay lines */
.about-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-top: 1px solid var(--accent);
    border-left: 1px solid var(--accent);
    pointer-events: none;
}

.about-image-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-bottom: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
    pointer-events: none;
}

/* Professional Narrative Copywriting */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 2.2rem;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.signature-line {
    width: 50px;
    height: 1px;
    background-color: var(--accent);
}

.signature-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}


/* 5. BENEFITS SECTION (WHY WORK WITH ME) */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 7rem;
}

.benefits-intro h2 {
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.benefits-intro p {
    max-width: 420px;
}

/* Table List / Accordion-Like Premium Spacers */
.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.benefit-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.benefit-num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition-snappy);
}

.benefit-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--transition-snappy);
    font-family: var(--font-heading);
}

.benefit-desc {
    max-width: 550px;
    font-size: 1rem;
    transition: var(--transition-snappy);
}

/* Hover Interaction: Shifts slightly, changes border highlight */
.benefit-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item:hover {
    padding-left: 1.5rem;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover .benefit-num {
    color: var(--accent);
}

.benefit-item:hover .benefit-title {
    color: var(--accent);
}

.benefit-item:hover .benefit-desc {
    color: var(--text-primary);
}


/* 4.5. TRUST SECTION */
.trust-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.trust-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-container .section-label {
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin-top: 2rem;
}

.trust-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 280px;
}

.trust-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover::after {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.25) 0%, transparent 70%);
}

.trust-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.15);
}

.trust-card-icon {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    position: absolute;
    top: -20px;
    right: -10px;
    z-index: -1;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover .trust-card-icon {
    color: rgba(0, 255, 136, 0.05);
    -webkit-text-stroke: 1px rgba(0, 255, 136, 0.3);
    transform: scale(1.05) translate(-10px, 10px);
}

.trust-card-title {
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    font-weight: 700;
}

.trust-card-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 90%;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-card {
        padding: 2rem;
    }
}


/* 6. CONTACT SECTION */
.contact-section {
    padding: 6rem 0 6rem 0;
    background-color: var(--bg-primary);
    position: relative;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.contact-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent);
    background-color: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.contact-cta {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1rem;
    max-width: 1100px;
    color: var(--text-primary);
}

.form-trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-trust-badges span {
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-trust-badges span:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    color: var(--accent);
    transform: translateY(-2px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    width: 100%;
    max-width: 1100px;
    text-align: left;
    margin-bottom: 6rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.contact-links-grid {
    display: grid;
    gap: 3rem;
    width: 100%;
}

.contact-link-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-primary);
}

.contact-link-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.contact-link-val {
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    transition: var(--transition-snappy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link-val span {
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-snappy);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
}

.contact-link-item:hover .contact-link-val {
    color: var(--accent);
}

.contact-link-item:hover .contact-link-val span {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
}

.footer-logo span {
    color: var(--accent);
}


/* REVEAL ON SCROLL EFFECTS (Intersection Observer) */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* MOBILE FULL SCREEN MENU (DYNAMIC NAVIGATION OVERLAY) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6.5vw, 4rem);
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    display: inline-block;
    transition: var(--transition-snappy);
}

.mobile-menu-link:hover {
    color: var(--accent);
    padding-left: 1rem;
}


/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1024px) {
    .container {
        padding: 0 6%;
    }
    
    .nav-bar {
        padding: 2.2rem 6%;
    }
    
    .project-row, .project-row.reversed {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .project-row.reversed .project-visual-wrapper {
        grid-column: 1;
    }
    
    .project-row.reversed .project-info {
        padding-right: 0;
    }
    
    .about-grid, .benefits-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .about-image-container {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links-center, .nav-right .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Toggle active state */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .work-section, .about-section, .benefits-section, .contact-section {
        padding: 5rem 0;
    }
    
    .work-grid {
        gap: 10rem;
    }
    
    .project-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 2.2rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-bottom: 4rem;
        margin-bottom: 4rem;
    }
    
    .contact-link-item {
        align-items: center;
    }
    
    .contact-links-grid {
        gap: 3rem;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

