/* ============================================
   CSS Variables & Theme System
   COLOR.PNG Palette: #363973 #0F7BA6 #0BADBF #0DA697 #042623
   ============================================ */
:root {
    /* Light Mode Colors (Default) */
    --primary: #0DA697;
    --primary-hover: #0BADBF;
    --primary-dark: #0a8578;
    --secondary: #363973;
    --accent: #0BADBF;
    --accent-teal: #0DA697;
    --accent-ocean: #0F7BA6;
    --accent-indigo: #363973;
    --accent-violet: #6B5BCC;
    --dark-base: #042623;
    /* Brand gradient: green/teal flowing to violet */
    --gradient-brand: linear-gradient(90deg, #0DA697 0%, #0BADBF 25%, #0F7BA6 50%, #363973 75%, #6B5BCC 100%);
    --gradient-brand-135: linear-gradient(135deg, #0DA697 0%, #0BADBF 30%, #363973 70%, #6B5BCC 100%);
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFCFC;
    --bg-tertiary: #F0F7F6;
    --text-primary: #042623;
    --text-secondary: #2d4a47;
    --text-tertiary: #5a7a77;
    --border-color: rgba(4, 38, 35, 0.12);
    --card-bg: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow: rgba(4, 38, 35, 0.08);
    --shadow-strong: rgba(4, 38, 35, 0.15);
}

/* Shine animation for gradient text and buttons */
@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes buttonShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.dark-mode {
    /* Dark Mode Colors */
    --bg-primary: #021a18;
    --bg-secondary: #032926;
    --bg-tertiary: #052f2c;
    --text-primary: #FFFFFF;
    --text-secondary: #b8d4d1;
    --text-tertiary: #7a9e9a;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(3, 41, 38, 0.8);
    --glass-bg: rgba(2, 26, 24, 0.95);
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-strong: rgba(0, 0, 0, 0.5);
}

/* ============================================
   Base Styles - All links open in new tab
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    position: relative;
}

/* Geometric Background Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--accent-ocean) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--accent-indigo) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, var(--primary) 30%, var(--primary) 31%, transparent 31%, transparent 70%, var(--accent-ocean) 70%, var(--accent-ocean) 71%, transparent 71%);
    background-size: 800px 800px, 600px 600px, 1000px 1000px, 200px 200px;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0 0;
    animation: geometricFloat 30s ease-in-out infinite;
}

/* Repeating Geometric Shapes - Top, Left, Right */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: 
        /* Top edge - repeating shapes */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 80px,
            var(--primary) 80px,
            var(--primary) 82px,
            transparent 82px,
            transparent 160px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 40px,
            transparent 120px,
            var(--accent-ocean) 120px,
            var(--accent-ocean) 122px,
            transparent 122px,
            transparent 200px
        ),
        /* Left edge - repeating shapes */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 100px,
            var(--accent-indigo) 100px,
            var(--accent-indigo) 102px,
            transparent 102px,
            transparent 200px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 50px,
            transparent 150px,
            var(--primary) 150px,
            var(--primary) 152px,
            transparent 152px,
            transparent 250px
        ),
        /* Right edge - repeating shapes */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 120px,
            var(--accent-ocean) 120px,
            var(--accent-ocean) 122px,
            transparent 122px,
            transparent 240px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 60px,
            transparent 180px,
            var(--accent-indigo) 180px,
            var(--accent-indigo) 182px,
            transparent 182px,
            transparent 300px
        );
    background-size: 
        100% 2px,  /* Top line 1 */
        100% 2px,  /* Top line 2 */
        2px 100%,  /* Left line 1 */
        2px 100%,  /* Left line 2 */
        2px 100%,  /* Right line 1 */
        2px 100%;  /* Right line 2 */
    background-position: 
        0 0,       /* Top */
        0 4px,     /* Top offset */
        0 0,       /* Left */
        4px 0,     /* Left offset */
        100% 0,    /* Right */
        calc(100% - 4px) 0; /* Right offset */
    background-repeat: no-repeat;
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(2deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-2deg);
    }
}

/* Grid Pattern Overlay - Additional geometric shapes */
.geometric-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(var(--primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 100px 100px;
}

/* Repeating Geometric Shapes - Top, Left, Right Edges */
.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    overflow: hidden;
}

.geometric-shapes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Top edge - repeating geometric shapes */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 60px,
            var(--primary) 60px,
            var(--primary) 62px,
            transparent 62px,
            transparent 120px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 30px,
            transparent 90px,
            var(--accent-ocean) 90px,
            var(--accent-ocean) 92px,
            transparent 92px,
            transparent 150px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 15px,
            transparent 75px,
            var(--accent-indigo) 75px,
            var(--accent-indigo) 77px,
            transparent 77px,
            transparent 135px
        ),
        /* Left edge - repeating geometric shapes */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 80px,
            var(--primary) 80px,
            var(--primary) 82px,
            transparent 82px,
            transparent 160px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 40px,
            transparent 120px,
            var(--accent-ocean) 120px,
            var(--accent-ocean) 122px,
            transparent 122px,
            transparent 200px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 20px,
            transparent 100px,
            var(--accent-indigo) 100px,
            var(--accent-indigo) 102px,
            transparent 102px,
            transparent 180px
        ),
        /* Right edge - repeating geometric shapes */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 100px,
            var(--primary) 100px,
            var(--primary) 102px,
            transparent 102px,
            transparent 200px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 50px,
            transparent 150px,
            var(--accent-ocean) 150px,
            var(--accent-ocean) 152px,
            transparent 152px,
            transparent 250px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 25px,
            transparent 125px,
            var(--accent-indigo) 125px,
            var(--accent-indigo) 127px,
            transparent 127px,
            transparent 225px
        );
    background-size: 
        100% 3px,  /* Top line 1 */
        100% 3px,  /* Top line 2 */
        100% 3px,  /* Top line 3 */
        3px 100%,  /* Left line 1 */
        3px 100%,  /* Left line 2 */
        3px 100%,  /* Left line 3 */
        3px 100%,  /* Right line 1 */
        3px 100%,  /* Right line 2 */
        3px 100%;  /* Right line 3 */
    background-position: 
        0 0,       /* Top 1 */
        0 6px,     /* Top 2 offset */
        0 12px,    /* Top 3 offset */
        0 0,       /* Left 1 */
        6px 0,     /* Left 2 offset */
        12px 0,    /* Left 3 offset */
        100% 0,    /* Right 1 */
        calc(100% - 6px) 0, /* Right 2 offset */
        calc(100% - 12px) 0; /* Right 3 offset */
    background-repeat: no-repeat;
}


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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-letter {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-flex;
    align-items: baseline;
}

.logo-text-boostly {
    color: var(--text-primary);
}

.logo-text-apps {
    background: linear-gradient(90deg, #0DA697 0%, #0BADBF 20%, rgba(255,255,255,0.9) 40%, #0BADBF 60%, #363973 80%, #6B5BCC 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 9s ease-in-out infinite;
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-explore-apps {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    position: relative;
    overflow: hidden;
    color: white !important;
    border: none;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-explore-apps::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: buttonShine 7s ease-in-out infinite;
    z-index: 1;
}

.btn-explore-apps:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 166, 151, 0.35);
}

.btn-explore-apps:hover::before {
    animation-duration: 1.4s;
}

.btn-explore-apps > * {
    position: relative;
    z-index: 2;
}

.btn-explore-apps:active {
    transform: translateY(0);
}

.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: rotate(15deg);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 166, 151, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

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

.hero-background,
.global-background-orbs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    animation: float 40s infinite ease-in-out;
    pointer-events: none;
}

.orb-1 {
    width: 1000px;
    height: 1000px;
    background: var(--primary);
    top: -500px;
    left: -500px;
    animation-delay: 0s;
}

.orb-2 {
    width: 900px;
    height: 900px;
    background: var(--accent-ocean);
    top: 50%;
    right: -450px;
    transform: translateY(-50%);
    animation-delay: 5s;
}

.orb-3 {
    width: 850px;
    height: 850px;
    background: var(--accent-indigo);
    bottom: -425px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.03);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.97);
    }
}

@keyframes floatBlue {
    0%, 100% {
        transform: translateY(-50%) translate(0, 0) scale(1);
    }
    33% {
        transform: translateY(-50%) translate(40px, -40px) scale(1.03);
    }
    66% {
        transform: translateY(-50%) translate(-30px, 30px) scale(0.97);
    }
}

@keyframes floatViolet {
    0%, 100% {
        transform: translateX(-50%) translate(0, 0) scale(1);
    }
    33% {
        transform: translateX(-50%) translate(40px, -40px) scale(1.03);
    }
    66% {
        transform: translateX(-50%) translate(-30px, 30px) scale(0.97);
    }
}

/* Shimmer/Shine Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.orb-2 {
    animation-name: floatBlue;
}

.orb-3 {
    animation-name: floatViolet;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--primary);
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
}

.hero-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.25;
    animation: titleGlow 6s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.gradient-text {
    background: linear-gradient(90deg, #0DA697 0%, #0BADBF 20%, rgba(255,255,255,0.9) 40%, #0BADBF 60%, #363973 80%, #6B5BCC 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 9s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary,
a.btn-primary,
a.btn-install,
a.btn-explore-apps {
    text-decoration: none !important;
}

a.btn-primary:hover,
a.btn-install:hover,
a.btn-explore-apps:hover {
    text-decoration: none !important;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: none;
}

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

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border: none;
    border-top: none;
    border-bottom: none;
    margin: 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, #0DA697 0%, #0BADBF 20%, rgba(255,255,255,0.9) 40%, #0BADBF 60%, #6B5BCC 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    animation: textShine 9s ease-in-out infinite;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--bg-primary);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--primary);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.benefit-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.benefit-stat {
    display: flex;
    align-items: baseline;
    gap: 0;
    margin-top: 1rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: inline-block;
    margin-left: 0.25rem;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    background: var(--bg-primary);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.portfolio-card > * {
    position: relative;
    z-index: 2;
}

.portfolio-image {
    height: 200px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.portfolio-placeholder {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.portfolio-app-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.portfolio-single {
    max-width: 500px;
    margin: 0 auto;
}

.portfolio-card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px var(--shadow-strong);
    border-radius: 24px;
}

.portfolio-card-featured:hover {
    border-color: var(--accent);
}

.portfolio-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    min-height: 0;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.portfolio-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.portfolio-rating .stars i {
    color: #FFD700;
    font-size: 0.875rem;
}

.rating-value {
    font-weight: 600;
    font-size: 0.875rem;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.portfolio-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}

.feature-tag {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-install {
    width: 100%;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    white-space: nowrap;
    display: block !important;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    overflow: hidden;
}

.btn-install:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 166, 151, 0.35);
}

.btn-install > * {
    position: relative;
    z-index: 2;
}

.btn-install:active {
    transform: translateY(0);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-quote i {
    font-size: 2.5rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-avatar span {
    color: white;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.client-logos-section {
    text-align: center;
    margin-top: 3rem;
}

.client-logos-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.4;
    transition: all 0.3s ease;
}

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

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: var(--bg-primary);
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 2rem;
    margin-top: 50px;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0DA697 0%, #0BADBF 20%, rgba(255,255,255,0.9) 40%, #0BADBF 60%, #363973 80%, #6B5BCC 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 9s ease-in-out infinite;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-primary);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-brand);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 166, 151, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-primary);
    border-top: none;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-flex;
    align-items: baseline;
}

.footer-title .logo-text-boostly {
    color: var(--text-primary);
}

.footer-title .logo-text-apps {
    background: linear-gradient(90deg, #0DA697 0%, #0BADBF 20%, rgba(255,255,255,0.9) 40%, #0BADBF 60%, #363973 80%, #6B5BCC 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 9s ease-in-out infinite;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-contact {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 1.25rem;
}

.footer-contact-item:hover {
    color: var(--primary);
}

.footer-contact-item:hover i {
    color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-links a i {
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: none;
    color: var(--text-secondary);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-secondary);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .btn-explore-apps {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta button {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .benefits-grid,
    .portfolio-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 4rem 0;
    }
}

/* ============================================
   Legal Pages (Privacy Policy / Terms)
   ============================================ */
.legal-page {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px; /* space for fixed navbar */
}

.legal-header {
    margin-bottom: 28px;
}

.legal-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 50px var(--shadow);
    backdrop-filter: blur(16px);
}

.legal-card h2 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.legal-card p {
    color: var(--text-secondary);
    margin: 10px 0;
}

.legal-card ul {
    margin: 10px 0 10px 18px;
    color: var(--text-secondary);
}

.legal-card li {
    margin: 6px 0;
}

.legal-card a {
    color: var(--primary);
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

/* Pricing cards inside legal-card (pricing page) */
.pricing-card-wrapper {
    padding: 2.5rem;
}

.pricing-card-wrapper .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-wrapper .pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.dark-mode .pricing-card-wrapper .pricing-card {
    background: rgba(255, 255, 255, 0.05);
}

/* Pricing page only: no animated shine on headings or prices */
.pricing-page .legal-header .section-badge {
    animation: none;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--primary);
    color: var(--primary);
}

.pricing-page .legal-header .gradient-text {
    animation: none;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--primary);
    color: var(--primary);
}

.pricing-page .price-amount {
    animation: none;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--primary);
    color: var(--primary);
}

.pricing-page .pricing-badge {
    background: var(--primary);
}

/* Image Fullscreen Overlay */
.img-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.img-fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.img-fullscreen-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.img-fullscreen-close:hover {
    background: var(--primary);
    color: white;
}

.img-fullscreen-img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
}

/* Apps Page */
.apps-list {
    max-width: 700px;
    margin: 0 auto;
}

.apps-page.app-detail-fullpage .apps-container {
    max-width: 100%;
    width: 100%;
    padding: 0 24px;
}

.apps-page.app-detail-fullpage .app-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.apps-page.app-detail-fullpage .apps-list {
    max-width: 100%;
}

.apps-page.app-detail-fullpage .app-detail {
    max-width: 100%;
}

.app-tile {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-tile:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px var(--shadow);
}

.app-tile-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.app-tile-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
}

.app-tile-content {
    flex: 1;
}

.app-tile-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.app-tile-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.app-tile-arrow {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.app-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.app-detail-open {
    max-height: 3000px;
}

.app-detail-content {
    padding: 2rem;
}

.app-detail-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.app-detail-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.app-detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.app-feature-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.app-detail-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-img-link {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.app-detail-images img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-img-link:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 30px var(--shadow-strong);
}

.apps-page.app-detail-fullpage .app-detail-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.apps-page.app-detail-fullpage .app-detail-images img {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
}

.btn-app-install {
    display: inline-block;
    width: auto;
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 110px 0 60px;
    }
    .legal-card {
        padding: 20px;
        border-radius: 16px;
    }
    .pricing-card-wrapper {
        padding: 1.75rem;
    }
    .app-detail-images {
        grid-template-columns: 1fr;
    }
    .apps-page.app-detail-fullpage .app-detail-images {
        grid-template-columns: 1fr;
    }
}
