/* ============================================
   DUBBA - Modern Tech Company Website
   Dark Premium Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0C0810;
    --bg-secondary: #100D15;
    --bg-card: #160C1E;
    --bg-card-hover: #1C1028;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Dubba Brand Colors */
    --accent-primary: #4C0268;
    --accent-primary-mid: #7B1FA2;
    --accent-secondary: #FFBA01;
    --accent-secondary-dark: #E0A500;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-orange: #F97316;

    --gradient-main: linear-gradient(135deg, #4C0268 0%, #7B1FA2 100%);
    --gradient-gold: linear-gradient(135deg, #FFBA01 0%, #E0A500 100%);
    --gradient-brand: linear-gradient(135deg, #6B0D90 0%, #FFBA01 100%);

    --text-primary: #F1F5F9;
    --text-secondary: #C4B8D0;
    --text-muted: #7A6E88;

    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-glow: 0 0 60px rgba(76, 2, 104, 0.2);
    --shadow-glow-gold: 0 0 60px rgba(255, 186, 1, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-primary);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--accent-primary);
    color: white;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* --- Utility --- */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(76, 2, 104, 0.15);
    border: 1px solid rgba(76, 2, 104, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #C084FC;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
}

/* --- Navbar --- */
.navbar {
    background: rgba(12, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(12, 8, 16, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--border-subtle);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28241, 245, 249, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Buttons --- */
.btn-primary-custom {
    background: var(--gradient-gold);
    color: #0C0810;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E0A500 0%, #FFBA01 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary-custom:hover {
    color: #0C0810;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 186, 1, 0.35);
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-primary-custom > * {
    position: relative;
    z-index: 1;
}

.btn-primary-custom i,
.btn-primary-custom span {
    position: relative;
    z-index: 1;
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
    background: rgba(255, 186, 1, 0.08);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--bg-primary);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-white:hover {
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    color: white;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: #4C0268;
    top: -10%;
    right: -5%;
    opacity: 0.5;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #FFBA01;
    bottom: -10%;
    left: -5%;
    opacity: 0.12;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #7B1FA2;
    top: 50%;
    left: 40%;
    opacity: 0.1;
    animation-delay: -5s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    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: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(76, 2, 104, 0.15);
    border: 1px solid rgba(76, 2, 104, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: #C084FC;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-badge i {
    color: var(--accent-secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-secondary);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Visual (right side) */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(76, 2, 104, 0.6), 0 0 120px rgba(255, 186, 1, 0.15);
    animation: logoPulse 3s ease-in-out infinite;
}

.hero-logo-circle img {
    width: 64px;
    height: auto;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(76, 2, 104, 0.6), 0 0 120px rgba(255, 186, 1, 0.1); }
    50% { box-shadow: 0 0 90px rgba(76, 2, 104, 0.8), 0 0 180px rgba(255, 186, 1, 0.2); }
}

.hero-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
    box-shadow: var(--shadow-card);
    white-space: nowrap;
}

.hero-card i {
    font-size: 1.3rem;
}

.hero-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-card small {
    font-size: 0.75rem;
    margin-left: auto;
}

.hero-card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-card-1 i { color: #C084FC; }

.hero-card-2 {
    top: 30%;
    right: 0%;
    animation-delay: -1.5s;
}

.hero-card-2 i { color: var(--accent-green); }

.hero-card-3 {
    bottom: 25%;
    left: 0%;
    animation-delay: -3s;
}

.hero-card-3 i { color: var(--accent-red); }

.hero-card-4 {
    bottom: 8%;
    right: 10%;
    animation-delay: -4.5s;
}

.hero-card-4 i { color: var(--accent-secondary); }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pulse {
    animation: pulseAnim 1.5s ease-in-out infinite;
    font-size: 0.5rem !important;
    vertical-align: middle;
}

@keyframes pulseAnim {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.hero-scroll-indicator a:hover {
    color: var(--accent-primary);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =====================
   SOCIAL PROOF
   ===================== */
.social-proof-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.social-proof-section p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.logos-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.logo-item:hover {
    opacity: 1;
    color: var(--text-secondary);
}

/* =====================
   SOLUTIONS SECTION
   ===================== */
.solutions-section {
    padding: 100px 0;
}

.solution-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.solution-card-featured {
    border-color: rgba(255, 186, 1, 0.2);
    background: linear-gradient(180deg, rgba(255, 186, 1, 0.04) 0%, var(--bg-card) 100%);
}

.solution-card-featured::before {
    opacity: 1;
}

.solution-card-dark {
    background: linear-gradient(180deg, rgba(76, 2, 104, 0.08) 0%, var(--bg-card) 100%);
}

.solution-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(76, 2, 104, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #C084FC;
    margin-bottom: 20px;
}

.solution-icon-purple {
    background: rgba(76, 2, 104, 0.15);
    color: #C084FC;
}

.solution-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
}

.solution-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.solution-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: rgba(255, 186, 1, 0.1);
    border: 1px solid rgba(255, 186, 1, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

.solution-tag-live {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

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

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

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

.solution-features li i {
    color: var(--accent-green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Dev Services Grid */
.dev-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.dev-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dev-service:hover {
    border-color: rgba(255, 186, 1, 0.4);
    background: rgba(255, 186, 1, 0.06);
    color: var(--text-primary);
}

.dev-service i {
    font-size: 1.1rem;
    color: var(--accent-secondary);
}

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.steps-timeline {
    margin-top: 48px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.4s ease;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 12px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(76, 2, 104, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-primary);
    margin: 0 auto 20px;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================
   FEATURES / DIFFERENTIALS
   ===================== */
.features-section {
    padding: 100px 0;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(76, 2, 104, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #C084FC;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-visual {
    position: relative;
    padding: 40px;
}

.about-year {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    position: absolute;
    top: 0;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.about-timeline {
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4C0268, #FFBA01);
    border-radius: 2px;
    opacity: 0.4;
}

.timeline-item {
    position: relative;
    padding: 16px 0;
}

.timeline-dot {
    position: absolute;
    left: -27px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--text-muted);
}

.timeline-item.active .timeline-dot {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 12px rgba(255, 186, 1, 0.5);
}

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

.timeline-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

.timeline-item.active .timeline-content {
    color: var(--text-primary);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =====================
   STATS SECTION
   ===================== */
.stats-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0.08;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-secondary);
    display: inline;
}

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

/* =====================
   CASES / TESTIMONIALS
   ===================== */
.cases-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--accent-secondary);
    font-size: 0.9rem;
}

.testimonial-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4C0268, #7B1FA2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #2D0140 0%, #4C0268 50%, #6B0D90 100%);
    border: 1px solid rgba(255, 186, 1, 0.15);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    top: -20%;
    right: -5%;
}

.cta-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 186, 1, 0.15);
    bottom: -10%;
    left: 10%;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(76, 2, 104, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #C084FC;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.contact-info-item a:hover {
    color: var(--accent-secondary);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    background: rgba(255, 186, 1, 0.08);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 3px rgba(255, 186, 1, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394A3B8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* =====================
   FOOTER
   ===================== */
.footer-section {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-secondary);
}

.footer-divider {
    border-color: var(--border-subtle);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--accent-secondary);
}

.footer-brand img {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

/* =====================
   WHATSAPP FLOAT
   ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        padding: 50px 30px;
    }

    .navbar-collapse {
        background: rgba(11, 11, 20, 0.98);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 12px;
        border: 1px solid var(--border-subtle);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .dev-services-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 28px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-year {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 12px;
    }

    .hero-stat-divider {
        display: none;
    }

    .logos-track {
        gap: 24px;
    }

    .logo-item {
        font-size: 0.9rem;
    }
}
