:root {
    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #fffbeb;
    /* Light warm background if needed, or keep #f8fafc */
    --accent-primary: #ea580c;
    /* Modern Orange */
    --accent-glow: rgba(234, 88, 12, 0.15);
    --secondary-cyan: #f97316;
    /* Lighter Orange for gradient */
    --secondary-cyan-glow: rgba(249, 115, 22, 0.1);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-accent: #ea580c;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    overflow-x: clip;
    cursor: none;
    /* Hide default cursor for custom cursor */
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    inset: -100px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    opacity: 0.6;
}

/* Custom Cursor */
.cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--secondary-cyan-glow);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, transform 0.1s;
}

/* Layout Utilities */
.section-spacing {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Components - Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--secondary-cyan));
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px var(--secondary-cyan-glow);
    transform: translateY(-2px);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 40px;
    z-index: 100;
    transition: var(--transition-smooth);
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(15, 23, 42, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    color: var(--accent-primary);
}

.lang-sep {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--accent-primary);
}

/* Base Styles */
.tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.emphasis {
    background: linear-gradient(to right, var(--accent-primary), var(--secondary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Scroll Revel Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(50px) rotate(var(--rot, 0deg));
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0) rotate(var(--rot, 0deg));
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
    border-radius: 50%;
}

.shape-3 {
    width: 150px;
    height: 100px;
    top: 15%;
    right: 10%;
    animation-delay: 1s;
    border-radius: 30px;
}

.cloud-wrapper {
    opacity: 0.85;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.06));
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
}

.cloud-part {
    position: absolute;
    background: #ffffff;
}

.p-base {
    width: 160px;
    height: 60px;
    border-radius: 50px;
    bottom: 0;
    left: 0;
}

.p-1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    bottom: 25px;
    left: 20px;
}

.p-2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    bottom: 15px;
    right: 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    padding: 20px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-num,
.stat-plus {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-plus {
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
    font-weight: 500;
}

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-inline: auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.glass-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 0 0 20px var(--accent-glow) inset;
}

.glass-card:hover::after {
    transform: rotate(45deg) translateY(100%);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-row.reverse .service-content {
    order: 2;
}

.service-row.reverse .service-visual {
    order: 1;
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.service-visual {
    height: 350px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
}

.service-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.5;
}

@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
    }

    .service-row.reverse .service-content {
        order: 1;
    }

    .service-row.reverse .service-visual {
        order: 2;
    }
}

/* Process Section */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.process-timeline::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    flex-shrink: 0;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--accent-glow);
}

.process-connector {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--accent-primary), transparent);
    margin-top: 30px;
    min-width: 50px;
    opacity: 0.5;
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-connector {
        width: 2px;
        height: 50px;
        background: linear-gradient(to bottom, var(--accent-primary), transparent);
        margin: 0;
        min-width: auto;
    }

    .process-step {
        width: 100%;
        max-width: 300px;
    }
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
    border-radius: 30px;
    align-items: center;
}

.about-desc {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 200px;
    height: 200px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(45deg, var(--accent-primary), var(--secondary-cyan));
    animation: morph 8s ease-in-out infinite;
    opacity: 0.8;
    filter: blur(20px);
}

.shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--secondary-cyan), var(--accent-primary));
    animation: morph 10s ease-in-out infinite reverse;
    opacity: 0.6;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}

/* Final CTA Section */
.cta-section {
    text-align: center;
}

.cta-box {
    padding: 80px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    width: 95vw;
    max-width: 1800px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.reviews-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-wrapper {
    padding: 40px;
    border-radius: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-glow);
}

textarea.form-control {
    resize: none;
    overflow: hidden;
}

.submit-btn {
    grid-column: 1 / -1;
    margin-top: 10px;
    width: 100%;
    padding: 15px;
}

.form-message {
    grid-column: 1 / -1;
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
}

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

    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* Tooltip Styles */
.label-with-icon {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.info-tooltip-wrapper {
    position: relative;
    display: inline-flex;
}

.info-icon {
    background: var(--glass-border);
    color: var(--text-secondary);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: help;
    transition: var(--transition-smooth);
}

.info-icon:hover {
    background: var(--accent-primary);
    color: white;
}

.info-tooltip-content {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--text-secondary); /* A lighter dark gray than text-primary */
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    width: 260px;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 100;
    text-align: left;
    font-weight: normal;
}

.info-tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--text-secondary) transparent transparent transparent;
}

.info-tooltip-wrapper:hover .info-tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 5% 20px;
    background: var(--bg-primary);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-desc {
    margin-top: 15px;
    max-width: 100%;
    white-space: nowrap;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.footer-links a,
.footer-social a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Animated Mockup Showcase */
.showcase-wrapper { position: relative; max-width: 1000px; margin: 80px auto 0; padding: 20px; display: flex; justify-content: center; align-items: center; }
.mockup-img { width: 100%; max-width: 800px; height: auto; border-radius: 20px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); z-index: 10; position: relative; }
.sideblock { position: absolute; z-index: 20; padding: 15px; border-radius: 16px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.4); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); opacity: 0; transform: translateY(30px) scale(0.9); transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: none; }
.sideblock.active { opacity: 1; transform: translateY(0) scale(1); }
@keyframes continuous-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.sideblock.active { animation: continuous-float 6s ease-in-out infinite; }
.pos-top-left { top: 10%; left: -8%; width: 240px; transition-delay: 0.1s; animation-delay: 0.1s; }
.pos-mid-left { top: 50%; left: -15%; width: 260px; transform: translateY(-50%) translateY(30px) scale(0.9); transition-delay: 0.3s; animation-delay: 0.3s; }
.pos-mid-left.active { transform: translateY(-50%) scale(1); animation: continuous-float 5s ease-in-out infinite; }
.pos-bottom-left { bottom: 15%; left: -5%; width: 220px; transition-delay: 0.5s; animation-delay: 0.5s; }
.pos-top-right { top: 5%; right: -8%; width: 200px; transition-delay: 0.2s; animation-delay: 0.2s; }
.pos-mid-right { top: 40%; right: -15%; width: 220px; transition-delay: 0.4s; animation-delay: 0.4s; }
.pos-bottom-right { bottom: 10%; right: -10%; width: 180px; transition-delay: 0.6s; animation-delay: 0.6s; }
.sb-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sb-indicator { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-primary); box-shadow: 0 0 8px var(--accent-glow); }
.sb-title { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.sb-chart { height: 60px; margin-bottom: 10px; overflow: visible; }
.sb-stats { display: flex; justify-content: space-between; align-items: flex-end; }
.sb-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); display: block; }
.sb-stat-label { font-size: 0.75rem; color: var(--text-secondary); }
.sb-nav-preview { display: flex; gap: 10px; margin-bottom: 15px; border-bottom: 1px solid var(--glass-border); padding-bottom: 8px; }
.sb-nav-item { font-size: 0.75rem; color: var(--text-secondary); cursor: pointer; }
.sb-nav-item.active { color: var(--accent-primary); font-weight: 600; border-bottom: 2px solid var(--accent-primary); margin-bottom: -9px; }
.sb-input-mockup { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; height: 30px; display: flex; align-items: center; padding: 0 10px; }
.sb-input { height: 4px; width: 60%; background: rgba(0,0,0,0.1); border-radius: 2px; }
.sb-skeleton-img { width: 100%; height: 80px; background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.05)); border-radius: 10px; margin-bottom: 10px; }
.sb-skeleton-img.tall { height: 120px; }
.sb-skeleton-text { height: 8px; width: 100%; background: rgba(0,0,0,0.05); border-radius: 4px; margin-bottom: 6px; }
.sb-skeleton-text.short { width: 60%; }
.sb-circle-chart { width: 80px; height: 80px; border-radius: 50%; background: conic-gradient(var(--accent-primary) 0% 40%, var(--secondary-cyan) 40% 75%, #e2e8f0 75% 100%); margin: 0 auto 15px; position: relative; }
.pie-inner { position: absolute; top: 50%; left: 50%; height: 50px; width: 50px; background: white; border-radius: 50%; transform: translate(-50%, -50%); }
.sb-legend { display: flex; flex-direction: column; gap: 5px; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--text-secondary); }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot.d1 { background: var(--accent-primary); }
.dot.d2 { background: var(--secondary-cyan); }
.dot.d3 { background: #e2e8f0; }
.sb-loader-wrap { display: flex; flex-direction: column; gap: 8px; }
.sb-loading-text { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }
.sb-loader-bar { width: 100%; height: 6px; background: rgba(0,0,0,0.05); border-radius: 3px; overflow: hidden; }
.sb-loader-fill { width: 60%; height: 100%; background: linear-gradient(90deg, var(--accent-primary), var(--secondary-cyan)); border-radius: 3px; animation: loading 2s ease-in-out infinite; }
@keyframes loading { 0% { width: 0%; } 50% { width: 70%; } 100% { width: 100%; opacity: 0; } }
.sb-btn-mockup { background: linear-gradient(135deg, var(--accent-primary), var(--secondary-cyan)); color: white; text-align: center; padding: 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
@media (max-width: 900px) { 
    .showcase-wrapper { 
        padding: 15px; 
        top: 15vh !important;
    } 
    .sideblock { 
        display: none; 
    } 
}

@media (max-width: 600px) {
    .showcase-wrapper {
        padding: 5px;
        top: 20vh !important;
    }
}

/* --- 3D Sticky Scroll Animation --- */

/* Contain the sticky element so it doesn't bleed over the next section */
#process {
    isolation: isolate;
}
.sticky-tall-container {
    height: 300vh;
    position: relative;
    width: 100%;
}
@media (max-width: 600px) {
    .sticky-tall-container {
        height: 200vh; /* Shorter scroll distance on mobile */
    }
}
.showcase-wrapper {
    position: sticky !important;
    top: 15vh;
    max-width: 1200px;
    margin: 100px auto 0 !important;
    padding: 30px;
    width: 100%; /* Ensure it spans the width */
}
/* Canvas: no mask — we crop the black bars directly in JS when drawing */
#scroll-canvas {
    max-width: 1000px !important;
    width: 100% !important;
    max-height: 70vh !important;  /* CRITICAL: Prevents bottom of laptop cut off on shorter screens */
    object-fit: contain !important;
    height: auto !important;
    display: block;
    margin: 0 auto; /* Center the canvas */
}
/* Scroll-synced loader bar */
.sb-loader-fill.scroll-synced {
    animation: none !important;
    transition: width 0.12s ease-out;
    width: 0%;
}


/* Client Reviews */
.reviews-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.review-card { padding: 30px 40px; border-radius: 20px; display: flex; flex-direction: column; gap: 15px; position: relative; overflow: hidden; min-height: 180px; justify-content: center; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
.floating-anim { animation: float-review 6s ease-in-out infinite; }
@keyframes float-review {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.review-card::before { content: '"'; position: absolute; top: -10px; right: 10px; font-size: 6rem; color: rgba(37, 99, 235, 0.05); font-family: 'Playfair Display', serif; line-height: 1; z-index: 0; }
.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; position: relative; z-index: 1; }
.review-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; flex-grow: 1; position: relative; z-index: 1; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); border-top: 1px solid var(--glass-border); padding-top: 15px; position: relative; z-index: 1; }
@media (max-width: 768px) { .reviews-wrapper { grid-template-columns: 1fr; } }
/* From Uiverse.io by marcelodolza - ADAPTED FOR OFG WEBWORKS */ 
.graph-scene {
    position: absolute;
    top: 20%;
    left: 8%;
    transform: scale(0.65);
    z-index: 15;
}

.graph-scene .grid {
  --radius: 38px;
  --perspective: 800px;
  --width: 280px;

  position: absolute;
  left: 0;
  right: 0;
  top: -2.5rem;
  bottom: -2.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.graph-scene .grid .area {
  position: relative;
  z-index: 1;
}
.graph-scene .glow,
.graph-scene .glow-in1,
.graph-scene .glow-in2,
.graph-scene .glow-out1,
.graph-scene .glow-out2 {
  position: absolute;
  overflow: hidden;
  border-radius: inherit;
  filter: brightness(1.5);
  pointer-events: none;
}
.graph-scene .glow::before,
.graph-scene .glow-in1::before,
.graph-scene .glow-in2::before,
.graph-scene .glow-out1::before,
.graph-scene .glow-out2::before {
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  content: "";
  transition: transform 1.5s ease;
}
.graph-scene .glow::before {
  z-index: -2;
  background: conic-gradient(
    #b52f2f 0%, transparent 20%, #cf8030 50%, black 60%, transparent 80%, #b52f2f 100%
  );
}
.graph-scene .glow-in1::before {
  background: conic-gradient(
    from 0turn at 50% 30%, #b52f2f 12%, transparent 17%, transparent 90%, #b52f2f 100%
  );
}
.graph-scene .glow-in2::before {
  background: conic-gradient(
    from 0turn at 45% 60%, transparent 30%, #cf8030 55%, transparent 60%
  );
}
.graph-scene .glow {
  filter: blur(18px); inset: 5px; opacity: 0.5; z-index: 3;
}
.graph-scene .glow-in1,
.graph-scene .glow-in2 {
  filter: blur(50px); inset: -15px; opacity: 0.5;
}
.graph-scene .glow-in2 {
  opacity: 0.2;
}
.graph-scene .glow-out1 {
  inset: -1px; z-index: 1; opacity: 0.5;
}
.graph-scene .glow-out2 {
  inset: 6px; opacity: 1;
}
.graph-scene .glow-out2 {
  transform: translateZ(10px); border-radius: calc(var(--radius) * 0.8);
}
.graph-scene .glow-out1::before,
.graph-scene .glow-out2::before {
  background: conic-gradient(
    #b52f2f 0%, transparent 10%, transparent 35%, #cf8030 50%, transparent 60%, transparent 90%, #b52f2f 100%
  );
}

.graph-scene .wrap:hover .glow::before,
.graph-scene .wrap:hover .glow-in1::before,
.graph-scene .wrap:hover .glow-in2::before,
.graph-scene .wrap:hover .glow-out1::before,
.graph-scene .wrap:hover .glow-out2::before {
  transform: translate(-50%, -50%) rotate(410deg);
}
.graph-scene .wrap {
  display: flex;
  align-items: center;
  justify-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 9;
  border-radius: var(--radius);
}
.graph-scene .wrap::before {
  box-shadow: 0 60px 140px 30px rgba(0, 0, 0, 0.8), 0 -60px 120px rgba(102, 106, 135, 0.4);
  background: rgba(0, 0, 0, 0.4);
  position: absolute; content: ""; inset: 8px; filter: blur(5px); border-radius: 50px;
}

.graph-scene .card {
  padding: 7px; border-radius: inherit;
}
.graph-scene .card,
.graph-scene .glare::before {
  transform-style: preserve-3d; will-change: transform;
}
.graph-scene .wrap:hover .card {
  transform: perspective(var(--perspective)) rotateX(0) rotateY(0) scale3d(1, 1, 1);
}

.graph-scene .card-bg {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(to bottom, #1e212b 40%, #0b0c11 100%);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.7), inset 0 0 3px rgba(255, 255, 255, 0.1), inset 0 29px 5px -31px white;
  z-index: 2;
}

.graph-scene .card-content {
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1), inset 0 0 70px #2e303c, inset 40px 70px 30px -20px rgba(0, 0, 0, 0.3), inset 0 30px 5px -30px rgba(255, 255, 255, 0.7), inset 0 -3px 2px -2px white;
  background: linear-gradient(to bottom, #201c29 40%, #37374b 100%);
  padding: 20px 28px 0 28px; border-radius: calc(var(--radius) * 0.8);
  transform-style: preserve-3d; transform: translateZ(10px); position: relative; z-index: 3;
}
.graph-scene .card,
.graph-scene .card-content,
.graph-scene .glare::before {
  transition: 2s cubic-bezier(0.03, 1, 0.5, 1);
}

.graph-scene header {
  line-height: 20px; margin-bottom: 3px; position: relative; transform: translateZ(30px); transform-style: preserve-3d; color: rgba(255, 255, 255, 0.6); transition: all 0.3s ease;
}
.graph-scene header .title { font-size: 12px; }
.graph-scene header .views { font-size: 20px; font-weight: 700; display: flex; align-items: center; max-width: 50%; }
.graph-scene header .icon {
  border-radius: 50%; font-size: 24px; padding: 2px 0 0 0; width: 40px; height: 40px; position: absolute; right: -6px; top: 0px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 1px 2px rgba(250, 187, 15, 0.7), 0 -3px 2px 5px rgba(0, 0, 0, 0.3), 0 0 1px 3px black, 0 3px 3px 2px #ff98a8;
  transform-style: preserve-3d; transition: all 0.3s ease;
}

.graph-scene header .icon::before, .graph-scene header .icon::after {
  content: ""; position: absolute; inset: 1px; border-radius: 50%; box-shadow: 0 0 1px 2px #fabb0f; transition: all 0.3s ease; opacity: 0; pointer-events: none;
}
.graph-scene header .icon:hover::before, .graph-scene header .icon:hover::after { animation: ring 1.5s ease infinite; }
.graph-scene header .icon:hover::after { animation-delay: 750ms; }
.graph-scene header .icon svg { display: block; animation: heart 1.5s linear infinite; pointer-events: none; }
.graph-scene header .icon:hover svg { animation-duration: 0.8s; }
.graph-scene header .icon:hover { background-color: #1e191e; }
.graph-scene footer:hover, .graph-scene header .views:hover .number { color: white; }
.graph-scene header span[data-label] { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; z-index: 10; top: 0; }
.graph-scene header span[data-label]::before, .graph-scene header span[data-label]::after { content: attr(data-label); transition: all 0.2s ease; }
.graph-scene header span[data-label]::before { left: 0; position: absolute; transform: translateY(-20px); color: white; }
.graph-scene header .views:hover span[data-label]::before { transform: translateY(0px); }
.graph-scene header .views:hover span[data-label]::after { transform: translateY(20px); }

.graph-scene .number { text-align: right; overflow: hidden; display: flex; width: 64px; }
.graph-scene .number::before { position: absolute; bottom: 0; left: 14px; content: ","; }
.graph-scene .number > div { display: grid; width: 12px; height: 20px; line-height: 20px; margin-right: 1px; text-align: center; animation: units ease 3s forwards; }
.graph-scene .number > div:nth-child(2) { margin-left: 7px; }
.graph-scene header .views:hover .number > div { animation: none; }

.graph-scene .chart { width: var(--width); }
.graph-scene .chart svg { display: block; width: 100%; overflow: visible; }
.graph-scene .chart svg line { animation: lines 5s ease calc(1s + var(--i) * 0.05s) infinite; opacity: 0; stroke: rgba(255, 255, 255, 0.5); filter: drop-shadow(0 -4px 1px rgba(0, 0, 0, 0.7)); }

.graph-scene footer { font-size: 10px; font-weight: 500; display: flex; transform: translateZ(30px) translateY(-3px); transition: all 0.3s ease; transform-style: preserve-3d; margin: -10px -10px 0 -10px; }
.graph-scene footer span { width: 100%; display: block; animation: labels 5s ease calc(1s + var(--i) * 0.1s) infinite; opacity: 0; }
.graph-scene footer span::before { transition: all 0.2s ease; content: attr(data-label); display: block; text-align: center; font-weight: 600; width: 100%; padding: 15px 0; pointer-events: none; color: rgba(255, 255, 255, 0.6); }
.graph-scene footer span:hover::before { color: white; transform: translateY(-5px) scale(1.3); text-shadow: 0 7px 3px rgba(0, 0, 0, 0.3); }

.graph-scene .path1-g { transform: translateY(-3px); }
.graph-scene .path1, .graph-scene .path2 { stroke-dasharray: 0 510; stroke-dashoffset: 1; animation: path 5s ease infinite 1s; }
.graph-scene .path1:nth-child(2), .graph-scene .path2:nth-child(2) { transform: translateY(5px); }

.graph-scene .glare { position: absolute; overflow: hidden; border-radius: inherit; filter: blur(10px); inset: 5px; opacity: 0.5; pointer-events: none; }
.graph-scene .glare::before { content: ""; position: absolute; top: 50%; left: 50%; background: white; filter: blur(60px); border-radius: 50%; width: 100px; height: 100px; transform: translate(-50%, -50%); opacity: 0; }

.graph-scene .area:nth-child(1):hover ~ .wrap .glare::before { transform: translate(-200%, -200%); opacity: 0.7; }
.graph-scene .area:nth-child(2):hover ~ .wrap .glare::before { transform: translate(-120%, -200%) scaleX(1.2); opacity: 0.5; }
.graph-scene .area:nth-child(3):hover ~ .wrap .glare::before { transform: translate(-50%, -200%) scaleX(1.5); opacity: 0.5; background-color: #ffc2c2; }
.graph-scene .area:nth-child(4):hover ~ .wrap .glare::before { transform: translate(30%, -200%) scaleX(1.2); opacity: 0.5; background-color: #ff9393; }
.graph-scene .area:nth-child(5):hover ~ .wrap .glare::before { transform: translate(110%, -200%); opacity: 0.7; background-color: #ff5e5e; }
.graph-scene .area:nth-child(6):hover ~ .wrap .glare::before { transform: translate(-230%, -50%) scaleY(1.2); opacity: 0.7; background-color: #fffca6; }
.graph-scene .area:nth-child(7):hover ~ .wrap .glare::before { transform: translate(-200%, -50%); opacity: 0.5; background-color: #fffca6; }
.graph-scene .area:nth-child(8):hover ~ .wrap .glare::before { filter: blur(100px); }
.graph-scene .area:nth-child(9):hover ~ .wrap .glare::before { transform: translate(110%, -50%); opacity: 0.5; background-color: #ff9393; }
.graph-scene .area:nth-child(10):hover ~ .wrap .glare::before { transform: translate(140%, -50%) scaleY(1.2); opacity: 0.7; background-color: #ff9393; }
.graph-scene .area:nth-child(11):hover ~ .wrap .glare::before { transform: translate(-200%, 100%); opacity: 0.7; background-color: #fffa5e; }
.graph-scene .area:nth-child(12):hover ~ .wrap .glare::before { transform: translate(-120%, 100%) scaleX(1.2); opacity: 0.5; background-color: #fffca6; }
.graph-scene .area:nth-child(13):hover ~ .wrap .glare::before { transform: translate(-50%, 100%) scaleX(1.5); opacity: 0.5; background-color: #fffdce; }
.graph-scene .area:nth-child(14):hover ~ .wrap .glare::before { transform: translate(30%, 100%) scaleX(1.2); opacity: 0.5; }
.graph-scene .area:nth-child(15):hover ~ .wrap .glare::before { transform: translate(110%, 100%); opacity: 0.7; }

.graph-scene .area:nth-child(1):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(-15deg) rotateY(15deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(2):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(-15deg) rotateY(7deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(3):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(-15deg) rotateY(0) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(4):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(-15deg) rotateY(-7deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(5):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(-15deg) rotateY(-15deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(6):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(0) rotateY(15deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(7):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(0) rotateY(7deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(8):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(0) rotateY(0) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(9):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(0) rotateY(-7deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(10):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(0) rotateY(-15deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(11):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(15deg) rotateY(15deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(12):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(15deg) rotateY(7deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(13):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(15deg) rotateY(0) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(14):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(15deg) rotateY(-7deg) scale3d(1, 1, 1); }
.graph-scene .area:nth-child(15):hover ~ .wrap .card { transform: perspective(var(--perspective)) rotateX(15deg) rotateY(-15deg) scale3d(1, 1, 1); }

/* Keyframes without wrapper because it's global */
@keyframes labels { 0% { transform: translateY(-30px); filter: blur(10px); } 8% { transform: translateY(10px); } 15% { transform: translateY(0); opacity: 1; filter: blur(0); } 80% { transform: translateY(0); opacity: 1; } 85% { filter: blur(0px); transform: translateY(-5px); } 90% { transform: translateY(15px); opacity: 0; filter: blur(10px); } }
@keyframes lines { 0% { transform: translateY(0); opacity: 0; } 7% { transform: translateY(-20px); } 12% { transform: translateY(10px); } 17% { transform: translateY(-5px); } 25% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(0); opacity: 1; } 85% { transform: translateY(-20px); } 90% { transform: translateY(20px); opacity: 0; } }
@keyframes heart { 5% { transform: scale(0.8) translateZ(0px); } 20% { transform: scale(1.2) translateZ(40px); } 40% { transform: scale(1) translateZ(20px); } 50% { transform: scale(1.2) translateZ(30px); } 70% { transform: scale(0.8) translateZ(20px); } 100% { transform: scale(1) translateZ(0px); } }
@keyframes ring { 0% { transform: scale(1); opacity: 0; } 30% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; filter: blur(5px); } }
@keyframes path { 0% {} 30% { stroke-dasharray: 510 510; } 80% { stroke-dashoffset: 1; stroke-dasharray: 510; } 100% { stroke-dashoffset: 1; stroke-dashoffset: -510; } }
@keyframes units { to { transform: translateY(calc(-100% * calc(var(--num) + 1))); } }

/* --- Portfolio Section --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 88, 12, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08), 0 0 25px var(--accent-glow) inset;
}

.portfolio-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #1e293b;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.06);
}


.portfolio-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-card-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.portfolio-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.portfolio-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feat-bullet {
    color: var(--accent-primary);
    font-weight: bold;
}

.portfolio-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.portfolio-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.portfolio-cta:hover .cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
