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

:root {
    --primary-purple: #A78BFA;
    --primary-purple-dark: #8B5CF6;
    --primary-purple-light: #C4B5FD;
    --primary-purple-soft: #EDE9FE;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-white: #FAFAFA;
    --bg-light: #F9FAFB;
    --bg-soft: #F5F3FF;
    --border-color: #E5E7EB;
    --shadow-soft: 0 4px 20px rgba(167, 139, 250, 0.08);
    --shadow-medium: 0 8px 30px rgba(167, 139, 250, 0.12);
    --shadow-strong: 0 12px 40px rgba(167, 139, 250, 0.15);
}

html {
    background: #000000;
    min-height: 100vh;
    padding: 8px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #FAFAFA;
    border: 4px solid #1a1a1a;
    border-radius: 12px;
    min-height: calc(100vh - 16px);
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset,
                0 0 0 2px rgba(0, 0, 0, 0.05) inset,
                0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 0;
    z-index: 0;
}

/* Ekstra çerçeve katmanları - MacBook ekran hissiyatı */
body::before {
    display: none;
}

body::after {
    display: none;
}

/* Ekstra çerçeve efekti - yan çizgiler */
html::before,
html::after {
    content: '';
    position: fixed;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: #1a1a1a !important;
    z-index: 10001;
    pointer-events: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
}

html::before {
    left: 8px;
}

html::after {
    right: 8px;
}

body::before,
body::after {
    content: '';
    position: fixed;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #1a1a1a !important;
    z-index: 10001;
    pointer-events: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    border: none;
    outline: none;
}

body::before {
    top: 8px;
}

body::after {
    bottom: 8px;
}

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

/* Navigation - Dynamic Island Style */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
}

.navbar-island {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(167, 139, 250, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    max-width: 90%;
    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .navbar-island {
    padding: 0.6rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(167, 139, 250, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.logo-image,
.footer-logo-image {
    max-height: 35px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu a:hover::before {
    opacity: 1;
}

/* Hero Section */
/* Hero Section */
.hero {
    background: #FAFAFA;
    padding: 4rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.purple-shape {
    display: none;
}

.shape-1,
.shape-2,
.shape-3 {
    display: none;
}

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

.hero-left {
    animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-small-heading {
    font-size: 1rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: white;
    padding: 1.125rem 2.75rem;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3),
                0 2px 8px rgba(167, 139, 250, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-purple-dark), var(--primary-purple));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.4),
                0 4px 12px rgba(167, 139, 250, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hero Right Side */
.hero-right {
    position: relative;
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image-placeholder {
    width: 420px;
    height: 520px;
    background: transparent;
    border-radius: 32px;
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/home1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-image-placeholder:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.person-icon {
    font-size: 8rem;
    opacity: 0.6;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-placeholder:hover .person-icon {
    transform: scale(1.05);
}

/* Floating Social Icons */
.social-icons-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    will-change: transform;
}

.social-icons-float .social-icon {
    position: absolute;
    pointer-events: all;
}

.social-icons-float .social-icon.social-fb {
    top: 10%;
    left: -20px;
}

.social-icons-float .social-icon.social-ig {
    top: 40%;
    left: -50px;
}

.social-icons-float .social-icon.social-yt {
    top: 60%;
    right: -30px;
}

.social-icons-float .social-icon.social-tt {
    bottom: 20%;
    right: -20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    animation: floatIcon 3s ease-in-out infinite;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-medium);
    background: white;
    animation-play-state: paused;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon.social-fb {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.25), rgba(59, 89, 152, 0.6));
    color: #fff;
}

.social-icon.social-ig {
    background: linear-gradient(135deg, rgba(247, 119, 55, 0.4), rgba(131, 58, 180, 0.75));
    color: #fff;
}

.social-icon.social-yt {
    background: linear-gradient(135deg, rgba(208, 32, 43, 0.3), rgba(255, 0, 0, 0.6));
    color: #fff;
}

.social-icon.social-tt {
    background: linear-gradient(135deg, rgba(24, 255, 255, 0.3), rgba(255, 0, 149, 0.7));
    color: #fff;
}

.social-icons-float .social-icon.facebook {
    animation-delay: 0s;
}

.social-icons-float .social-icon.pinterest {
    animation-delay: 0.5s;
}

.social-icons-float .social-icon.instagram {
    animation-delay: 1s;
}

.social-icons-float .social-icon.youtube {
    animation-delay: 1.5s;
}

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

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

@keyframes floatIconVerticalWithOffset {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 12px));
    }
}

.social-icon.facebook {
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    color: white;
}

.social-icon.pinterest {
    background: linear-gradient(135deg, #F87171, #EF4444);
    color: white;
}

.social-icon.youtube {
    background: linear-gradient(135deg, #F87171, #DC2626);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #FBBF24, #F59E0B, #EC4899, #8B5CF6);
    color: white;
}

/* About Services Section */
.about-services {
    background: #FAFAFA;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-services-background-shapes {
    display: none;
}

.about-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-services-left {
    position: relative;
    animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-services-right {
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-services-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.about-services-image-placeholder {
    width: 400px;
    height: 500px;
    background: transparent;
    background-image: url('../images/home2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    border-radius: 32px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-services-image-placeholder:hover {
    transform: translateY(-50%) scale(1.02);
}

.services-icons-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.service-icon-float {
    position: absolute;
    min-width: 140px;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-icon-float:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: var(--shadow-medium);
    background: white;
    animation-play-state: paused;
}

.services-icons-float .service-icon-float:nth-child(1):hover,
.services-icons-float .service-icon-float:nth-child(2):hover {
    animation-play-state: paused;
}

.services-icons-float .service-icon-float:nth-child(2):hover {
    transform: translateY(-50%) translateY(-5px) scale(1.05);
}

.services-icons-float .service-icon-float:nth-child(3):hover,
.services-icons-float .service-icon-float:nth-child(4):hover {
    animation-play-state: paused;
}

.service-icon-float svg {
    width: 28px;
    height: 28px;
}

.service-stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
}

.service-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1.2;
}

.service-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.2;
    white-space: nowrap;
}

.services-icons-float .service-icon-float:nth-child(1) {
    top: 10%;
    right: 30px;
    animation: floatIconVertical 2.8s ease-in-out infinite;
    animation-delay: 0.2s;
}

.services-icons-float .service-icon-float:nth-child(2) {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    animation: floatIconVerticalWithOffset 3.2s ease-in-out infinite;
    animation-delay: 0.7s;
}

.services-icons-float .service-icon-float:nth-child(3) {
    bottom: 30%;
    left: -28px;
    animation: floatIconVertical 3s ease-in-out infinite;
    animation-delay: 0s;
}

.services-icons-float .service-icon-float:nth-child(4) {
    bottom: 10%;
    left: -28px;
    animation: floatIconVertical 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.about-services-image-placeholder:hover {
    transform: translateY(-50%) scale(1.02);
}

.about-services-small-heading {
    font-size: 1rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.about-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.about-services-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-services-description:last-of-type {
    margin-bottom: 2.5rem;
}

/* Services Details Section */
.services-details {
    padding: 6rem 0;
    background: #FAFAFA;
    position: relative;
}

.services-details-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.services-details-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    opacity: 0.9;
}

.services-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card-compact {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                0 1px 4px rgba(167, 139, 250, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-purple-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-compact:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(167, 139, 250, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(196, 181, 253, 0.15));
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-compact:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.25), rgba(196, 181, 253, 0.25));
}

.service-card-icon svg {
    width: 40px;
    height: 40px;
}

.service-card-icon-instagram svg {
    width: 32px;
    height: 32px;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-card-summary {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    opacity: 0.9;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
                0 8px 24px rgba(167, 139, 250, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: modalAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

.service-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal-close:hover {
    background: var(--bg-light);
    color: var(--primary-purple);
    transform: rotate(90deg);
}

.service-modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(196, 181, 253, 0.15));
    border-radius: 18px;
}

.service-modal-icon svg {
    width: 40px;
    height: 40px;
}

.service-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: center;
}

.service-modal-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-features li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    position: relative;
    padding-left: 2rem;
}

.service-modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-white);
}

.service-section {
    margin-bottom: 6rem;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-purple-light);
    background: var(--bg-soft);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(196, 181, 253, 0.15));
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(196, 181, 253, 0.2));
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.service-section-cta {
    text-align: center;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-purple);
    padding: 1.125rem 2.75rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-purple);
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

/* Statistics Section */
.statistics {
    padding: 6rem 0;
    background: #FAFAFA;
}

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

.statistics-left {
    animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.statistics-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.statistics-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(107, 114, 128, 0.8);
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.statistics-right {
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    padding: 2rem;
}

.statistics-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.5) 0%, rgba(196, 181, 253, 0.4) 30%, rgba(221, 214, 254, 0.3) 50%, transparent 70%);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
    animation: pulseGlow 4s ease-in-out infinite;
}

.statistics-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.4) 0%, rgba(196, 181, 253, 0.3) 40%, transparent 70%);
    border-radius: 15px;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite 0.5s;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1),
                0 4px 12px rgba(167, 139, 250, 0.15),
                0 2px 6px rgba(196, 181, 253, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(167, 139, 250, 0.1);
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
                0 8px 20px rgba(167, 139, 250, 0.2),
                0 4px 10px rgba(196, 181, 253, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.8),
                inset 0 -2px 0 rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(75, 85, 99, 0.85);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #FAFAFA;
    position: relative;
    overflow: hidden;
}


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

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(167, 139, 250, 0.2),
        0 5px 10px rgba(196, 181, 253, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(167, 139, 250, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(196, 181, 253, 0.2), rgba(167, 139, 250, 0.3));
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-content:hover::before {
    opacity: 1;
}

/* Analytics Section */
.analytics-section {
    padding: 5rem 0;
    background: #FAFAFA;
}

.analytics-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.analytics-title-accent {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-purple);
    margin-top: -0.4rem;
}

.analytics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.analytics-info-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.analytics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.analytics-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0;
}

.analytics-stats-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.analytics-stat-card {
    position: absolute;
    min-width: 140px;
    width: auto;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(167, 139, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.analytics-stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
}

.analytics-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1.2;
}

.analytics-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.2;
    white-space: nowrap;
}

.analytics-stat-card.stat-top-left {
    top: 8%;
    left: -20px;
    animation: floatIconVertical 3s ease-in-out infinite;
    animation-delay: 0s;
}

.analytics-stat-card.stat-bottom-left {
    bottom: 8%;
    left: -20px;
    animation: floatIconVertical 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.analytics-stat-card.stat-right-center {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation: floatIconVerticalWithOffset 3.2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.analytics-overlay-card {
    position: absolute;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    display: flex;
    flex-direction: column;
    row-gap: 0.1rem;
    align-items: flex-start;
    pointer-events: none;
    text-transform: uppercase;
    animation: floatOverlay 5.5s ease-in-out infinite;
}

.overlay-media {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.35), rgba(255, 255, 255, 0.8));
    margin-bottom: 0.2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-media::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.6;
}

.analytics-overlay-card span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-purple);
}

.analytics-overlay-card small {
    color: rgba(23, 23, 23, 0.6);
    font-size: 0.7rem;
}

.overlay-top-left {
    top: -10px;
    left: 20px;
    animation-delay: 0s;
}

.overlay-top-right {
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    animation-delay: 1s;
    animation: none;
    will-change: transform;
}

.overlay-bottom-left {
    bottom: -12px;
    left: 40px;
    animation-delay: 2s;
}

@keyframes floatOverlay {
    0% {
        transform: translateY(0);
        opacity: 0.95;
    }
    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.95;
    }
}

.analytics-info {
    font-family: "SF Pro Display","SF Pro Text","Inter",-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 1.6rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
}

.analytics-info,
.analytics-description,
.analytics-details,
.analytics-trigger-text {
    font-family: "SF Pro Display","SF Pro Text","Inter",-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.analytics-info::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

/* References */
.references-section {
    padding: 4.5rem 0;
    background: #F6F6F8;
}

.references-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: "SF Pro Display","SF Pro Text","Inter",-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.8px;
}

.references-slider {
    overflow: hidden;
    position: relative;
}

.references-track {
    display: flex;
    gap: var(--logo-card-gap, 32px);
    animation: referencesSlide 20s linear infinite;
    width: calc(var(--logo-card-width, 150px) * var(--logo-count, 12) + var(--logo-card-gap, 32px) * (var(--logo-count, 12) - 1));
}

.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-card {
    min-width: 150px;
    min-height: 80px;
    border-radius: 20px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.references-slider:hover .references-track {
    animation-play-state: paused;
}

@keyframes referencesSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.analytics-trigger {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    border-radius: 20px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.analytics-trigger:hover {
    color: var(--primary-purple);
}

.analytics-trigger-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.analytics-trigger-text {
    font-family: "SF Pro Display","SF Pro Text","Inter",-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.analytics-details {
    margin-top: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.98rem;
}

.analytics-details.open {
    max-height: 320px;
}

.testimonial-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(196, 181, 253, 0.15));
    border-radius: 12px;
}

.testimonial-stars {
    font-size: 1.25rem;
    color: #FBBF24;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 181, 253, 0.2);
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.testimonial-author-role {
    font-size: 0.9rem;
    color: rgba(107, 114, 128, 0.7);
    font-weight: 400;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #FAFAFA;
    text-align: center;
}

.contact-mac .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 36px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2.25rem;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-card .section-title {
    text-align: center;
    margin-top: 0;
    font-size: 2.25rem;
}

.contact-description {
    color: rgba(25, 25, 25, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: "SF Pro Display","SF Pro Text","Inter",-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(246, 246, 255, 0.95);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.contact-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.action-icon {
    font-size: 1.4rem;
}

.contact-action small {
    font-size: 0.8rem;
    color: rgba(23, 23, 23, 0.6);
    letter-spacing: 0.2px;
}

.contact-form {
    margin: 0;
    display: flex;
    justify-content: center;
}

.contact-form .cta-button {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    max-width: 260px;
}
.contact-mac .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 36px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 2.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.contact-copy h2.section-title {
    text-align: center;
    margin-top: 0;
    font-size: 2.25rem;
}

.contact-description {
    color: rgba(25, 25, 25, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.4rem;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.35px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.action-icon {
    font-size: 1.5rem;
}

.contact-action small {
    font-size: 0.75rem;
    color: rgba(23, 23, 23, 0.6);
}

.contact-form {
    margin: 0;
    display: flex;
    justify-content: center;
}

.contact-form .cta-button {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    max-width: 220px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    border: 1px solid rgba(230, 225, 250, 0.6);
    border-radius: 32px;
    color: var(--text-dark);
    padding: 3rem 2.5rem;
    margin: 2rem auto 0;
    max-width: calc(100% - 4rem);
    width: min(100%, 1200px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12), 0 6px 24px rgba(167, 139, 250, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 18%;
    background: linear-gradient(to top, rgba(250, 250, 250, 0.95) 0%, transparent 100%);
    border-radius: 0 0 32px 32px;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    justify-items: center;
    width: 100%;
    text-align: center;
}

.footer-brand .logo {
    color: var(--primary-purple);
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand .logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand p {
    color: rgba(107, 114, 128, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

.footer-brand-summary {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: rgba(23, 23, 23, 0.65);
    line-height: 1.5;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--primary-purple);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-links ul li {
    margin: 0;
}

.footer-links ul li a {
    display: block;
    text-align: center;
    padding: 0.2rem 0;
}

.footer-links a,
.social-link {
    color: rgba(75, 85, 99, 0.85);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding: 0.25rem 0;
    text-align: center;
}

.footer-links a::after,
.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-purple);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover,
.social-link:hover {
    color: var(--primary-purple);
    transform: translateX(3px);
}

.footer-links a:hover::after,
.social-link:hover::after {
    width: 100%;
}

.footer-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 181, 253, 0.2);
    color: rgba(107, 114, 128, 0.65);
    font-size: 0.875rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-bottom a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

/* Mac Dock Style Bottom Bar */
.mac-dock {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
    width: 100%;
    max-width: 520px;
}

.dock-container {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 0.6rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14),
                0 3px 12px rgba(0, 0, 0, 0.08);
    pointer-events: all;
    transition: transform 0.3s ease;
}

.dock-container:hover {
    transform: translateY(-3px);
}

.dock-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0;
    position: relative;
}

.dock-icon svg {
    width: 24px;
    height: 24px;
}

.dock-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dock-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-icon:hover::after,
.dock-icon:focus::after {
    opacity: 1;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.98);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 16px;
    }

    .navbar-island {
        max-width: 100%;
        gap: 2rem;
    }

    .hero {
        padding: 3.5rem 0 5rem;
    }

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

    .services-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .references-track {
        gap: 28px;
    }

    .analytics-content {
        gap: 2rem;
    }

    .mac-dock {
        width: min(360px, 85vw);
    }

    .contact-card {
        max-width: 820px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 1.25rem 0;
    }

    .navbar-island {
        padding: 0.7rem 1.5rem;
        gap: 2rem;
        max-width: 92%;
    }

    .logo-image {
        max-height: 36px;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .nav-menu a {
        padding: 0.45rem 0.65rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-image-wrapper {
        height: 420px;
    }

    .hero-image-placeholder {
        width: min(360px, 100%);
        max-width: 360px;
        height: 420px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
    }

    .social-icons-float {
        display: none;
    }

    .about-services-content,
    .statistics-content,
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-services-title,
    .services-details-title,
    .statistics-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-services-image-wrapper {
        height: 420px;
    }

    .about-services-image-placeholder {
        width: min(360px, 100%);
        height: 420px;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
    }

    .services-icons-float {
        display: none;
    }

    .services-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card-compact {
        padding: 1.75rem;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1.25rem;
    }

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

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

    .testimonial-content {
        padding: 2.75rem;
    }

    .analytics-image {
        max-width: 100%;
    }

    .analytics-stats-float {
        display: none;
    }

    .analytics-overlay-card {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .references-section {
        padding: 3.5rem 0;
    }

    .references-title {
        font-size: 1.8rem;
    }

    .references-track {
        gap: 24px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.25rem;
    }

    .contact-actions {
        flex-direction: column;
    }

    .footer {
        padding: 2.5rem 2rem;
    }

    .mac-dock {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    html {
        padding: 4px;
    }

    body {
        border-width: 2.5px;
        border-radius: 8px;
        min-height: calc(100vh - 8px);
        padding-bottom: 0;
    }

    body::before {
        display: none;
    }

    body::after {
        display: none;
    }

    html::before,
    html::after {
        top: 4px;
        bottom: 4px;
        width: 2.5px;
    }

    html::before {
        left: 4px;
    }

    html::after {
        right: 4px;
    }

    .mac-dock {
        bottom: 85px;
    }

    .dock-container {
        padding: 0.5rem 1rem;
        gap: 1rem;
        border-radius: 18px;
    }

    .dock-icon {
        width: 38px;
        height: 38px;
    }

    .dock-icon svg {
        width: 20px;
        height: 20px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar-island {
        padding: 0.6rem 1.25rem;
        gap: 1.5rem;
        max-width: 95%;
        border-radius: 25px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-image {
        max-height: 32px;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .nav-menu a {
        padding: 0.4rem 0.6rem;
    }

    .hero {
        padding: 2rem 0 4rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .about-services-image-wrapper {
        height: 380px;
    }

    .about-services-image-placeholder {
        width: min(320px, 100%);
        height: 380px;
    }

    .about-services-title {
        font-size: 1.75rem;
    }

    .about-services-description {
        font-size: 1rem;
    }

    .statistics-title {
        font-size: 1.75rem;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .statistics-grid::before {
        width: 120px;
        height: 120px;
        filter: blur(25px);
    }

    .statistics-grid::after {
        width: 100px;
        height: 100px;
        filter: blur(20px);
    }

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

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

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .services-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-details-title {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .analytics-section {
        padding: 3.5rem 0;
    }

    .analytics-title {
        font-size: 1.75rem;
    }

    .analytics-image {
        max-width: 100%;
    }

    .analytics-overlay-card {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }

    .references-track {
        gap: 20px;
        animation-duration: 18s;
    }

    .logo-card {
        min-width: 120px;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem 1.25rem;
        gap: 1.25rem;
    }

    .contact-actions {
        gap: 0.8rem;
    }

    .mac-dock {
        width: min(320px, 85vw);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
        width: 100%;
    }

    .footer-links ul {
        display: block;
        text-align: center;
    }

    .footer-links ul li {
        display: block;
        margin: 0.5rem 0;
    }

    .footer-links ul li a {
        text-align: center;
    }

    .footer-links,
    .footer-social {
        align-items: center;
        text-align: center;
    }

    .footer-links h4,
    .footer-social h4 {
        width: 100%;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

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

    .footer-logo-image {
        max-height: 32px;
    }
}


@media (max-width: 640px) {
    .hero {
        padding: 1.5rem 0 3rem;
    }

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

    .hero-image-wrapper {
        height: 320px;
    }

    .hero-image-placeholder {
        width: min(300px, 100%);
        height: 380px;
    }

    .references-slider {
        padding: 0 0.5rem;
    }

    .references-track {
        gap: 16px;
        animation-duration: 16s;
    }

    .analytics-title-accent {
        letter-spacing: 0.4px;
    }

    .analytics-image {
        max-width: 100%;
    }

    .analytics-overlay-card {
        display: none;
    }

    .contact-card {
        padding: 1.75rem 1rem;
    }

    .references-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    html {
        padding: 3px;
    }

    body {
        border-width: 2px;
        border-radius: 6px;
        min-height: calc(100vh - 6px);
        padding-bottom: 0;
    }

    body::before {
        display: none;
    }

    body::after {
        display: none;
    }

    html::before,
    html::after {
        top: 3px;
        bottom: 3px;
        width: 2px;
    }

    html::before {
        left: 3px;
    }

    html::after {
        right: 3px;
    }

    html::before,
    html::after {
        top: 3px;
        bottom: 3px;
        width: 2px;
    }

    html::before {
        left: 3px;
    }

    html::after {
        right: 3px;
    }

    .mac-dock {
        bottom: 75px;
    }

    .dock-container {
        padding: 0.4rem 0.875rem;
        gap: 0.875rem;
        border-radius: 16px;
    }

    .dock-icon {
        width: 36px;
        height: 36px;
    }

    .dock-icon svg {
        width: 18px;
        height: 18px;
    }

    .dock-icon::after {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        bottom: -30px;
    }

    .navbar-island {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.25rem;
        border-radius: 20px;
    }

    .logo-image {
        max-height: 28px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

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

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .hero-image-wrapper {
        height: 280px;
    }

    .hero-image-placeholder {
        width: min(260px, 100%);
        height: 340px;
    }

    .about-services-image-wrapper {
        height: 320px;
    }

    .about-services-image-placeholder {
        width: min(280px, 100%);
        height: 320px;
    }

    .about-services-content,
    .services-details-grid,
    .statistics-grid {
        gap: 1.25rem;
    }

    .statistics-grid {
        padding: 0.75rem;
    }

    .analytics-image {
        max-width: 100%;
    }

    .references-track {
        gap: 12px;
    }

    .references-title {
        font-size: 1.4rem;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .footer {
        padding: 1.75rem 1.25rem;
        margin: 1rem auto;
        width: calc(100% - 16px);
        border-radius: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-logo-image {
        max-height: 28px;
    }
}

