:root {
    --accent: #7bc51a;
    --accent-2: #9fdd33;
    --accent-deep: #588f12;
    --grad: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 100%);

    --ink: #0b1220;
    --ink-soft: #111a2e;
    --text: #1e293b;
    --muted: #5c6675;
    --line: #e7eaf0;
    --surface: #ffffff;
    --surface-2: #f5f8f0;
    --surface-3: #ebf4dd;

    --font-display: 'Archivo', 'Segoe UI', Arial, sans-serif;
    --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

    --radius: 20px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 8px rgba(11, 18, 32, 0.06);
    --shadow-md: 0 12px 32px rgba(11, 18, 32, 0.10);
    --shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.16);
    --shadow-accent: 0 12px 30px rgba(123, 197, 26, 0.35);

    --transition-bezier: cubic-bezier(0.165, 0.84, 0.44, 1);

    --primary: var(--accent-2);
    --primary-dark: var(--accent);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text);
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
}

img {
    max-width: 100%;
}

::selection {
    background: var(--accent);
    color: #fff;
}

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent-2), var(--accent));
    border-radius: 8px;
    border: 2px solid var(--surface-2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section headers */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 1.1rem;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--muted);
    font-size: 1.06rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.1rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--transition-bezier), box-shadow 0.3s var(--transition-bezier);
}

.btn-primary {
    background: var(--grad);
    color: var(--ink);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(123, 197, 26, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn i { font-size: 1.05em; }


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.7rem 4%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
    will-change: transform;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(11, 18, 32, 0.08);
}

.about-hero-page .navbar {
    background: transparent;
    box-shadow: none;
}

.about-hero-page .navbar .nav-link {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.about-hero-page .navbar .hamburger span { background: #fff; }
.about-hero-page .nav-logo { filter: brightness(0) invert(1); }

.about-hero-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(11, 18, 32, 0.08);
}

.about-hero-page .navbar.scrolled .nav-link {
    color: var(--ink);
    text-shadow: none;
}

.about-hero-page .navbar.scrolled .hamburger span { background: var(--ink); }
.about-hero-page .navbar.scrolled .nav-logo { filter: brightness(0.2); }

.nav-brand {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.nav-logo {
    width: 200px;
    transition: filter 0.35s ease;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.55rem 1.1rem;
    position: relative;
    border-radius: 100px;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--grad);
    transition: width 0.4s var(--transition-bezier);
    border-radius: 4px;
}

.nav-link:hover::before { width: 55%; }

.nav-link.active { color: var(--accent-deep); }
.nav-link.active::before { width: 55%; }

/* Hamburger */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--ink);
    position: absolute;
    left: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:first-child { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 72%; }
.hamburger span:last-child { bottom: 0; }

.hamburger.active span:first-child { transform: rotate(45deg); top: 49%; }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:last-child { transform: rotate(-45deg); bottom: 49%; }

.about-hero-page .navbar:not(.scrolled) .hamburger span { background: #fff; }

@media (max-width: 860px) {
    .hamburger { display: block; margin-right: 1rem; }

    .navbar {
        background: rgba(11, 18, 32, 0.35);
        backdrop-filter: blur(12px);
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        flex-direction: column;
        width: 100%;
        max-height: calc(100vh - 72px);
        text-align: center;
        padding: 2.5rem 0;
        transition: right 0.35s var(--transition-bezier);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        overflow-y: auto;
        display: flex;
        gap: 0.3rem;
        background: rgba(11, 18, 32, 0.96);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        padding: 1rem;
        width: 80%;
        margin: 0 auto;
        color: #fff !important;
        font-size: 1.05rem;
    }

    .nav-menu.active .nav-link.active {
        color: var(--accent-2) !important;
    }

    .nav-brand { margin-left: 0.5rem; }
    .nav-logo { width: 170px; }

    .about-hero-page .nav-menu .nav-link { color: #fff !important; }
}

.hero { position: relative; }

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    touch-action: pan-y;
    background: var(--ink);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s ease-out;
    will-change: opacity;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.55) 0%, rgba(11, 18, 32, 0.35) 45%, rgba(11, 18, 32, 0.75) 100%);
    z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.slide.active img {
    animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    width: 92%;
    max-width: 900px;
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1.4rem;
    opacity: 0;
}

.slide-eyebrow::before,
.slide-eyebrow::after {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--grad);
}

.slide-content h2 {
    font-size: clamp(2.4rem, 6.5vw, 4.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
}

.slide-content p {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0 auto 2.2rem;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

.slide.active .slide-eyebrow { animation: riseIn 0.7s 0.15s var(--transition-bezier) forwards; }
.slide.active h2 { animation: riseIn 0.7s 0.3s var(--transition-bezier) forwards; }
.slide.active p { animation: riseIn 0.7s 0.45s var(--transition-bezier) forwards; }
.slide.active .hero-actions { animation: riseIn 0.7s 0.6s var(--transition-bezier) forwards; }

@keyframes riseIn {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slider controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.5rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: all 0.35s var(--transition-bezier);
    opacity: 0.85;
}

.slider-btn:hover {
    background: var(--grad);
    color: var(--ink);
    border-color: transparent;
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

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

.prev { left: 2rem; }
.next { right: 2rem; }

.dots-container {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 12px 26px;
    background: rgba(11, 18, 32, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.dot {
    width: 26px;
    height: 6px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.35s var(--transition-bezier);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot:hover::before,
.dot.active::before { opacity: 1; }

.dot.active { width: 44px; }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 34px;
    right: 3rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.scroll-hint::after {
    content: '';
    width: 2px;
    height: 46px;
    background: linear-gradient(var(--accent-2), transparent);
    animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.55); opacity: 0.5; }
}

@media (max-width: 860px) {
    .slider-btn { display: none !important; }
    .scroll-hint { display: none; }
    .slider { cursor: grab; }
    .slider:active { cursor: grabbing; }
}


.stats-band {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 4.5rem 2rem;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(123, 197, 26, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.stats-band .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0.5rem 1rem;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.12);
}

.stat-item .stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-item .stat-value .suffix {
    color: var(--accent-2);
    font-size: 0.7em;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-top: 0.4rem;
}

@media (max-width: 992px) {
    .stats-band .stats-container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
    .stat-item:nth-child(3)::before { display: none; }
}

@media (max-width: 480px) {
    .stats-band { padding: 3.5rem 1.2rem; }
}


.who-we-are {
    padding: 7rem 2rem;
    background: var(--surface);
    overflow: hidden;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-text { font-size: 1.05rem; color: var(--muted); }

.about-text h2 {
    font-size: clamp(2rem, 3.6vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 1.4rem;
}

.about-text h2 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--accent-deep), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p { margin-bottom: 1.3rem; }

.achievements {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.achievements li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievements li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.achievements li i {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grad);
    color: var(--ink);
    font-size: 0.9rem;
}

.about-cta { margin-top: 2.2rem; }

/* Image side */
.about-image {
    position: relative;
    border-radius: var(--radius);
    height: 560px;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: auto -18px -18px auto;
    width: 65%;
    height: 65%;
    border-radius: var(--radius);
    background:
        radial-gradient(circle, rgba(123, 197, 26, 0.6) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 0;
}

.about-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 28px;
    left: -34px;
    z-index: 2;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 1.3rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-badge .num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    max-width: 110px;
}

@media (max-width: 992px) {
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { order: -1; height: 420px; }
    .experience-badge { left: 20px; }
}

@media (max-width: 560px) {
    .who-we-are { padding: 5rem 1.2rem; }
    .achievements { grid-template-columns: 1fr; }
    .about-image { height: 340px; }
    .experience-badge { padding: 1rem 1.2rem; }
    .experience-badge .num { font-size: 2rem; }
}


.what-we-do {
    padding: 7rem 2rem;
    background: var(--surface-2);
    overflow: hidden;
    position: relative;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.service-box {
    background: var(--surface);
    padding: 2.4rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--transition-bezier), box-shadow 0.35s var(--transition-bezier), border-color 0.35s ease;
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-bezier);
}

.service-box:hover,
.service-box.hover-active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-box:hover::after,
.service-box.hover-active::after { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--surface-3);
    color: var(--accent-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--transition-bezier);
}

.service-box:hover .service-icon {
    background: var(--grad);
    color: var(--ink);
    transform: scale(1.06) rotate(-4deg);
}

.service-box h3 {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-box p {
    color: var(--muted);
    font-size: 0.97rem;
    flex-grow: 1;
}

@media (max-width: 560px) {
    .what-we-do { padding: 5rem 1.2rem; }
}


.projects-section {
    padding: 7rem 2rem;
    background: var(--surface);
    overflow: hidden;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--transition-bezier), box-shadow 0.35s var(--transition-bezier);
}

.project-card:hover,
.project-card.hover-active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-bezier);
}

.project-card:hover .project-media img { transform: scale(1.07); }

.project-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11, 18, 32, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-media::after { opacity: 1; }

.project-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(11, 18, 32, 0.72);
    color: var(--accent-2);
    backdrop-filter: blur(6px);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.project-info {
    padding: 1.6rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.project-info p {
    color: var(--muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
}

.project-technologies span {
    display: inline-block;
    padding: 0.32rem 0.85rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-technologies span:hover {
    background: var(--grad);
    border-color: transparent;
    color: var(--ink);
    transform: translateY(-2px);
}

@media (max-width: 560px) {
    .projects-section { padding: 5rem 1.2rem; }
}


.testimonials {
    padding: 7rem 2rem;
    background: var(--surface-2);
    overflow: hidden;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--transition-bezier), box-shadow 0.35s var(--transition-bezier);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .quote-mark {
    font-family: Georgia, serif;
    font-size: 4.2rem;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 2.6rem;
    display: block;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 1.6rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.testimonial-author .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author .name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.3;
}

.testimonial-author .role {
    color: var(--muted);
    font-size: 0.83rem;
}

@media (max-width: 560px) {
    .testimonials { padding: 5rem 1.2rem; }
}


.work-with-us {
    position: relative;
    min-height: 480px;
    background:
        linear-gradient(rgba(11, 18, 32, 0.82), rgba(11, 18, 32, 0.82)),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
}

.work-with-us::before {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(159, 221, 51, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.work-with-us-content {
    max-width: 760px;
    color: #fff;
    z-index: 1;
}

.work-with-us .eyebrow { color: var(--accent-2); }

.work-with-us h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.4rem;
}

.work-with-us p {
    font-size: 1.12rem;
    margin-bottom: 2.4rem;
    color: rgba(255, 255, 255, 0.82);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.6rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
    background: var(--grad);
    border-radius: 100px;
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s var(--transition-bezier), box-shadow 0.3s var(--transition-bezier);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(123, 197, 26, 0.45);
}


.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(123, 197, 26, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.footer-divider {
    height: 4px;
    background: var(--grad);
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr;
    gap: 3rem;
    padding: 4.5rem 2rem 3rem;
    align-items: flex-start;
    position: relative;
}

.footer-brand { display: flex; flex-direction: column; gap: 1.2rem; }

.footer-logo {
    width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.footer h3 {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 3px;
    background: var(--grad);
    border-radius: 2px;
}

.footer-info { text-align: left; }

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.contact-item span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
}

.contact-item span i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-2);
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-2);
    padding-left: 4px;
}

.footer-social { text-align: left; }

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s var(--transition-bezier);
}

.social-link i { font-size: 1.15rem; }

.social-link:hover {
    background: var(--grad);
    border-color: transparent;
    color: var(--ink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.footer-bottom {
    text-align: center;
    padding: 1.6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    position: relative;
}

.made-by {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
}

.made-by i { color: var(--accent); margin-right: 3px; }
.made-by strong { color: rgba(255, 255, 255, 0.6); font-weight: 600; }

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 3.5rem 1.5rem 2.5rem;
    }

    .footer-brand { align-items: center; }
    .footer-tagline { max-width: 420px; }
    .footer h3 { padding-bottom: 0.7rem; }
    .footer h3::after { left: 50%; transform: translateX(-50%); }
    .contact-item span { justify-content: center; }
    .footer-links { align-items: center; }
    .social-links { justify-content: center; }
}


.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1), transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1), transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1), transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active,
.reveal-right.active { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }


.about-hero {
    height: 62vh;
    min-height: 440px;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0.6) 0%, rgba(11, 18, 32, 0.75) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 800px;
}

.about-hero-content .eyebrow {
    color: var(--accent-2);
    margin-bottom: 1.2rem;
}

.about-hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.about-hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
}

/* Story */
.about.section {
    padding: 7rem 2rem;
    background: var(--surface);
    overflow: hidden;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 560px;
    width: 100%;
}

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

.inner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.our-story {
    padding: 2.4rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.our-story h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-deep);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.our-story h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.our-story p {
    font-size: 1.02rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.our-story ul {
    list-style: none;
    margin: 1.6rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.our-story ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.our-story ul li i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grad);
    color: var(--ink);
    font-size: 0.9rem;
}

/* Statistics section (about page) */
.statistics-section {
    padding: 6.5rem 2rem;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -140px;
    left: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(159, 221, 51, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.stats-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--grad);
    border-radius: 2px;
}

.stats-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    margin: 2.2rem auto 4rem;
    font-size: 1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2.6rem 1.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--transition-bezier), border-color 0.35s ease, background 0.35s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(159, 221, 51, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.stat-box i {
    font-size: 2.2rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.stat-box .counter {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0.4rem 0;
    line-height: 1.1;
}

.stat-box h3 {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
}

@media (max-width: 992px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .stats-container { grid-template-columns: 1fr; }
    .statistics-section { padding: 5rem 1.2rem; }
}

/* Team */
.team-new {
    padding: 7rem 2rem;
    background: var(--surface-2);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--grad);
    border-radius: 2px;
}

.section-title p {
    color: var(--muted);
    max-width: 640px;
    margin: 2rem auto 0;
}

.members-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-new .member {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    padding: 2.4rem 1.8rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.35s var(--transition-bezier), box-shadow 0.35s var(--transition-bezier);
}

.team-new .member:hover,
.team-new .member.hover-active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-new .member-img {
    position: relative;
    width: 210px;
    height: 210px;
    margin: 0 auto 1.8rem;
    border-radius: 50%;
    overflow: hidden;
    outline: 4px solid var(--surface-3);
    outline-offset: 4px;
    transition: outline-color 0.35s ease;
}

.team-new .member:hover .member-img { outline-color: var(--accent-2); }

.team-new .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-new .member-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-new .member:hover .member-img::before { opacity: 1; }

.team-new .social {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-new .member:hover .social {
    top: 50%;
    opacity: 1;
}

.team-new .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.team-new .social a:hover {
    transform: translateY(-4px);
    color: var(--accent-2);
}

.team-new .member-info { padding: 0; }

.team-new .member-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-new .member-info span {
    display: block;
    color: var(--accent-deep);
    margin-bottom: 0.9rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.team-new .member-info p {
    color: var(--muted);
    font-size: 0.94rem;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .members-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 700px) {
    .members-container { grid-template-columns: 1fr; max-width: 400px; }
    .team-new { padding: 5rem 1.2rem; }
    .team-new .member-img { width: 180px; height: 180px; }
}

@media (max-width: 992px) {
    .row { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img { order: -1; height: 380px; }
    .about.section { padding: 5rem 1.5rem; }
}

@media (max-width: 560px) {
    .about-img { height: 300px; }
    .our-story { padding: 1.8rem; }
    .about.section { padding: 4rem 1.2rem; }
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
