/* --- Variables & Theme --- */
:root {
    /* Colors */
    --bg-dark: #050509;
    --bg-card: #0a0a0f;
    --bg-card-hover: #13131f;

    --text-main: #ffffff;
    --text-muted: #a0a0b0;

    --primary: #00ff9d;
    /* Neon Green */
    --primary-glow: rgba(0, 255, 157, 0.4);
    --secondary: #00b8ff;
    /* Electric Blue */
    --secondary-glow: rgba(0, 184, 255, 0.4);

    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-glow: 0 0 20px var(--primary-glow);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* --- Typography Utilities --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--primary);
    position: relative;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-neon {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-neon:hover {
    background: #fff;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-glow {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.btn-glow:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* --- Header --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

#header.scrolled {
    background: rgba(5, 5, 9, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
}

.mobile-cta {
    text-align: center;
    width: 100%;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -50px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-trust-badges {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary);
}

/* Hero Visual (3D) */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-3d-card {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: absolute;
    transition: transform 0.1s ease-out;
}

.card-main {
    width: 100%;
    max-width: 500px;
    height: 350px;
    z-index: 2;
    transform: rotateY(-10deg) rotateX(5deg);
    overflow: hidden;
}

.mockup-window {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-content {
    flex: 1;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.skeleton-hero {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.skeleton-grid div {
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.card-floating {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-main);
    z-index: 3;
}

.card-floating i {
    font-size: 1.2rem;
}

.card-1 {
    top: 15%;
    right: 0;
    background: rgba(30, 30, 40, 0.9);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
    transform: translateZ(50px);
    animation: float 6s ease-in-out infinite;
}

.card-1 i {
    color: var(--primary);
}

.card-2 {
    bottom: 15%;
    left: -20px;
    background: rgba(30, 30, 40, 0.9);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 184, 255, 0.2);
    transform: translateZ(30px);
    animation: float 8s ease-in-out infinite 1s;
}

.card-2 i {
    color: var(--secondary);
}

/* --- Animations --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        height: 350px;
    }

    .card-main {
        transform: rotateY(0) rotateX(0);
    }
}

/* --- Sections Common --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-darker {
    background: #08080c;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Process Section --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.step-card {
    flex: 1;
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-line {
    flex: 0.5;
    height: 2px;
    background: var(--border-color);
    margin-top: 60px;
    /* Align with icon center approx */
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 1s ease;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: default;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--secondary-glow);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* --- Plans Section --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Align cards vertically */
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-featured {
    background: linear-gradient(145deg, #13131f, #0a0a0f);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 50px rgba(0, 255, 157, 0.2);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.plan-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
}

.plan-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.plan-features {
    margin-bottom: 30px;
    flex: 1;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Responsive Adjustments for new sections */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-line {
        display: none;
        /* Hide lines on mobile */
    }

    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: translateY(-10px);
    }
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

/* --- Why Me Section --- */
.why-me-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    background: rgba(0, 184, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.why-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.code-block {
    background: #1e1e2e;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.code-block::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--primary);
    border-radius: 16px;
    opacity: 0.3;
    z-index: -1;
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

pre {
    color: #a9b7c6;
    overflow-x: auto;
}

.tag {
    color: #e06c75;
}

.attr {
    color: #d19a66;
}

.val {
    color: #98c379;
}

.comment {
    color: #5c6370;
    font-style: italic;
}

.plan-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
}

.plan-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.plan-features {
    margin-bottom: 30px;
    flex: 1;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Responsive Adjustments for new sections */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-line {
        display: none;
        /* Hide lines on mobile */
    }

    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: translateY(-10px);
    }
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

/* --- Why Me Section --- */
.why-me-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    background: rgba(0, 184, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.why-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.code-block {
    background: #1e1e2e;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.code-block::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--primary);
    border-radius: 16px;
    opacity: 0.3;
    z-index: -1;
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

pre {
    color: #a9b7c6;
    overflow-x: auto;
}

.tag {
    color: #e06c75;
}

.attr {
    color: #d19a66;
}

.val {
    color: #98c379;
}

.comment {
    color: #5c6370;
    font-style: italic;
}

.func {
    color: #61afef;
}

/* --- Portfolio Section --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.portfolio-thumb {
    height: 200px;
    background: #1a1a24;
    position: relative;
    overflow: hidden;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.1);
}

/* Placeholder pattern for portfolio thumbs */
.portfolio-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2a2a35 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.portfolio-info {
    padding: 20px;
    text-align: center;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 255, 157, 0.05) 0%, transparent 70%);
}

.cta-container {
    max-width: 800px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    background: #020203;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    width: 100%;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .why-me-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-list {
        align-items: center;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .code-block {
        display: none;
        /* Hide code block on mobile to save space/complexity */
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}