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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background-image: url('logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 112.5rem;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 15%, #f0f0f0 30%, #e8e8e8 45%, #f5f5f5 60%, #fafafa 75%, #ffffff 100%);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.875rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    height: 6.25rem;
}

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

.logo-img {
    height: 7.5rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #333333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #333333;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.lets-talk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    justify-self: end;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.lets-talk-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 3.75rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Smooth transition effect - only affects the border area */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(17, 17, 17, 0.1) 20%,
        rgba(17, 17, 17, 0.3) 50%,
        rgba(17, 17, 17, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
    transform: translateY(5rem);
    transition: transform 1s ease-out;
    opacity: 0;
}

.hero.scrolled::after {
    transform: translateY(0);
    opacity: 1;
}


.hero-container {
    max-width: 98%;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1 {
    background: linear-gradient(90deg, #666666 0%, #999999 25%, #ffffff 50%, #999999 75%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: block;
    font-weight: 700;
}

.title-line-2 {
    background: linear-gradient(90deg, #888888 0%, #aaaaaa 25%, #ffffff 50%, #aaaaaa 75%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: block;
    font-weight: 600;
    font-size: 0.9em;
}

.title-line-3 {
    background: linear-gradient(90deg, #666666 0%, #999999 25%, #ffffff 50%, #999999 75%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: block;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 40.625rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.9rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-highlight {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.stat-highlight.visible {
    animation: statFadeIn 0.8s ease-out forwards;
}

.stat-highlight.visible:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-highlight.visible:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-highlight.visible:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1.5rem;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-highlight:last-child::after {
    display: none;
}

.stat-highlight .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-highlight:hover .stat-number {
    transform: scale(1.1);
}

.stat-highlight .stat-number.animating {
    animation: numberPulse 0.5s ease-out;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.stat-highlight .stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.stat-highlight:hover .stat-label {
    color: #ffffff;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-button.primary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    font-weight: 600;
}

.cta-button.secondary {
    background: #000000;
    color: #ffffff;
    border: none;
    font-size: 1.2rem;
    padding: 1.5rem 4.5rem;
    margin: 0 auto 3rem auto;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button.secondary:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

@keyframes smoothGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 
                    0 0 20px rgba(255, 255, 255, 0.1),
                    0 0 40px rgba(255, 255, 255, 0.05);
    }
    25% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 
                    0 0 30px rgba(255, 255, 255, 0.2),
                    0 0 60px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 
                    0 0 40px rgba(255, 255, 255, 0.3),
                    0 0 80px rgba(255, 255, 255, 0.15);
    }
    75% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 
                    0 0 30px rgba(255, 255, 255, 0.2),
                    0 0 60px rgba(255, 255, 255, 0.1);
    }
}

@keyframes socialPulse {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.cta-button.primary:hover {
    background: #f0f0f0;
    color: #000000;
}

.cta-button.secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Automation Animation */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.automation-visual {
    position: relative;
    width: 31.25rem;
    height: 31.25rem;
}

.node {
    position: absolute;
    width: 2.1875rem;
    height: 2.1875rem;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 2.5rem rgba(255, 255, 255, 0.6);
    animation: pulse 2s infinite;
}

.node-1 {
    top: 3.125rem;
    left: 3.125rem;
    animation-delay: 0s;
}

.node-2 {
    top: 3.125rem;
    right: 3.125rem;
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 3.125rem;
    left: 3.125rem;
    animation-delay: 1s;
}

.node-4 {
    bottom: 3.125rem;
    right: 3.125rem;
    animation-delay: 1.5s;
}

.node-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.25s;
}

.connection {
    position: absolute;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: flow 3s infinite;
    box-shadow: 0 0 0.625rem rgba(255, 255, 255, 0.3);
}

.connection-1 {
    top: 3.75rem;
    left: 4.375rem;
    width: 16.25rem;
    animation-delay: 0s;
}

.connection-2 {
    top: 3.75rem;
    left: 4.375rem;
    width: 12.5rem;
    transform: rotate(45deg);
    transform-origin: left;
    animation-delay: 0.5s;
}

.connection-3 {
    bottom: 3.75rem;
    left: 4.375rem;
    width: 16.25rem;
    animation-delay: 1s;
}

.connection-4 {
    top: 50%;
    left: 50%;
    width: 6.25rem;
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 1.5s;
}

.flow-line {
    position: absolute;
    height: 0.1875rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: flow 2s infinite;
    box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.4);
}

.flow-1 {
    top: 6.25rem;
    left: 6.25rem;
    width: 12.5rem;
    animation-delay: 0.3s;
}

.flow-2 {
    top: 12.5rem;
    right: 6.25rem;
    width: 9.375rem;
    animation-delay: 0.8s;
}

.flow-3 {
    bottom: 6.25rem;
    left: 9.375rem;
    width: 6.25rem;
    animation-delay: 1.3s;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111111 0%, #0f0f0f 10%, #0a0a0a 30%, #0a0a0a 70%, #0f0f0f 90%, #111111 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

/* Professional section divider - top */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Professional section divider - bottom */
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Professional scroll transition effects */
@keyframes professionalSlideIn {
    0% {
        transform: translateY(120px) scaleY(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
}

@keyframes professionalSlideOut {
    0% {
        transform: translateY(-120px) scaleY(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
}

/* Simple transition overlay - removed complex effects */

.section-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.1));
}

.about .section-title {
    font-size: 4.5rem;
    text-align: left;
    margin-bottom: 4rem;
    margin-left: -2rem;
    padding-left: 2rem;
}

.services-title {
    color: #ffffff;
}

.about-title {
    color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.about .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.profile-img {
    width: 100%;
    max-width: 28.125rem;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.profile-img:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.photo-placeholder {
    width: 100%;
    max-width: 25rem;
    height: 25rem;
    background: rgba(30, 41, 59, 0.3);
    border: 0.125rem dashed #58a6ff;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.placeholder-content {
    padding: 2rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
    text-align: left;
    width: 100%;
}


.about-title-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.about-name {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    text-align: left;
}

.about-intro {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-align: left;
}

.about-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-align: left;
}

/* About Focus Areas */
.about-focus {
    margin: 2.5rem 0 0 0;
    position: relative;
    z-index: 2;
}

.focus-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

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

.focus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.focus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
}

.focus-item:hover::before {
    left: 100%;
}

.focus-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.08);
}

.focus-item i {
    font-size: 1.5rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.2));
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.focus-item:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.3));
}

.focus-item span {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.focus-item:hover span {
    color: #ffffff;
    transform: translateX(2px);
}


.about-skills {
    position: relative;
    z-index: 2;
}

.skills-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

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

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.4rem;
    padding: 0.6rem 0.8rem;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
}

.credential-item:hover {
    border-color: #58a6ff;
    background: rgba(26, 26, 26, 0.6);
    transform: translateX(5px);
}

.credential-item i {
    color: #58a6ff;
    font-size: 1.2rem;
}

.credential-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111111 0%, #0f0f0f 10%, #0a0a0a 30%, #0a0a0a 70%, #0f0f0f 90%, #111111 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

/* Professional section divider - top */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Enhanced smooth transition from Services to Results - bottom fade */
/* Professional section divider - bottom */
.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.services .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-height: 15.625rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    animation: shimmer 3s ease-in-out infinite;
}

.service-card:hover::before {
    left: 100%;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    animation: iconFloat 4s ease-in-out infinite;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-3px);
    color: #e0e0e0;
    animation-play-state: paused;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #d0d0d0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #58a6ff, #ffffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(88, 166, 255, 0.2);
    border-color: #58a6ff;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
    position: relative;
}


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

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.author-info span {
    font-size: 1rem;
    color: #58a6ff;
    font-weight: 500;
}

/* Small Social Media Links */
.social-links-small {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.social-link-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.social-link-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #000000;
    border-color: #000000;
}

.social-link-small i {
    font-size: 1.2rem;
    color: #666666;
    transition: all 0.3s ease;
}

.social-link-small:hover i {
    color: #ffffff;
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.section-badge:hover {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.badge-number {
    width: 2.5rem;
    height: 2.5rem;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.badge-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.section-badge:hover .badge-number::before {
    transform: translateX(100%);
}

.badge-text {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111111 0%, #0f0f0f 10%, #0a0a0a 30%, #0a0a0a 70%, #0f0f0f 90%, #111111 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

/* Professional section divider - top */
.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Professional section divider - bottom */
.results::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.results .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.results-title {
    color: #ffffff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-height: 12.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(2rem);
    animation: slideInUp 0.6s ease forwards;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }
.result-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    animation: shimmer 3s ease-in-out infinite;
}

.result-card:hover::before {
    left: 100%;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.result-card:hover {
    transform: translateY(-0.75rem) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4), 0 0 2rem rgba(255, 255, 255, 0.1);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.result-number::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.125rem;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: width 0.6s ease;
}

.result-card:hover .result-number::after {
    width: 100%;
}

.result-card:hover .result-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3));
}

.result-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.result-card:hover .result-label {
    color: #f0f0f0;
    transform: translateY(-0.125rem);
}

.result-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.result-card:hover .result-description {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-0.125rem);
}

/* Testimonial Section */
.testimonial-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(3rem);
    animation: slideInUp 0.8s ease 0.6s forwards;
}

.testimonial-content {
    max-width: 90rem;
    width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 255, 255, 0.05);
    animation: testimonialGlow 3s ease-in-out infinite;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: testimonialShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

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

.testimonial-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 32px rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    transition: all 0.3s ease;
    animation: testimonialGlow 2s ease-in-out infinite;
}

@keyframes testimonialGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 32px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

@keyframes testimonialShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.testimonial-quote {
    padding: 4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
}

.testimonial-author-section {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 0 0 2rem 0;
    display: block;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.testimonial-photo:hover {
    transform: scale(1.05) translateY(0);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.testimonial-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    text-align: left;
    max-width: 100%;
    font-style: normal;
}

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

.testimonial-note {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeInUp 0.6s ease 1.4s forwards;
    position: relative;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    align-items: center;
    width: 100%;
    text-align: center;
}

.testimonial-author-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.testimonial-author-company {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(160, 174, 192, 1);
    margin: 0;
    line-height: 1.2;
}

/* Client Logo Container */
.client-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 3rem 0;
    position: relative;
    z-index: 2;
}

.client-logo {
    max-width: 280px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}



/* Process Section */
.process {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111111 0%, #0f0f0f 10%, #0a0a0a 30%, #0a0a0a 70%, #0f0f0f 90%, #111111 100%);
    position: relative;
    overflow: hidden;
}

/* Professional section divider - bottom */
.process::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Professional section divider - top */
.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 6rem;
}

.process-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.5s both;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Main timeline line - animated gradient */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 10%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.5) 30%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.7) 60%,
        rgba(255, 255, 255, 0.5) 70%,
        rgba(255, 255, 255, 0.3) 80%,
        rgba(255, 255, 255, 0.1) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: 100% 200%;
    animation: timelineFlow 3s ease-in-out infinite;
}

/* Animated flowing line effect */
.process-timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    transform: translateX(-50%);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 8px rgba(255, 255, 255, 0.6),
        0 0 16px rgba(255, 255, 255, 0.4),
        0 0 24px rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* Timeline states */
.process-timeline.visible::before {
    opacity: 1;
    animation: timelineFlow 3s ease-in-out infinite;
}

.process-timeline.visible::after {
    opacity: 1;
    animation: timelineGrow 2s ease-out forwards;
}

@keyframes timelineFlow {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes timelineGrow {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

/* Timeline dots/nodes at each step */
.process-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 10;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 0 0 rgba(255, 255, 255, 0.4),
        0 0 8px rgba(255, 255, 255, 0.3);
}

.process-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 9;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: nodePulse 2s ease-in-out infinite;
}

.process-timeline.visible .process-step::before {
    opacity: 1;
    animation: nodeAppear 0.8s ease-out forwards, nodePulse 2s ease-in-out 0.8s infinite;
}

.process-timeline.visible .process-step::after {
    opacity: 1;
}

.process-step:nth-child(1)::before { animation-delay: 0.2s; }
.process-step:nth-child(2)::before { animation-delay: 0.4s; }
.process-step:nth-child(3)::before { animation-delay: 0.6s; }
.process-step:nth-child(4)::before { animation-delay: 0.8s; }
.process-step:nth-child(5)::before { animation-delay: 1.0s; }

.process-step:nth-child(1)::after { animation-delay: 0.2s; }
.process-step:nth-child(2)::after { animation-delay: 0.4s; }
.process-step:nth-child(3)::after { animation-delay: 0.6s; }
.process-step:nth-child(4)::after { animation-delay: 0.8s; }
.process-step:nth-child(5)::after { animation-delay: 1.0s; }

@keyframes nodeAppear {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 0 0 rgba(255, 255, 255, 0.4),
            0 0 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 0 8px rgba(255, 255, 255, 0.2),
            0 0 16px rgba(255, 255, 255, 0.4);
    }
}

/* Connection lines from timeline to cards */
.step-card {
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: translateY(-50%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    z-index: 1;
}

.step-left .step-card::after {
    right: 100%;
    margin-right: 20px;
}

.step-right .step-card::after {
    left: 100%;
    margin-left: 20px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.process-timeline.visible .step-card::after {
    opacity: 1;
    width: 160px;
}

.process-step {
    position: relative;
    margin-bottom: 5rem;
    opacity: 0;
    animation: slideInFromSide 0.6s ease forwards;
    z-index: 2;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1.0s; }

.step-left {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.step-right {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    max-width: 420px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.step-number {
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.8rem;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.step-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}


@keyframes slideInFromSide {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-right {
    animation-name: slideInFromRight;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-guarantee {
    margin-top: 6rem;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.guarantee-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #000000;
    font-size: 2rem;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: smoothClockRotate 8s linear infinite;
    transition: all 0.3s ease;
}

.guarantee-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.guarantee-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transition: all 0.3s ease;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes titleGlow {
    0% { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        filter: brightness(1);
    }
    100% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        filter: brightness(1.1);
    }
}

@keyframes timelinePulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translateX(-50%) scaleY(1);
    }
    50% { 
        opacity: 0.6;
        transform: translateX(-50%) scaleY(1.1);
    }
}

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

@keyframes stepGlow {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        color: rgba(255, 255, 255, 0.7);
    }
    50% { 
        transform: scale(1.1);
        color: rgba(255, 255, 255, 0.9);
    }
}

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

@keyframes iconRotate {
    0% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

@keyframes iconGlow {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes premiumShimmer {
    0%, 100% { 
        transform: translateX(-100%) rotate(45deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(100%) rotate(45deg);
        opacity: 0.6;
    }
}

@keyframes borderGlow {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.02);
    }
}

@keyframes smoothClockRotate {
    0% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111111 0%, #0f0f0f 10%, #0a0a0a 30%, #0a0a0a 70%, #0f0f0f 90%, #111111 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}



/* Enhanced smooth transition from Process to FAQ - top fade */
/* Professional section divider - top */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Flat transition from FAQ to CTA */
/* Professional section divider - bottom (transition to white CTA) */
.faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.faq .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.faq-top-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0 auto 3rem auto;
    border-radius: 2px;
}

.faq-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    padding: 0;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 24px rgba(255, 255, 255, 0.05);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover::after {
    left: 100%;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 0 32px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: transparent;
}

.faq-item.active .faq-question {
    padding-bottom: 1.5rem;
}

.faq-question h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
}

.faq-item:hover .faq-question h3 {
    color: #f0f0f0;
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.faq-icon i {
    width: 0.875rem;
    height: 0.875rem;
    background-image: url('down-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1) opacity(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
    filter: brightness(0) invert(1) opacity(1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 2.5rem 2.5rem 2.5rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer p {
    animation: fadeInUp 0.5s ease 0.2s both;
}

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

/* FAQ Contact Message */
.faq-contact {
    text-align: center;
    margin-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 2px;
}

.faq-contact-text {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 500;
}

.faq-contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 0.6rem 2.2rem 0.6rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(255, 255, 255, 0.1),
        0 1px 4px rgba(0, 0, 0, 0.1);
}

.faq-contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.faq-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(255, 255, 255, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
}

.faq-contact-link:hover::before {
    left: 100%;
}

.faq-contact-link:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(255, 255, 255, 0.15),
        0 1px 5px rgba(0, 0, 0, 0.1);
}

.faq-contact-link::after {
    content: '→';
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.faq-contact-link:hover::after {
    transform: translateY(-50%) translateX(5px);
}

/* CTA Section */
.cta {
    min-height: 100vh;
    padding: 8rem 0 6rem 0;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Professional section divider - top (transition from dark FAQ to white CTA) */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Decorative background elements */
.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: 8%;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(20px) translateX(-15px);
    }
}

.cta .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 12rem - 6rem);
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 65rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-icon-wrapper {
    margin-bottom: -1rem;
}

.cta-main-icon {
    width: 400px;
    height: 400px;
    max-width: 60vw;
    max-height: 40vh;
    margin: 0 auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    padding: 0;
}

.cta-main-icon:hover {
    transform: scale(1.02);
}

.cta-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
    transition: all 0.4s ease;
}

.cta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.copyright p {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
}

.cta-title {
    font-size: 5.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: -2rem;
    color: #000000;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 1.6rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 400;
    text-align: center;
}

.cta-strategy-text {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 2.5rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.cta-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #000000;
    font-weight: 500;
    padding: 0.9rem 2rem;
    background: transparent;
    border-radius: 2rem;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-feature-item:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.cta-feature-item i {
    color: #000000;
    font-size: 1.2rem;
}


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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: scale(1.4);
        opacity: 0.8;
        box-shadow: 0 0 60px rgba(255, 255, 255, 0.9);
    }
}

@keyframes flow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scaleX(1);
    }
}


/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive Design - CSS Zoom Scaling */

/* Base design for 2K displays (2560px width) */
html {
    font-size: 16px;
}

/* Use CSS zoom for proportional scaling - much more reliable */
@media (max-width: 2559px) and (min-width: 1921px) {
    body {
        zoom: calc(100vw / 2560);
    }
}

/* 1080p screens (1920px) - zoom to 75% */
@media (max-width: 1920px) and (min-width: 1441px) {
    body {
        zoom: 0.75;
        min-height: 133.33vh;
    }
    
    .hero {
        min-height: 133.33vh;
    }
}

/* 1440p screens (1440px) - zoom to 56.25% */
@media (max-width: 1440px) and (min-width: 1281px) {
    body {
        zoom: 0.5625;
        min-height: 177.78vh;
    }
    
    .hero {
        min-height: 177.78vh;
    }
}

/* 720p screens (1280px) - zoom to 50% */
@media (max-width: 1280px) and (min-width: 1025px) {
    body {
        zoom: 0.5;
        min-height: 200vh;
    }
    
    .hero {
        min-height: 200vh;
    }
}

/* Tablet screens (1024px) - zoom to 40% */
@media (max-width: 1024px) and (min-width: 769px) {
    body {
        zoom: 0.4;
        min-height: 250vh;
    }
    
    .hero {
        min-height: 250vh;
    }
}

/* Mobile screens (768px and below) - Complete mobile redesign */
@media (max-width: 768px) {
    /* Reset everything for mobile */
    * {
        box-sizing: border-box;
    }
    
    body {
        zoom: 1 !important;
        min-height: auto !important;
        overflow-x: hidden;
        font-size: 16px;
    }
    
    /* Hide background logo */
    body::before {
        display: none !important;
    }
    
    /* Fix container */
    .container {
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    /* Fix header completely */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 15%, #f0f0f0 30%, #e8e8e8 45%, #f5f5f5 60%, #fafafa 75%, #ffffff 100%) !important;
        backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        height: 70px !important;
        padding: 0 !important;
    }
    
    .nav-container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 70px !important;
        grid-template-columns: none !important;
    }
    
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .logo-img {
        height: 40px !important;
        width: auto !important;
    }
    
    .logo-text {
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #000000 !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .lets-talk-btn {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        padding: 5px !important;
    }
    
    .hamburger span {
        width: 25px !important;
        height: 3px !important;
        background: #000 !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
    }
    
    /* Fix hero section completely */
    .hero {
        min-height: auto !important;
        padding: 80px 0 30px 0 !important;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Hide hero animation on mobile */
    .hero-animation {
        display: none !important;
    }
    
    /* Mobile transition adjustments - keep thin dividers */
    .about::before,
    .about::after,
    .services::before,
    .services::after,
    .results::before,
    .results::after,
    .process::before,
    .process::after,
    .faq::before,
    .faq::after,
    .cta::before {
        height: 1px !important;
    }
    
    .hero-container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        display: block !important;
        text-align: center !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 24px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        color: #ffffff !important;
        text-align: center !important;
        display: block !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        display: block !important;
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 3px !important;
        background: linear-gradient(90deg, #666666 0%, #999999 25%, #ffffff 50%, #999999 75%, #666666 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        color: #e0e0e0 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }
    
    .hero-features {
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin: 1rem 0 !important;
        align-items: center !important;
    }
    
    .feature-item {
        width: 100% !important;
        max-width: 260px !important;
        justify-content: center !important;
        padding: 0.8rem 1.2rem !important;
        font-size: 13px !important;
    }
    
    .feature-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
        padding: 1rem 0 !important;
    }
    
    .stat-highlight::after {
        display: none !important;
    }
    
    .stat-highlight .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-highlight .stat-label {
        font-size: 0.75rem !important;
    }
    
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .cta-button {
        width: 100% !important;
        max-width: 280px !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        text-align: center !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .cta-button.primary {
        background: #ffffff !important;
        color: #000000 !important;
        border: 2px solid #ffffff !important;
    }
    
    .cta-button.secondary {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #000000 !important;
        margin-bottom: 0 !important;
        padding: 1rem 2.5rem !important;
        font-size: 1rem !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
    }
    
    .cta-button.secondary:hover {
        background: #1a1a1a !important;
        border-color: #1a1a1a !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Fix about section */
    .about {
        padding: 40px 20px !important;
        background: #111111 !important;
    }
    
    .about-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        text-align: left !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .about-image {
        margin-bottom: 30px !important;
        display: flex !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    
    .profile-img {
        max-width: 160px !important;
        height: auto !important;
        border-radius: 1rem !important;
        border: 0.0625rem solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.2) !important;
        object-fit: contain !important;
    }
    
    .about-text {
        padding: 0 !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .about .section-title {
        font-size: 20px !important;
        color: #ffffff !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        padding-left: 0 !important;
    }
    
    .about-title-badge {
        padding: 6px 12px !important;
        font-size: 12px !important;
        margin-bottom: 10px !important;
        border-radius: 12px !important;
    }
    
    .about-name {
        font-size: 18px !important;
        color: #ffffff !important;
        margin-bottom: 8px !important;
    }
    
    .about-intro {
        font-size: 15px !important;
        color: #ffffff !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
    }
    
    .about-description {
        font-size: 14px !important;
        color: #d0d0d0 !important;
        line-height: 1.6 !important;
        margin-bottom: 1.2rem !important;
    }
    
    .about-focus {
        margin: 2rem 0 0 0 !important;
    }
    
    .focus-title {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important;
        text-align: left !important;
    }
    
    .focus-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    
    .focus-item {
        padding: 1rem 1.2rem !important;
        border-radius: 10px !important;
    }
    
    .focus-item i {
        font-size: 1.2rem !important;
    }
    
    .focus-item span {
        font-size: 0.9rem !important;
    }
    
    
    .skills-title {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    
    .skills-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    .skill-item {
        margin-bottom: 10px !important;
        padding: 12px 16px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
    }
    
    .about-visual {
        display: none !important;
    }
    
    /* Fix services section */
    .services {
        padding: 40px 20px !important;
        background: #0a0a0a !important;
    }
    
    .services .section-title {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .services-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    .service-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        padding: 20px 15px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
        transition: all 0.3s ease !important;
    }
    
    .service-icon {
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        color: #ffffff !important;
        margin: 0 auto 15px auto !important;
        border: none !important;
    }
    
    .service-card h3 {
        font-size: 16px !important;
        color: #ffffff !important;
        margin-bottom: 10px !important;
    }
    
    .service-card p {
        font-size: 13px !important;
        color: #d0d0d0 !important;
        line-height: 1.5 !important;
    }
    
    /* Fix Section Badges */
    .section-badge {
        padding: 8px 12px !important;
        margin-bottom: 20px !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    .badge-number {
        width: 20px !important;
        height: 20px !important;
        font-size: 11px !important;
        margin-right: 8px !important;
    }
    
    .badge-text {
        font-size: 12px !important;
        color: #000000 !important;
    }
    
    /* Fix Results section */
    .results {
        padding: 40px 20px !important;
        background: #0a0a0a !important;
    }
    
    .results .section-title {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .results-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    .result-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        padding: 30px 20px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        transition: all 0.3s ease !important;
        min-height: auto !important;
    }
    
    .result-number {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin-bottom: 10px !important;
    }
    
    .result-label {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        margin-bottom: 10px !important;
    }
    
    .result-description {
        font-size: 14px !important;
        color: #d0d0d0 !important;
        line-height: 1.5 !important;
    }
    
    /* Fix Testimonial section */
    .testimonial-section {
        margin-top: 30px !important;
        padding: 0 20px !important;
    }
    
    .testimonial-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        border-radius: 16px !important;
        max-width: 100% !important;
    }
    
    .testimonial-quote {
        padding: 2.5rem 1.5rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .testimonial-author-section {
        padding: 2.5rem 1.5rem !important;
        border-left: none !important;
    }
    
    .testimonial-photo {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .testimonial-text {
        font-size: 4.5rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-align: center !important;
        font-style: normal !important;
        font-weight: 500 !important;
        letter-spacing: -0.01em !important;
    }
    
    .testimonial-author-name {
        font-size: 1.3rem !important;
    }
    
    .testimonial-author-company {
        font-size: 1rem !important;
    }
    
    .client-logo-container {
        margin: 1.5rem 0 2rem 0 !important;
    }
    
    .client-logo {
        max-width: 200px !important;
    }
    
    .testimonial-note {
        font-size: 14px !important;
        margin-top: 20px !important;
        color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .testimonial-author {
        gap: 0.8rem !important;
        margin-top: 2rem !important;
        flex-direction: column !important;
    }
    
    .testimonial-author-header {
        gap: 0.8rem !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    
    .testimonial-photo {
        width: 90px !important;
        height: 90px !important;
        margin-bottom: 2rem !important;
    }
    
    .testimonial-text {
        font-size: 1.2rem !important;
        text-align: left !important;
        line-height: 1.4 !important;
    }
    
    .client-logo {
        max-width: 150px !important;
    }
    
    .testimonial-author-name {
        font-size: 1.1rem !important;
    }
    
    .testimonial-author-company {
        font-size: 0.9rem !important;
    }
    
    
    /* Process Section Mobile */
    .process {
        padding: 40px 0 !important;
    }
    
    .process-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .process-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        padding: 0 20px !important;
    }
    
    .process-header {
        margin-bottom: 4rem !important;
    }
    
    .process-timeline::before {
        left: 20px !important;
    }
    
    .process-step {
        margin-bottom: 2.5rem !important;
    }
    
    .step-left,
    .step-right {
        justify-content: center !important;
    }
    
    .step-card {
        padding: 1.2rem 1rem !important;
        max-width: 100% !important;
        margin: 0 15px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 10px !important;
    }
    
    .step-number {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
        color: rgba(255, 255, 255, 0.4) !important;
    }
    
    .step-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
        font-weight: 500 !important;
    }
    
    .step-description {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .process-guarantee {
        margin-top: 4rem !important;
    }
    
    .guarantee-content {
        padding: 2rem 1.5rem !important;
        margin: 0 20px !important;
    }
    
    .guarantee-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .guarantee-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .guarantee-text {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile Process Section Fixes - ONLY for mobile */
    .process-timeline::before,
    .process-timeline::after {
        display: none !important;
    }
    
    .process-step {
        margin-bottom: 2.5rem !important;
        position: relative !important;
        width: 100% !important;
        display: block !important;
    }
    
    .step-left,
    .step-right {
        display: block !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .step-card {
        background: rgba(255, 255, 255, 0.03) !important;
        backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        padding: 1.5rem 1.2rem !important;
        margin: 0 15px !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    .step-card:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .step-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-bottom: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .step-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
        flex: 1 !important;
        min-width: 200px !important;
        font-weight: 500 !important;
    }
    
    .step-duration {
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        padding: 0.3rem 0.8rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        white-space: nowrap !important;
    }
    
    .step-description {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.2rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .step-deliverables {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .deliverable-item {
        display: flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
        padding: 0.8rem 1rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        transition: all 0.3s ease !important;
    }
    
    .deliverable-item:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        transform: translateX(4px) !important;
    }
    
    .deliverable-item i {
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
        width: 16px !important;
        text-align: center !important;
    }
    
    .step-number {
        font-size: 3rem !important;
        margin-bottom: 0.8rem !important;
        color: rgba(255, 255, 255, 0.3) !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    /* FAQ Section Mobile */
    .faq {
        padding: 40px 0 !important;
    }
    
    .faq-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem !important;
    }
    
    .faq-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        padding: 0 20px !important;
    }
    
    .faq-header {
        margin-bottom: 2rem !important;
    }
    
    .faq-item {
        margin-bottom: 0.8rem !important;
        border-radius: 10px !important;
    }
    
    .faq-question {
        padding: 1rem 1.5rem !important;
    }
    
    .faq-question h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        padding-right: 1.2rem !important;
        letter-spacing: 0.05px !important;
    }
    
    .faq-icon {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    .faq-icon i {
        font-size: 0.8rem !important;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem 1.5rem !important;
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .faq-contact {
        margin-top: 1.5rem !important;
        padding-bottom: 1.2rem !important;
    }
    
    .faq-contact-text {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .faq-contact-link {
        font-size: 0.8rem !important;
        padding: 0.5rem 1.8rem 0.5rem 1.2rem !important;
        letter-spacing: 0.2px !important;
    }
    
    .faq-contact-link::after {
        right: 0.6rem !important;
        font-size: 0.7rem !important;
    }
    
    .avatar-icon {
        width: 26px !important;
        height: 26px !important;
    }
    
    .avatar-head {
        width: 8px !important;
        height: 8px !important;
    }
    
    .avatar-body {
        width: 16px !important;
        height: 12px !important;
    }
    
    /* Fix CTA section */
    .cta {
        min-height: auto !important;
        padding: 50px 20px 40px 20px !important;
        background: #ffffff !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .cta-background-elements {
        display: none !important;
    }
    
    .cta-icon-wrapper {
        margin-bottom: 0 !important;
    }
    
    .cta-main-icon {
        width: 250px !important;
        height: 250px !important;
        max-width: 80vw !important;
        max-height: 30vh !important;
        padding: 0 !important;
    }
    
    .cta-icon-wrapper {
        margin-bottom: -0.5rem !important;
    }
    
    .cta-title {
        margin-top: -1rem !important;
        font-size: 32px !important;
    }
    
    .cta-logo-img {
        filter: brightness(0) !important;
    }
    
    .cta-title {
        font-size: 28px !important;
        color: #000000 !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }
    
    .cta-subtitle {
        font-size: 15px !important;
        color: #4a4a4a !important;
        margin-bottom: 15px !important;
        line-height: 1.5 !important;
    }
    
    .cta-strategy-text {
        font-size: 11px !important;
        color: #888888 !important;
        margin-bottom: 25px !important;
        font-weight: 400 !important;
        letter-spacing: 0.12em !important;
    }
    
    .cta-features {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 3rem !important;
    }
    
    .cta-feature-item {
        font-size: 0.9rem !important;
    }
    
    .cta-footer {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        padding-top: 30px !important;
        margin-top: 50px !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .social-link-small {
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border: 1px solid rgba(0, 0, 0, 0.15) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }
    
    .social-link-small:hover {
        background: #000000 !important;
        border-color: #000000 !important;
    }
    
    .social-link-small i {
        color: #666666 !important;
        font-size: 16px !important;
    }
    
    .social-link-small:hover i {
        color: #ffffff !important;
    }
    
    .copyright p {
        font-size: 13px !important;
        color: #999999 !important;
        margin: 0 !important;
    }
    
}

/* Mobile styles are now handled in the main mobile media query above */

/* Mobile navigation styles are now handled in the main mobile media query above */
