/* ========================================
   DEVEXTRA SOLUTIONS - MAIN STYLESHEET
   Modern Clean Design
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Brand Colors */
    --primary-color: #a93ff9;
    --secondary-color: #1a1a1a;
    --dark-color: #000000;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --cream: #fefefe;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(169, 63, 249, 0.1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 25px -5px rgba(169, 63, 249, 0.25);
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
    width: 100%;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(169, 63, 249, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(169, 63, 249, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a93ff9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.liquid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    filter: blur(40px);
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation: float1 8s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: rgba(255, 255, 255, 0.1);
    animation: float2 10s ease-in-out infinite;
}

.blob-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: 10%;
    background: rgba(255, 255, 255, 0.12);
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 100px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 150px) scale(0.9);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-120px, -80px) scale(1.15);
    }

    66% {
        transform: translate(80px, -120px) scale(0.95);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-100px, 100px) scale(0.9);
    }

    66% {
        transform: translate(50px, -80px) scale(1.1);
    }
}

.preloader-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    animation: fadeIn 0.6s ease-out;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 0.6s ease-out 0.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.loader-dots span {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: bounce 0.8s ease-in-out infinite;
}

.loader-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .preloader-content {
        padding: 40px 30px;
        border-radius: 20px;
        margin: 0 20px;
    }

    .brand-logo {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 12px;
    }

    .brand-tagline {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        margin-bottom: 30px;
        letter-spacing: 1.5px;
    }

    .liquid-blob {
        filter: blur(30px);
    }

    .blob-1 {
        width: 350px;
        height: 350px;
    }

    .blob-2 {
        width: 300px;
        height: 300px;
    }

    .blob-3 {
        width: 250px;
        height: 250px;
    }

    .loader-dots span {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .preloader-content {
        padding: 35px 25px;
        margin: 0 15px;
    }

    .brand-logo {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .brand-tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .blob-1 {
        width: 280px;
        height: 280px;
    }

    .blob-2 {
        width: 240px;
        height: 240px;
    }

    .blob-3 {
        width: 200px;
        height: 200px;
    }

    .loader-dots {
        gap: 10px;
    }

    .loader-dots span {
        width: 8px;
        height: 8px;
    }
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* ========== GLASS EFFECT ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(169, 63, 249, 0.08);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(169, 63, 249, 0.02) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(169, 63, 249, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 180px;
    width: auto;
    display: block;
    margin-top: -60px;
    margin-bottom: -60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b2dd8 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.btn-secondary:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-google {
    width: 100%;
    background: var(--white);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
}

.btn-google:hover {
    background: var(--light-gray);
    border-color: rgba(169, 63, 249, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-apple {
    width: 100%;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
}

.btn-apple:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero .particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(90deg, transparent 0px, rgba(102, 126, 234, 0.02) 1px, transparent 2px, transparent 50px),
        repeating-linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.015) 1px, transparent 2px, transparent 50px),
        linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    opacity: 0.08;
    border-radius: 50%;
    border: 3px dashed rgba(102, 126, 234, 0.3);
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--dark-color);
    opacity: 0.05;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    66% {
        transform: translate(-15px, 15px) rotate(-3deg);
    }
}

.hero-content {
    text-align: center;
    padding: 80px 60px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    min-height: 1.2em;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: underline-grow 2s ease-out 4s forwards;
    transform-origin: left;
}

@keyframes underline-grow {
    to {
        width: 100%;
    }
}

.hero-title::before {
    content: '|';
    position: absolute;
    right: -5px;
    color: var(--primary-color);
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.stat-item h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 3px dashed rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.stat-item p {
    color: rgba(52, 50, 49, 0.7);
    font-size: 0.95rem;
}

/* ========== SECTIONS ========== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 2px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(52, 50, 49, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
    background: #ffffff;
    padding: 100px 0;
}

.services-wrapper {
    margin-top: 50px;
}

/* Service Navigation */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-nav-btn {
    padding: 12px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-nav-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    padding: 40px 30px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(169, 63, 249, 0.15);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(169, 63, 249, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-color);
}

.service-icon {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 6px 14px;
    background: #f5f5f7;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
    color: #8b2dd8;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-nav {
        gap: 10px;
    }

    .service-nav-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ========== FEATURED PRODUCTS ========== */
.featured-products {
    background: #f5f5f7;
}

.section-badge {
    display: inline-block;
    background: rgba(169, 63, 249, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    margin-bottom: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Countdown (Coming Soon) */
.product-countdown {
    margin-top: 22px;
}

.product-countdown .countdown {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.product-countdown .cd-item {
    background: rgba(169, 63, 249, 0.06);
    padding: 10px 14px;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.product-countdown .cd-number {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.product-countdown .cd-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.6);
    margin-top: 4px;
}

.product-countdown .launched {
    font-weight: 700;
    color: var(--primary-color);
    padding: 10px 12px;
}

/* ========== WEBSITE TYPES (WordPress page) ========== */
.website-types {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.website-types .section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.website-types .section-title::after {
    display: none;
}


.website-types .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(52, 50, 49, 0.7);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.website-types .types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.website-types .type-item {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.website-types .type-item:hover {
    transform: translateY(-5px);
}

.website-types .type-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(169, 63, 249, 0.08), rgba(102, 126, 234, 0.05));
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.website-types .type-item:hover .type-icon {
    background: linear-gradient(135deg, rgba(169, 63, 249, 0.15), rgba(102, 126, 234, 0.1));
    transform: scale(1.05);
}

.website-types .type-item h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.website-types .type-item p {
    color: rgba(52, 50, 49, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .website-types {
        padding: 80px 0;
    }

    .website-types .types-grid {
        gap: 24px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .website-types .type-item {
        padding: 30px 20px;
    }

    .website-types .type-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}

.featured-card {
    border: 2px solid rgba(169, 63, 249, 0.3);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.ai-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.revolutionary-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(169, 63, 249, 0.1), rgba(169, 63, 249, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(169, 63, 249, 0.15);
}

.product-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(169, 63, 249, 0.15), rgba(169, 63, 249, 0.08));
    border-color: rgba(169, 63, 249, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.product-card p {
    color: rgba(52, 50, 49, 0.75);
    margin-bottom: 35px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
    background: #ffffff;
    padding: 100px 0;
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose .section-title {
    color: #1a1a2e;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.why-choose .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-line {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.feature-icon.icon-delivery {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon.icon-design {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-icon.icon-secure {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon.icon-global {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-icon.icon-innovation {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-icon.icon-support {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .feature-line {
        flex-direction: column;
        gap: 30px;
    }

    .feature-number {
        font-size: 4rem;
    }
}

/* ========== CLIENT DESK SECTION ========== */
.client-desk-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.client-desk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.client-desk-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.client-desk-content {
    color: white;
}

.section-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.badge-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    animation: badgeIconPulse 2s ease-in-out infinite;
}

@keyframes badgeIconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
}

.badge-text {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.client-desk-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-desk-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.client-desk-features {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.desk-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.desk-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.desk-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.desk-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.desk-feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.client-desk-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.client-desk-cta .btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.client-desk-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.client-desk-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.client-desk-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.client-desk-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.client-desk-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.visual-card.card-1 {
    top: 0;
    left: 0;
    width: 320px;
    animation-delay: 0s;
}

.visual-card.card-2 {
    top: 160px;
    right: 20px;
    width: 300px;
    animation-delay: 1s;
}

.visual-card.card-3 {
    bottom: 120px;
    left: 60px;
    width: 280px;
    animation-delay: 2s;
}

.visual-card.card-4 {
    bottom: 0;
    right: 80px;
    width: 300px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}

.card-title svg {
    color: #667eea;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(67, 233, 123, 0.1);
    color: #43e97b;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #43e97b;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.card-content {
    color: var(--secondary-color);
}

/* Development Progress Styles */
.dev-progress {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.progress-label {
    color: #666;
    font-weight: 500;
}

.progress-percentage {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.progress-bar-container {
    height: 8px;
    background: #f0f0f5;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.dev-phases {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
}

.phase-item.completed {
    color: #43e97b;
}

.phase-item.active {
    color: #667eea;
    font-weight: 600;
}

.phase-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    background: #f0f0f5;
    flex-shrink: 0;
}

.phase-item.completed .phase-icon {
    background: #43e97b;
    color: white;
}

.phase-item.active .phase-icon {
    background: #667eea;
    color: white;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Website Status Styles */
.status-metrics {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}

.metric-value.secure {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #43e97b;
}

/* Maintenance Actions Styles */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(5px);
    border-color: #667eea;
}

.action-btn svg {
    flex-shrink: 0;
}

/* Hosting Info Styles */
.hosting-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.info-label {
    color: #666;
}

.info-value {
    font-weight: 600;
    color: #1a1a2e;
}

.storage-bar {
    height: 6px;
    background: #f0f0f5;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.storage-fill {
    height: 100%;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 10px;
    transition: width 1s ease;

    background-clip: text;
}

.progress-value .label {
    display: block;
    font-size: 0.85rem;
    color: rgba(52, 50, 49, 0.6);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .client-desk-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .client-desk-visual {
        height: 500px;
    }

    .visual-card.card-1 {
        left: 0;
    }

    .visual-card.card-2 {
        right: 0;
    }

    .visual-card.card-3 {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .client-desk-section {
        padding: 80px 0;
    }

    .desk-feature {
        flex-direction: column;
        text-align: center;
    }

    .client-desk-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .client-desk-visual {
        height: 400px;
    }

    .visual-card {
        transform: scale(0.9);
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: #f5f5f7;
}

.cta-content {
    text-align: center;
    padding: 80px 60px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(52, 50, 49, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.8fr 0.8fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    columns: 1;
    column-gap: 20px;
}

.footer-col:nth-child(2) ul {
    columns: 2;
    column-gap: 30px;
}

.footer-col ul li {
    margin-bottom: 12px;
    break-inside: avoid;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    width: 170px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.modal-content {
    max-width: 450px;
    width: 90%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.modal-content p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.modal-footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
}

.modal-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========== AUTH MODAL ========== */
.auth-modal {
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

/* ========== CONTACT OPTIONS MODAL ========== */
.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.contact-option-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(169, 63, 249, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.contact-option-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(169, 63, 249, 0.15);
}

.contact-option-btn svg {
    color: var(--primary-color);
}

.contact-option-btn h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.contact-option-btn p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.email-btn:hover svg {
    color: #0066cc;
}

.whatsapp-btn:hover {
    border-color: #25D366;
}

.whatsapp-btn:hover svg {
    color: #25D366;
}

@media (max-width: 600px) {
    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-option-btn {
        padding: 25px 15px;
    }
}

.auth-form-container {
    display: none;
}

.auth-form-container.active {
    display: block;
}

.auth-form {
    text-align: left;
    margin-top: 25px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(169, 63, 249, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.forgot-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forgot-link:hover {
    opacity: 0.8;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--light-gray);
}

.divider span {
    padding: 0 15px;
}

.social-auth {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-auth .btn {
    flex: 1;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-google:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.auth-form button[type="button"] {
    margin-top: 15px;
}

.auth-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1.2fr 0.8fr 0.8fr;
        gap: 35px;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col:nth-child(1) {
        grid-column: 1 / -1;
    }

    .footer-col:nth-child(2) ul {
        columns: 2;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0 0 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        margin-bottom: 0;
        padding: 20px 30px;
        flex-shrink: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    /* Mobile Dropdown Toggle - Hide dropdown submenu only */
    .dropdown {
        position: relative;
    }

    .dropdown .dropdown-menu {
        display: none !important;
    }

    .dropdown>.nav-link::after {
        display: none;
    }

    /* Mobile Menu Buttons - Fixed at bottom */
    .nav-menu .btn {
        width: calc(100% - 60px);
        margin: 10px 30px;
        padding: 14px 20px;
        text-align: center;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .nav-menu .btn-secondary {
        margin-top: auto;
    }

    .nav-menu .btn-primary {
        margin-bottom: 30px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-stats {
        gap: 30px;
    }

    .services-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col:nth-child(1) {
        grid-column: auto;
    }

    .footer-col:nth-child(2) ul {
        columns: 2;
    }

    .tech-showcase,
    .process-timeline,
    .testimonials-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        padding: 16px 36px;
    }

    .cta-content {
        padding: 50px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .auth-modal {
        padding: 30px 25px;
        max-height: 85vh;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }

    .btn-google,
    .btn-apple {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .btn-google svg,
    .btn-apple svg {
        width: 16px;
        height: 16px;
    }

    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .modal-footer {
        font-size: 0.8rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tech-item {
        padding: 30px 20px;
    }

    .tech-showcase {
        gap: 20px;
    }
}

/* ========== NEW SECTIONS STYLES ========== */

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.technologies-section .container {
    position: relative;
    z-index: 1;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.tech-item {
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tech-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.03), rgba(220, 220, 220, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.8));
    border-radius: 25px;
    border: 2px solid rgba(150, 150, 150, 0.15);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tech-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 30px;
    background: rgba(200, 200, 200, 0.4);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.tech-item:hover .tech-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, 0.95));
    border-color: rgba(100, 100, 100, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tech-item:hover .tech-icon::after {
    opacity: 0.3;
}

.tech-icon svg {
    width: 55px;
    height: 55px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.tech-item:hover .tech-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.tech-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.tech-item:hover h3 {
    transform: scale(1.1);
}

.tech-item p {
    color: rgba(52, 50, 49, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.process-step {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7b2cbf);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(169, 63, 249, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: rgba(52, 50, 49, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-rating {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(52, 50, 49, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(169, 63, 249, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #7b2cbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.testimonial-author p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.industry-card {
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.industry-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.industry-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary-color);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-card:hover .industry-icon svg {
    stroke: var(--primary-color);
    transform: translateY(-3px);
}

.industry-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.industry-card p {
    color: rgba(52, 50, 49, 0.7);
    line-height: 1.7;
}