/* ==========================================================================
   Base Styles & Variables (HiBob Modern SaaS Style)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-light: #F9F9F8;
    /* Main light background */
    --color-bg-white: #FFFFFF;
    --color-bg-dark: #1F1F1F;
    /* Footer / Dark sections */

    --color-text-main: #242A35;
    /* Dark blue/grey for text */
    --color-text-muted: #6B7280;
    /* Muted text */

    /* Vibrant Accents */
    --color-primary-coral: #FC665C;
    /* HiBob style Coral / Orange */
    --color-primary-hover: #E3534B;

    /* Tag & Section Backgrounds (Pastels) */
    --bg-pastel-coral: #FFF0EE;
    --bg-pastel-teal: #E6FAFA;
    --bg-pastel-purple: #F3F0FF;
    --bg-pastel-yellow: #FFF8E5;

    --text-coral: #FC665C;
    --text-teal: #00A9A5;
    --text-purple: #8B5CF6;
    --text-yellow: #F59E0B;

    /* Shadows & Borders */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.08);
    --border-radius-lg: 24px;
    --border-radius-md: 12px;
    --border-radius-pill: 50px;

    --color-brand-gradient: linear-gradient(135deg, #f9a8d4 0%, #a78bfa 33%, #93c5fd 66%, #99f6e4 100%);
    --color-brand-soft: linear-gradient(135deg, rgba(249, 168, 212, 0.1) 0%, rgba(167, 139, 250, 0.1) 33%, rgba(147, 197, 253, 0.1) 66%, rgba(153, 246, 228, 0.1) 100%);

    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 3rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.bg-brand-soft {
    background: var(--color-brand-soft);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

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

.btn-primary {
    background: var(--color-brand-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(167, 139, 250, 0.3);
    color: white;
    filter: brightness(1.05);
}

.btn-secondary {
    background-color: white;
    color: var(--color-text-main);
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--color-text-main);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

.link-arrow:hover {
    color: var(--color-primary-coral);
    transform: translateX(5px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
/* .top-banner {
    background-color: var(--color-bg-dark);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-banner a {
    color: var(--color-primary-coral);
    margin-left: 10px;
} */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.2rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f9a8d4 0%, #a78bfa 33%, #93c5fd 66%, #99f6e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-main);
}

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

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

.nav-link-subtle {
    font-weight: 600;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 100px 0 120px 0;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--bg-pastel-coral) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Abstract Graphic */
.hero-graphic {
    position: relative;
    height: 500px;
    width: 100%;
}

.abstract-blob {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background-color: white;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: var(--shadow-soft);
    animation: morph 8s ease-in-out infinite alternate;
}

.abstract-card {
    position: absolute;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.card-1 {
    top: 20%;
    right: 5%;
    transform: rotate(5deg);
}

.card-2 {
    bottom: 25%;
    left: 0;
    transform: rotate(-3deg);
}

.card-1 i {
    color: var(--text-teal);
}

.text-yellow {
    color: var(--text-yellow);
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

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

/* ==========================================================================
   Trusted By Logos (Marquee)
   ========================================================================== */
.trusted-by {
    padding: 3rem 0;
    text-align: center;
    background: white;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.trusted-by p {
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    /* Optional gradient masks for smooth edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

.logo-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #9CA3AF;
    opacity: 0.6;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.logo-item i {
    font-size: 1.2rem;
}

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

/* ==========================================================================
   Services Zig-Zag Section (HiBob Style)
   ========================================================================== */
.services-wrapper {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 4rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.pr-5 {
    padding-right: 3rem;
}

.pl-5 {
    padding-left: 3rem;
}

.tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.tag-coral {
    background-color: var(--bg-pastel-coral);
    color: var(--text-coral);
}

.tag-teal {
    background-color: var(--bg-pastel-teal);
    color: var(--text-teal);
}

.tag-purple {
    background-color: var(--bg-pastel-purple);
    color: var(--text-purple);
}

.tag-brand {
    background: var(--color-brand-soft);
    color: var(--color-text-main);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.tag-yellow {
    background-color: var(--bg-pastel-yellow);
    color: var(--text-yellow);
}

.bg-pastel-coral {
    background-color: var(--bg-pastel-coral);
}

.bg-pastel-teal {
    background-color: var(--bg-pastel-teal);
}

.bg-pastel-purple {
    background-color: var(--bg-pastel-purple);
}

.bg-pastel-yellow {
    background-color: var(--bg-pastel-yellow);
}

.text-teal {
    color: var(--text-teal);
}

.feature-text h3 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.bullet-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.bullet-list li {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-group {
    display: flex;
    gap: 2rem;
}

/* Feature Images & Mockups */
.feature-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.feature-mockup {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Mockup CSS art */
.mockup-header {
    font-weight: 600;
    font-family: 'Poppins';
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.review-item {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-item.success {
    background: #ECFDF5;
    color: #059669;
}

.rating-display {
    text-align: center;
    margin-top: 2rem;
}

.big-rating {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.stars {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.browser-bar {
    background: #f3f4f6;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    display: flex;
    gap: 6px;
}

.browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.mockup-content {
    padding: 1.5rem;
}

.wireframe-hero {
    height: 100px;
    background: var(--bg-pastel-teal);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.wireframe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.wireframe-grid span {
    height: 60px;
    background: #f3f4f6;
    border-radius: 8px;
}

.sidebar {
    width: 60px;
    background: #1F2937;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.main-area {
    margin-left: 40px;
}

.stat-boxes {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-boxes span {
    flex: 1;
    height: 70px;
    background: #f3f4f6;
    border-radius: 8px;
}

.chart-area {
    height: 150px;
    background: var(--bg-pastel-purple);
    border-radius: 8px;
}

.ad-card {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.ad-img {
    height: 120px;
    background: #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.ad-text {
    height: 20px;
    width: 60%;
    background: #d1d5db;
    border-radius: 4px;
}

.metric {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-green {
    color: #10B981;
}

.text-blue {
    color: #3B82F6;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

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

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-item p {
    font-weight: 600;
    color: var(--color-text-main);
}

/* ==========================================================================
   Bottom CTA Section
   ========================================================================== */
.bottom-cta {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.cta-inner {
    background: var(--color-brand-soft);
    border-radius: 32px;
    padding: 5rem 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.1);
}

.cta-inner h2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--color-text-main);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   Footer (HiBob Style)
   ========================================================================== */
.site-footer {
    background: #111827;
    color: #f3f4f6;
    padding: 100px 0 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-main);
}

.social-links a:hover {
    background: var(--color-brand-gradient);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

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

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

.footer-links ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: white;
}

/* ==========================================================================
   Animations & Responsive Utilities
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-graphic {
        height: 400px;
        margin-top: 2rem;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 80px;
        text-align: center;
    }

    .pr-5,
    .pl-5 {
        padding: 0;
    }

    .btn-group {
        justify-content: center;
    }

    .bullet-list li {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .cta-inner h2 {
        font-size: 2.5rem;
    }

    .cta-inner {
        padding: 3rem 1.5rem;
    }

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

    .logo-grid {
        gap: 2rem;
        justify-content: center;
    }

    .nav-links,
    .nav-actions .btn-primary,
    .nav-actions .nav-link-subtle {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.92);
        /* Elite Translucent Slate */
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 7rem 2.5rem 2.5rem 2.5rem;
        z-index: 9999;
        gap: 1.2rem;
        overflow-y: auto;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active a {
        color: #ffffff;
        font-size: 1.35rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1.1rem;
        transition: all 0.3s ease;
    }

    .nav-links.active a:hover {
        color: var(--color-primary-coral);
        padding-left: 10px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

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

    /* Page Specific Hero Adjustments */
    .hero-mobile,
    .hero-pdks,
    .hero-randevu,
    .hero-marketing,
    .hero-custom {
        padding: 100px 0 60px 0 !important;
    }
}

/* ==========================================================================
   High-End UI Enhancements
   ========================================================================== */

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(31, 31, 31, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradients */
.text-gradient-coral {
    background: linear-gradient(135deg, var(--color-primary-coral) 0%, #FF8E8E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--text-teal) 0%, #5EEAD4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

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

.floating {
    animation: floating 4s ease-in-out infinite;
}

.floating-delayed {
    animation: floating 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Decorative Shapes */
.shape-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--bg-pastel-coral) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
}

.glow-teal {
    background: radial-gradient(circle, var(--bg-pastel-teal) 0%, transparent 70%);
}

.glow-purple {
    background: radial-gradient(circle, var(--bg-pastel-purple) 0%, transparent 70%);
}

/* Refined Typography */
.letter-spacing-tight {
    letter-spacing: -0.02em;
}

.line-height-relaxed {
    line-height: 1.8;
}

/* Device Mockup Utilities */
.mockup-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.mockup-image:hover {
    transform: translateY(-5px);
}