/* ============================= */
/*    HERO SECTION STYLES        */
/* ============================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Sky gradient background */
    background: linear-gradient(180deg, 
        #1a1a2e 0%, 
        #16213e 20%, 
        #1f3a5f 40%, 
        #4a6fa5 60%, 
        #87ceeb 80%, 
        #b8d4e8 100%
    );
    padding: 100px 5% 60px;
}

/* Animated background orbs */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Moving clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    filter: blur(2px);
    animation: moveCloud linear infinite;
}

.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: -200px;
    animation-duration: 45s;
    animation-delay: 0s;
}
.cloud-1::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}
.cloud-1::after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 80px;
}

.cloud-2 {
    width: 160px;
    height: 50px;
    top: 25%;
    left: -160px;
    animation-duration: 35s;
    animation-delay: -15s;
    opacity: 0.12;
}
.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 25px;
}
.cloud-2::after {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 65px;
}

.cloud-3 {
    width: 240px;
    height: 70px;
    top: 10%;
    left: -240px;
    animation-duration: 55s;
    animation-delay: -25s;
    opacity: 0.1;
}
.cloud-3::before {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 40px;
}
.cloud-3::after {
    width: 120px;
    height: 120px;
    top: -60px;
    left: 100px;
}

.cloud-4 {
    width: 180px;
    height: 55px;
    top: 35%;
    left: -180px;
    animation-duration: 40s;
    animation-delay: -5s;
    opacity: 0.08;
}
.cloud-4::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 28px;
}
.cloud-4::after {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 72px;
}

.cloud-5 {
    width: 220px;
    height: 65px;
    top: 5%;
    left: -220px;
    animation-duration: 50s;
    animation-delay: -35s;
    opacity: 0.18;
}
.cloud-5::before {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 35px;
}
.cloud-5::after {
    width: 110px;
    height: 110px;
    top: -55px;
    left: 90px;
}

@keyframes moveCloud {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 300px));
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: floatOrb 40s ease-in-out infinite;
    will-change: transform;
}

.star-1 { top: 8%; left: 10%; }
.star-2 { top: 15%; left: 25%; }
.star-3 { top: 5%; left: 45%; }
.star-4 { top: 20%; left: 60%; }
.star-5 { top: 12%; left: 75%; }
.star-6 { top: 18%; left: 88%; }
.star-7 { top: 25%; left: 15%; }
.star-8 { top: 30%; left: 35%; }
.star-9 { top: 22%; left: 55%; }
.star-10 { top: 28%; left: 70%; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6c63ff 0%, #ff6b6b 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffdd57 0%, #6c63ff 100%);
    top: 50%;
    right: -50px;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #00d9ff 0%, #6c63ff 100%);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(0, -100px) scale(1); }
    75% { transform: (-50px, -50px) scale(0.9); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 100%;
    padding: 2rem;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--accent-2);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

/* Title */
.hero-title {
    margin: 0 0 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.title-highlight {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #6c63ff 0%, #ff6b6b 50%, #ffdd57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: rgba(255,255,255,0.8);
    margin: 0 0 1rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.text-highlight {
    color: var(--accent-2);
    font-weight: 600;
}

/* Typing animation */
.typing-text {
    display: inline;
    overflow: visible;
    vertical-align: baseline;
    white-space: nowrap;
}

.typing-item {
    display: inline;
    color: var(--accent);
    font-weight: 700;
    opacity: 0;
    position: absolute;
    animation: typing 9s steps(1) infinite;
}

.typing-item:nth-child(2) { animation-delay: 3s; }
.typing-item:nth-child(3) { animation-delay: 6s; }

@keyframes typing {
    0%, 33.33% { opacity: 1; position: relative; }
    33.34%, 100% { opacity: 0; position: absolute; }
}

/* Description */
.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: none;
    margin: 0 auto 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'SEGO', 'Segoe UI', system-ui, sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6c63ff 0%, #5652d4 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.5);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--accent-2);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    margin: 10px auto 0;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ============================= */
/*    SECTION COMMON STYLES      */
/* ============================= */

.section {
    padding: 100px 5%;
}

.container {
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1f1144;
    margin: 0;
    line-height: 1.5;
    margin: auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 1rem 0 0;
}

.text-gradient {
    background: linear-gradient(135deg, #6c63ff 0%, #ff6b6b 50%, #ffdd57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 50px;
}

/* ============================= */
/*    ABOUT SECTION STYLES       */
/* ============================= */

.page-home .about-section {
    background: #fff;
}

.page-home .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 5%;
}

.page-home .about-content {
    padding-right: 2rem;
}

.page-home .about-lead {
    font-size: 1.2rem;
    color: #1f1144;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.page-home .about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.page-home .about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c63ff 0%, #5652d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.feature-text h4 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    color: #1f1144;
}

.feature-text p {
    margin: 0;
    font-size: 1rem;
    overflow: visible;
    white-space: normal;
}

/* About Visual */
.page-home .about-visual {
    position: relative;
    min-height: 400px;
    height: auto;
}

.page-home .about-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.center-orb {
    display: none;
}

.card-float {
    position: relative !important;
    width: 100% !important;
    height: 100px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    padding: 1rem !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.page-home .card-float i {
    font-size: 2rem !important;
    color: #6c63ff !important;
}

.page-home .card-float span {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #1f1144 !important;
}

.page-home .card-float:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.page-home .card-1 { animation: floatCard 4s ease-in-out infinite; }
.page-home .card-2 { animation: floatCard 4s ease-in-out infinite 0.5s; }
.page-home .card-3 { animation: floatCard 4s ease-in-out infinite 1s; }
.page-home .card-4 { animation: floatCard 4s ease-in-out infinite 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================= */
/*    SERVICES SECTION STYLES    */
/* ============================= */

.services-section {
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #ffdd57);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
}

.service-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 221, 87, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #6c63ff 0%, #5652d4 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c63ff 0%, #5652d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1f1144;
    margin: 0 0 0.75rem;
}

.service-card > p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
}

/* ============================= */
/*    PROCESS SECTION STYLES     */
/* ============================= */

.process-section {
    background: #fff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c63ff 0%, #5652d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
}

.process-item:hover .process-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.5);
}

.process-content {
    padding: 0 1rem;
}

.process-content h3 {
    font-size: 1.2rem;
    color: #1f1144;
    margin: 0 0 0.75rem;
}

.process-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6c63ff, transparent);
    z-index: -1;
}

/* ============================= */
/*  TESTIMONIALS SECTION STYLES  */
/* ============================= */

.testimonials-section {
    background: linear-gradient(135deg, #1f1144 0%, #302b63 100%);
    color: white;
}

.testimonials-section .section-badge {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--accent-2);
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--accent-2);
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.author-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-2);
    transform: scale(1.2);
}

/* ============================= */
/*    BRANDS SECTION STYLES      */
/* ============================= */

.brands-section {
    background: #fff;
    text-align: center;
}

.brands-label {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand-item {
    font-size: 2rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.brand-item:hover {
    color: var(--accent);
    transform: scale(1.2);
}

/* ============================= */
/*    CTA SECTION STYLES         */
/* ============================= */

.cta-section {
    background: linear-gradient(135deg, #6c63ff 0%, #ff6b6b 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.cta-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -100px;
    left: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

.cta-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: white;
    bottom: -80px;
    right: -50px;
    animation: floatOrb 8s ease-in-out infinite 4s;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white;
    margin: 1rem 1rem 2rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin: 1rem 1rem 2rem;
}

.cta-content .btn-primary {
    background: white;
    color: var(--accent);
}

.cta-content .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ============================= */
/*    ANIMATIONS                */
/* ============================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================= */
/*    RESPONSIVE STYLES         */
/* ============================= */

@media (max-width: 1024px) {
    .page-home .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .page-home .about-content {
        padding-right: 0;
    }
    
    .page-home .about-visual {
        min-height: 300px;
        height: auto;
    }
    
    .page-home .about-card {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .service-card > p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 1% 50px;
    }
    
    .hero-title {
        margin-bottom: 0.5rem;
    }
    
    .title-line, .title-highlight {
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .about-lead {
        font-size: 1rem !important;
    }
    
    .feature-card p,
    .service-card p,
    .process-content p {
        font-size: 0.85rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem !important;
    }
    
    .cta-content h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .cta-content p {
        font-size: 0.95rem !important;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-line {
        display: none;
    }
    
    .brand-item {
        font-size: 1.5rem;
    }

    .service-card > p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    }

    .process-number {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #6c63ff 0%, #5652d4 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 500px;
        color: white;
        box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
        transition: all 0.3s ease;
    }

}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
