/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --bg-dark: #050506;
    --bg-light: #ffffff;
    --bg-soft: #f5f7fa;

    --text-on-dark: #ffffff;
    --text-on-light: #101828;
    --text-muted: #888888;

    --accent: #00E0FF;
    /* Primary Cyan */
    --accent-light: #A3E8FF;
    /* Light Cyan for hovers */
    --accent-lighter: #E0F7FF;
    /* Very light Cyan */
    --accent-dark: #004751;
    /* Dark Teal */

    /* Typography */
    --font-main: "Google Sans Flex", sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 80px;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 22px;
    /* Figma Radius */
    --radius-lg: 40px;
    --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-on-dark);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =========================================
   2. UTILITIES & LAYOUT
   ========================================= */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        width: 100% !important;
        padding-left: 36px !important;
        padding-right: 36px !important;
        box-sizing: border-box !important;
    }
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-on-light);
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* Typography Helpers */
.eyebrow,
.eyebrow-dark {
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.eyebrow {
    color: var(--accent-cyan);
}

.eyebrow-accent {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.eyebrow-dark {
    color: var(--accent-dark);
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.14);
    transition: width 0.35s ease;
    z-index: -1;
    border-radius: inherit;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--bg-light);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 224, 255, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-on-dark);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--text-on-dark);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-on-dark);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--text-on-light);
}

.btn-outline-dark:hover {
    background-color: var(--text-on-light);
    color: var(--bg-light);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--bg-dark);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-accent:hover {
    filter: brightness(1.05);
}

/* =========================================
   3. HEADER / NAVBAR (FINAL)
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.1rem 0;

    /* Frosted glass background */
    background: rgba(8, 8, 10, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--text-on-dark);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .site-header {
        background: rgba(8, 8, 10, 0.72);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.logo-img {
    height: 18px;
    width: auto;
    display: block;
}

/* menu centralizado */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    opacity: 0.82;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 10px;
    transition: opacity 160ms ease;
}

.main-nav a:hover {
    opacity: 1;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -6px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 600px) {
    .main-nav {
        display: none;
    }
}

/* =========================================
   4. HERO
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;

    /* Background with Image and Dark Overlay */
    background: linear-gradient(rgba(5, 5, 6, 0.72), rgba(5, 5, 6, 0.72)),
        url('./assets/bg-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(0, 224, 255, 0.08);
    /* Dark transparent green */
    border: 1px solid rgba(0, 224, 255, 0.15);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-on-dark);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-status .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    display: inline-block;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    max-width: 1200px;
    /* Increased to prevent premature wrapping on web */
    font-variation-settings: "wght" 500, "opsz" 100;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    opacity: 0.82;
    margin-bottom: 3.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.hero-features span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.hero-features span::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="7" cy="7" r="2.5" fill="%2300E0FF"/></svg>');
    background-size: contain;
}

@media (max-width: 768px) {
    .site-header .btn {
        display: none;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .hero-status {
        font-size: 0.6rem;
        padding: 6px 12px;
        margin-bottom: 1.5rem;
        gap: 8px;
        white-space: nowrap;
        display: inline-flex;
        width: fit-content;
    }

    .hero h1 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }

    .hero p {
        margin-left: 0;
        margin-bottom: 2rem;
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.5;
    }

    .hero-actions {
        justify-content: flex-start;
        width: 100%;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .hero-features span {
        font-size: 0.8rem;
    }
}

/* =========================================
   MANIFESTO
   ========================================= */
.manifesto {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.manifesto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.manifesto-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.manifesto-card {
    background: #0d0d0e;
    padding: 3.5rem 4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto-card p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    padding-right: 3.5rem;
    /* Ensure space for the top-right icon */
}

.manifesto-card .badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.manifesto-card .card-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--accent);
}

.manifesto-card .card-icon svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 900px) {
    .manifesto-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .manifesto-card {
        padding: 2.8rem 2.2rem;
    }

    .manifesto-card p {
        padding-right: 2.5rem;
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .manifesto-card .card-icon {
        top: 1.5rem;
        right: 1.5rem;
    }

    .manifesto-card .card-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* =========================================
   5. PROJECTS (FINAL)
   ========================================= */
.projects-section {
    background: var(--bg-dark);
    padding: 120px 0;
}

.projects-header {
    margin-bottom: 5rem;
}

.projects-header .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

.projects-header .section-subtitle {
    opacity: 0.6;
    font-size: 1.1rem;
    max-width: 600px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 5rem;
}

.project-card {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.project-media {
    width: 100%;
    aspect-ratio: 16 / 15;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    margin-bottom: 1.5rem;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-media img {
    transform: scale(1.05);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-meta h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-on-dark);
}

.project-meta span {
    font-size: 0.85rem;
    opacity: 0.4;
    font-weight: 300;
}

.project-category {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 400;
}

.projects-action {
    display: flex;
    justify-content: center;
}

.projects-action .btn {
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    padding: 1rem 2.5rem;
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   6. LEADERSHIP (light)
   ========================================= */
.leadership {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0 !important;
    }
}

.leadership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.leadership-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3.5rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.leader-profile {
    border: none;
    padding: 0;
}

.leader-info {
    margin-bottom: 1.5rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.leader-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

.leader-profile p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.leader-tags {
    display: flex;
    gap: 1.5rem;
}

.leader-tags span {
    font-size: 0.85rem;
    opacity: 0.5;
    position: relative;
    padding-left: 1.25rem;
}

.leader-tags span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.leadership-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.image-overlay .status {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-overlay .status::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.image-overlay .quote {
    font-family: serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .leadership {
        padding: 80px 0;
    }

    .leadership-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .leadership-content h2 {
        margin-bottom: 2rem;
    }

    .leader-profile p {
        margin-bottom: 2rem;
    }
}

/* =========================================
   7. PLANS (light SaaS)
   ========================================= */
.plans-section {
    padding: 120px 0;
    background-color: #fafafa;
    /* Light background for pricing */
    color: var(--text-on-light);
}

.plans-header {
    text-align: center;
    margin-bottom: 5rem;
}

.plans-header h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.plans-header p {
    font-size: 1.15rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: var(--bg-light);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.plan-card.featured {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.plan-badge {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.plan-top {
    margin-bottom: 2.5rem;
}

.plan-icon {
    margin-bottom: 1.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
}

.plan-icon svg {
    width: 32px;
    height: 32px;
}

.plan-top h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-top p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.5;
}

.plan-benefits {
    flex: 1;
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.plan-benefits li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
    opacity: 0.85;
}

.plan-benefits li::before {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 6L7.5 12L4.5 9" stroke="%2300E0FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
}

.plan-footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.plan-price {
    font-size: 1rem;
    opacity: 0.6;
}

.plan-price span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-on-light);
    opacity: 1;
}

.plan-card.featured .plan-price span {
    color: var(--text-on-dark);
}

.plan-footer .btn {
    width: 100%;
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.btn-dark:hover {
    background: #111;
}

.plans-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.4;
}

@media (max-width: 1000px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   8. WHY US (light)
   ========================================= */
.why-us {
    padding: 120px 0;
    background: #fff;
    color: var(--text-on-light);
}

.why-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.comparison-side,
.comparison-card {
    padding: 3rem;
}

.comparison-side {
    opacity: 0.5;
}

.comparison-card {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 14px;
}

.comparison-list li.negative::before {
    content: "✕";
    color: #ff4444;
    font-weight: bold;
    font-size: 0.9rem;
}

.comparison-list li.positive::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 900px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .comparison-side,
    .comparison-card {
        padding: 2rem;
    }
}

/* =========================================
   9. PROCESS (light)
   ========================================= */
.process {
    padding: 120px 0;
    background: #fff;
    color: var(--text-on-light);
}

.process-header {
    margin-bottom: 6rem;
}

.process-header .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.process-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease,
        box-shadow 0.3s ease;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 15px var(--accent), inset 0 0 10px var(--accent);
}

.process-indicator.is-active {
    opacity: 1;
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-step.active .number {
    border-color: var(--accent);
    color: var(--bg-dark);
    background: var(--accent);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition);
    opacity: 0.5;
}

.process-step .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #888;
    transition: var(--transition);
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition);
    opacity: 0.5;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .process {
        padding: 80px 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .process-step {
        text-align: left;
    }

    .process-timeline::before {
        display: none;
    }
}

/* =========================================
   10. FOOTER
   ========================================= */
.site-footer {
    padding: 120px 0 60px;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta-card {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 100px 4rem;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.footer-cta-card h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.footer-cta-card p {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.footer-cta-card .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-cta-card .btn-light {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.footer-cta-card .btn-light:hover {
    background: #1a1a1e;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-info .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.5;
    max-width: 300px;
}

.footer-meta {
    text-align: right;
}

.footer-social {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-content: flex-end;
}

.footer-social a {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.6;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent-dark);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .footer-cta-card {
        padding: 4rem 2rem;
        text-align: left;
        border-radius: 30px;
    }

    .footer-cta-card h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-cta-card p {
        margin-left: 0;
        margin-bottom: 2.5rem;
        font-size: 1.1rem;
    }

    .footer-cta-card .cta-actions {
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 3rem;
        text-align: left;
    }

    .footer-info p {
        margin: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-meta {
        text-align: center;
    }
}

/* =========================================
   11. ANIMATIONS (PREMIUM FADE-UP)
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    filter: blur(2px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform, filter;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

@media (max-width: 768px) {
    .fade-up {
        transform: translate3d(0, 15px, 0);
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        padding: 18px 24px;
        justify-content: center;
    }

    .pricing-header,
    .projects-header,
    .process-header,
    .why-us-header,
    .section-header {
        text-align: left;
        margin-bottom: 3rem;
    }

    .section-title {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .br-desktop {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}