/* Apple-inspired Design System with Dark Theme */
:root {
    --apple-text-primary: #ffffff;
    --apple-text-secondary: #a1a1aa;
    --apple-text-tertiary: #71717a;
    --apple-blue: #007aff;
    --apple-blue-hover: #0056cc;
    --apple-background: #000000;
    --apple-surface: #111111;
    --apple-border: #27272a;
    --apple-shadow: rgba(0, 0, 0, 0.3);
    --apple-radius: 12px;
    --apple-spacing-xs: 8px;
    --apple-spacing-sm: 16px;
    --apple-spacing-md: 24px;
    --apple-spacing-lg: 32px;
    --apple-spacing-xl: 48px;
    --apple-spacing-xxl: 64px;
}

/* Dark Theme Body */
body {
    background: var(--apple-background);
    color: var(--apple-text-primary);
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Prevent horizontal overflow on all elements */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Apple Typography */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Increased size for more impact */
    font-weight: 700; /* Increased from 600 for bolder appearance */
    line-height: 1.05;
    letter-spacing: -0.025em; /* Slightly tighter spacing */
    margin: 0 0 var(--apple-spacing-md); /* Increased margin */
    color: var(--apple-text-primary);
    max-width: 100%; /* Allow full width usage */
}

.hero-title-main {
    display: block;
    color: var(--apple-text-primary);
    margin-bottom: 0.2em; /* Add spacing between lines */
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 50%, #00d4aa 100%); /* Enhanced gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem); /* More responsive scaling */
    font-weight: 500; /* Slightly increased weight */
    color: var(--apple-text-secondary);
    margin: 0 0 var(--apple-spacing-lg); /* Increased margin */
    letter-spacing: -0.015em; /* Slightly tighter */
    max-width: 100%; /* Allow full width */
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem); /* More responsive and larger */
    font-weight: 400;
    line-height: 1.65; /* Improved readability */
    color: var(--apple-text-tertiary);
    margin: 0 0 var(--apple-spacing-xl);
    max-width: 700px; /* Increased from 500px for wider text */
    opacity: 0.9; /* Subtle transparency for hierarchy */
}

/* Framer-style Floating Glassy Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 60px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 1px 0 rgba(255, 255, 255, 0.15) inset;
    width: 90%;
    max-width: 1200px;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
                0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    gap: var(--apple-spacing-xl);
}

.brand-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

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

/* Aggressive underline removal for all nav links */
.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:hover,
.nav-link:active,
.nav-link:focus,
.nav-link:focus-visible,
.nav-link:focus-within {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    text-decoration-style: none !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.nav-link {
    color: var(--apple-text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    padding: 10px 18px;
    border-radius: 24px;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: var(--apple-text-primary);
    background: rgba(255, 255, 255, 0.12);
}

/* Login Button Styles */
.login-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px !important;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.login-link .user-icon {
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.login-text {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.login-link:hover .user-icon {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .login-link {
        margin: 8px 0;
    }
}

/* Additional aggressive overrides */
.navbar a,
.navbar a:link,
.navbar a:visited,
.navbar a:hover,
.navbar a:active,
.navbar a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Override any potential browser defaults */
a {
    text-decoration: none !important;
}

nav a,
nav a:hover,
nav a:focus,
nav a:active,
nav a:visited {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Globe Container - Fix background flash */
.globe-container {
    width: 100%;
    height: 700px; /* Increased from 600px */
    position: relative;
    border-radius: var(--apple-radius);
    overflow: hidden;
    background: var(--apple-background);
}

/* Hero Section with Dark Theme */
.hero {
    padding-top: 140px; /* More space for floating navbar */
    padding-bottom: var(--apple-spacing-xxl);
    background: var(--apple-background);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1600px; /* Increased from 1200px for wider layout */
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl); /* Increased padding for better spacing */
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Adjusted ratio to give more space to text */
    gap: var(--apple-spacing-xxl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    max-width: 800px; /* Increased from 600px for wider text */
}

/* Apple-style Buttons for Dark Theme */
.hero-buttons {
    display: flex;
    gap: var(--apple-spacing-sm);
    margin-bottom: var(--apple-spacing-xl);
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 52px;
    letter-spacing: -0.01em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #007aff 0%, #0056cc 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4), 
                0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056cc 0%, #003d99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.5), 
                0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn-primary::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--apple-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 
                0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.btn-secondary::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

/* Apple-style Features for Dark Theme */
.hero-features {
    display: flex;
    gap: var(--apple-spacing-sm);
    flex-wrap: wrap;
}

.feature-item {
    padding: var(--apple-spacing-xs) var(--apple-spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--apple-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--apple-text-secondary);
    letter-spacing: -0.01em;
}

/* Globe Container */
.globe-container {
    width: 100%;
    height: 700px; /* Increased from 600px */
    position: relative;
    border-radius: var(--apple-radius);
    overflow: hidden;
}

/* Apple-style Services Section */
.services {
    padding: var(--apple-spacing-xxl) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-lg);
}

.services-header {
    text-align: center;
    margin-bottom: var(--apple-spacing-xxl);
}

.services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: var(--apple-spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--apple-text-secondary);
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--apple-spacing-md);
    margin-top: var(--apple-spacing-xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: var(--apple-spacing-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 122, 255, 0.1);
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: inherit;
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 122, 255, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
                0 4px 16px rgba(0, 122, 255, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 122, 255, 0.15);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--apple-spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.15);
    will-change: transform;
}

.service-card:hover .service-icon {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.25);
}

.service-icon svg {
    color: #007aff;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: #0056cc;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: var(--apple-spacing-sm);
    letter-spacing: -0.01em;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 0.95rem;
    color: var(--apple-text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--apple-spacing-sm) 0;
    position: relative;
    z-index: 2;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    color: var(--apple-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: var(--apple-spacing-sm);
    letter-spacing: -0.01em;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(88, 86, 214, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.3);
    color: var(--apple-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.15);
}

.service-btn:hover::before {
    opacity: 1;
}

.service-btn span {
    position: relative;
    z-index: 2;
}

.service-btn svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.service-btn:hover svg {
    transform: translateX(4px);
    opacity: 1;
}
/* Apple-style Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 122, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(88, 86, 214, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.02) 0%, transparent 80%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-top-section {
    display: block;
    margin-bottom: 60px;
}

.footer-brand {
    text-align: left;
    max-width: 100%;
    margin: 0 0 var(--apple-spacing-xl) 0;
    display: block;
    width: 100%;
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--apple-spacing-xl);
    width: 100%;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--apple-spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: var(--apple-spacing-md);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.footer-description {
    color: var(--apple-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--apple-spacing-xl);
    font-size: 1rem;
    font-weight: 400;
    max-width: none;
}

.footer-social {
    display: flex;
    gap: var(--apple-spacing-sm);
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--apple-text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.4);
    color: var(--apple-blue);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 122, 255, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--apple-spacing-sm);
}

.footer-link {
    color: var(--apple-text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
    padding: 4px 0;
    position: relative;
}

.footer-link:hover {
    color: var(--apple-blue);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--apple-spacing-sm);
}

.footer-contact p {
    color: var(--apple-text-secondary);
    font-size: 0.75rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.footer-attribution {
    margin-top: var(--apple-spacing-md);
    padding-top: var(--apple-spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-attribution p {
    color: var(--apple-text-tertiary);
    font-size: 0.75rem;
    margin: 0;
    font-weight: 400;
}



.footer-bottom {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    text-align: center;
}

.footer-copyright {
    color: var(--apple-text-tertiary);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--apple-spacing-sm);
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--apple-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 8px;
    border-radius: 8px;
}

.footer-legal-link:hover {
    color: var(--apple-blue);
    background: rgba(0, 122, 255, 0.08);
    transform: translateY(-1px);
}

.footer-separator {
    color: var(--apple-text-tertiary);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-attribution {
    color: var(--apple-text-tertiary);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-tech-link {
    color: var(--apple-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2px 4px;
    border-radius: 4px;
}

.footer-tech-link:hover {
    color: #4d9eff;
    background: rgba(0, 122, 255, 0.08);
    transform: translateY(-1px);
}

/* Services Dropdown Styling */
.services-dropdown-trigger {
    position: relative;
}

.services-dropdown-trigger .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.services-dropdown-trigger.active .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Contact Dropdown Styling */
.contact-dropdown-trigger {
    position: relative;
}

.contact-dropdown-trigger .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-dropdown-trigger.active .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Products Dropdown Styling */
.products-dropdown-trigger {
    position: relative;
}

.products-dropdown-trigger .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.products-dropdown-trigger.active .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.services-dropdown {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.services-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-content {
    padding: 32px;
}

.dropdown-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.dropdown-header p {
    font-size: 0.95rem;
    color: var(--apple-text-secondary);
    margin: 0;
    line-height: 1.4;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 122, 255, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.dropdown-item .dropdown-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.dropdown-item:hover .dropdown-icon {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.4);
    transform: translateY(-1px);
}

.dropdown-item .dropdown-icon svg {
    color: var(--apple-blue);
    transition: color 0.3s ease;
    width: 20px;
    height: 20px;
}

.dropdown-item:hover .dropdown-icon svg {
    color: #4d9eff;
}

.dropdown-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.dropdown-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin: 0 0 2px 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-text p {
    font-size: 0.75rem;
    color: var(--apple-text-secondary);
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Better text handling for products dropdown */
.products-dropdown .dropdown-text h4 {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.products-dropdown .dropdown-text p {
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.dropdown-item:hover .dropdown-text h4 {
    color: var(--apple-blue);
}

.dropdown-item:hover .dropdown-text p {
    color: var(--apple-text-primary);
}

/* Contact Dropdown Styling */
.contact-dropdown {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.contact-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.contact-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.15);
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item:hover .contact-icon {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.4);
    transform: translateY(-1px);
}

.contact-icon svg {
    color: var(--apple-blue);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-icon svg {
    color: #4d9eff;
}

.contact-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin: 0 0 2px 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.contact-details p {
    font-size: 0.85rem;
    color: var(--apple-text-secondary);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    color: var(--apple-blue);
}

.contact-item:hover .contact-details p {
    color: var(--apple-text-primary);
}

.contact-cta {
    display: flex;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.contact-btn svg {
    transition: transform 0.3s ease;
}

.contact-btn:hover svg {
    transform: translateX(4px);
}

/* Products Dropdown Styling */
.products-dropdown {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.products-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Mobile Back Button */
.dropdown-mobile-header {
    display: none;
    padding: 0 0 20px 0;
    border-bottom: none;
    margin-bottom: 24px;
}

/* Desktop - ensure mobile header is hidden */
@media (min-width: 1025px) {
    .dropdown-mobile-header {
        display: none !important;
    }
}

.dropdown-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--apple-text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-back-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--apple-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-back-btn:hover::before {
    opacity: 1;
}

.dropdown-back-btn svg {
    transition: transform 0.3s ease;
}

.dropdown-back-btn:hover svg {
    transform: translateX(-2px);
}

/* How We Work Section - Completely Redesigned */
.process {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
    pointer-events: none;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 120px;
}

.process-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.process-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 122, 255, 0.3), transparent, rgba(88, 86, 214, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.process-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.process-badge-text {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.process-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.process-title .title-gradient {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite alternate;
}

@keyframes titleShimmer {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.process-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-workflow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.workflow-step {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    cursor: pointer;
}

.workflow-step::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;
}

.workflow-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(88, 86, 214, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.workflow-step:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.workflow-step:hover::after {
    opacity: 1;
}

.step-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.6s ease;
    flex-shrink: 0;
}

.workflow-step:hover .step-number-large {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.step-header-content {
    flex: 1;
    padding-top: 8px;
}

.step-title-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: color 0.6s ease;
}

.workflow-step:hover .step-title-large {
    color: #007AFF;
}

.step-subtitle {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    font-weight: 500;
    margin-bottom: 24px;
    transition: color 0.6s ease;
}

.workflow-step:hover .step-subtitle {
    color: var(--apple-text-primary);
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-description-large {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    transition: color 0.6s ease;
}

.workflow-step:hover .step-description-large {
    color: rgba(255, 255, 255, 0.9);
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.workflow-step:hover .step-feature {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
}

.step-feature-icon {
    width: 20px;
    height: 20px;
    color: #007AFF;
    flex-shrink: 0;
}

.step-feature-text {
    font-size: 1rem;
    color: var(--apple-text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.workflow-step:hover .step-feature-text {
    color: var(--apple-text-primary);
}

.step-icon {
    position: absolute;
    top: 48px;
    right: 48px;
    width: 64px;
    height: 64px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.workflow-step:hover .step-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: #007AFF;
    transition: color 0.6s ease;
}

.workflow-step:hover .step-icon svg {
    color: #4d9eff;
}

/* Workflow Connection Lines */
.workflow-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 122, 255, 0.3) 50%, transparent 100%);
    height: 2px;
    animation: connectionFlow 4s ease-in-out infinite;
}

.connection-vertical {
    position: absolute;
    background: linear-gradient(180deg, transparent 0%, rgba(88, 86, 214, 0.3) 50%, transparent 100%);
    width: 2px;
    animation: connectionFlow 4s ease-in-out infinite 2s;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 122, 255, 0.6);
    border-radius: 50%;
    animation: floatAround 12s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -20px) scale(1.2); opacity: 1; }
    50% { transform: translate(-10px, -40px) scale(0.8); opacity: 0.8; }
    75% { transform: translate(-20px, 20px) scale(1.1); opacity: 0.9; }
}

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

/* Technologies Section - Modern Minimal Design */
.technologies {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

.technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(88, 86, 214, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.technologies-header {
    text-align: center;
    margin-bottom: 120px;
}

.technologies-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.technologies-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.tech-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.tech-row:nth-child(1) { animation-delay: 0.1s; }
.tech-row:nth-child(2) { animation-delay: 0.2s; }
.tech-row:nth-child(3) { animation-delay: 0.3s; }
.tech-row:nth-child(4) { animation-delay: 0.4s; }
.tech-row:nth-child(5) { animation-delay: 0.5s; }

.tech-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--apple-text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    white-space: nowrap;
    min-height: 56px;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(88, 86, 214, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 122, 255, 0.3);
    color: var(--apple-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.15);
}

.tech-tag:hover::before {
    opacity: 1;
}

/* Alternating gradient effects for different rows */
.tech-row:nth-child(1) .tech-tag:hover {
    border-color: rgba(0, 122, 255, 0.4);
    color: #007aff;
}

.tech-row:nth-child(2) .tech-tag:hover {
    border-color: rgba(88, 86, 214, 0.4);
    color: #5856d6;
}

.tech-row:nth-child(3) .tech-tag:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: #8b5cf6;
}

.tech-row:nth-child(4) .tech-tag:hover {
    border-color: rgba(168, 85, 247, 0.4);
    color: #a855f7;
}

.tech-row:nth-child(5) .tech-tag:hover {
    border-color: rgba(6, 182, 212, 0.4);
    color: #06b6d4;
}

/* Subtle pulsing animation */
@keyframes tagPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.tech-tag:hover {
    animation: tagPulse 2s ease-in-out infinite;
}

/* Responsive tag sizes */
@media (max-width: 768px) {
    .tech-tag {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tech-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 20px;
    height: 2px;
    background: var(--apple-text-primary);
    transition: 0.3s;
    border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 24px;
        max-width: none;
        width: calc(100% - 20px);
    }
    
    .nav-container {
        padding: 8px 24px;
        gap: 0px;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        min-height: 50px;
        transition: all 0.3s ease;
    }
    
    .nav-container .nav-brand {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
    }
    
    /* Mobile Services Dropdown */
    .services-dropdown {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        transform: none;
        width: calc(100% - 20px);
        max-width: none;
        height: calc(100vh - 20px);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(32px) saturate(200%);
        -webkit-backdrop-filter: blur(32px) saturate(200%);
        z-index: 1002;
    }
    
    .services-dropdown.active {
        transform: translateY(0);
    }
    
    /* Mobile Contact Dropdown */
    .contact-dropdown {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        transform: none;
        width: calc(100% - 20px);
        max-width: none;
        height: calc(100vh - 20px);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(32px) saturate(200%);
        -webkit-backdrop-filter: blur(32px) saturate(200%);
        z-index: 1002;
        overflow-y: auto;
    }
    
    .contact-dropdown.active {
        transform: translateY(0);
    }
    
    /* Mobile Products Dropdown */
    .products-dropdown {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        transform: none;
        width: calc(100% - 20px);
        max-width: none;
        height: calc(100vh - 20px);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(32px) saturate(200%);
        -webkit-backdrop-filter: blur(32px) saturate(200%);
        z-index: 1002;
    }
    
    .products-dropdown.active {
        transform: translateY(0);
    }
    
    .contact-dropdown .dropdown-content {
        padding: 24px;
        height: 100%;
        overflow-y: auto;
        padding-top: 80px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: calc(100vh - 80px);
    }
    
    .dropdown-content {
        padding: 24px;
        height: 100%;
        overflow-y: auto;
        padding-top: 70px;
    }
    
    .dropdown-mobile-header {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 16px 24px;
        margin-bottom: 0;
        border-bottom: none;
        border-radius: 24px 24px 0 0;
    }
    
    /* Hide navbar when dropdown is active on mobile */
    body.services-dropdown-active .navbar,
    body.contact-dropdown-active .navbar,
    body.products-dropdown-active .navbar {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-100%);
        transition: all 0.3s ease;
    }
    
    .dropdown-header {
        display: none;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dropdown-item {
        padding: 14px;
        gap: 10px;
    }
    
    .dropdown-item .dropdown-icon {
        width: 36px;
        height: 36px;
    }
    
    .dropdown-text h4 {
        font-size: 0.85rem;
    }
    
    .dropdown-text p {
        font-size: 0.7rem;
    }
    
    /* Mobile Contact Dropdown Content */
    .contact-dropdown-content {
        gap: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
        flex: 1;
    }
    
    .contact-item {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .contact-cta {
        margin-top: auto;
        padding-top: 24px;
    }
    
    .hero {
        padding-top: 100px;
    }

    .hero-container {
        max-width: 100%; /* Full width on mobile */
        padding: 0 var(--apple-spacing-md); /* Reduced padding on mobile */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--apple-spacing-xl);
        text-align: center;
        max-width: 100%; /* Full width on mobile */
    }

    .hero-text {
        max-width: 100%; /* Full width text on mobile */
    }
    
    .hero-visual {
        order: -1;
    }
    
    .globe-container {
        height: 450px; /* Increased from 400px to maintain proportions */
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .nav-menu {
        position: static;
        width: 100%;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        flex-direction: column;
        padding: 0;
        gap: 4px;
        transform: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        margin: 0;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 460px;
        padding: var(--apple-spacing-md) 0;
        margin-top: 8px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-brand {
        max-width: none;
        margin: 0 auto var(--apple-spacing-lg) auto;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-description {
        max-width: none;
    }
    

    
    .footer-links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--apple-spacing-lg);
        text-align: center;
    }
    
    .footer-subtitle {
        font-size: 0.875rem;
    }
    

    
    .footer-bottom-content {
        text-align: center;
    }

    /* Mobile Services Styles */
    .services {
        padding: var(--apple-spacing-xl) 0;
    }
    
    .services-container {
        padding: 0 var(--apple-spacing-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--apple-spacing-sm);
    }
    
    .service-card {
        padding: var(--apple-spacing-md);
    }
    
    .services-header {
        margin-bottom: var(--apple-spacing-xl);
    }
    
    /* Mobile Process Styles */
    .process {
        padding: 120px 0;
    }
    
    .process-container {
        padding: 0 24px;
    }
    
    .process-header {
        margin-bottom: 80px;
    }
    
    .process-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .process-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .process-workflow {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }
    
    .workflow-step {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .step-header {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .step-number-large {
        font-size: 2.5rem;
    }
    
    .step-title-large {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .step-subtitle {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .step-description-large {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .step-features {
        gap: 12px;
    }
    
    .step-feature {
        padding: 10px 12px;
    }
    
    .step-feature-text {
        font-size: 0.9rem;
    }
    
    .step-icon {
        top: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Technologies Styles */
    .technologies {
        padding: 140px 0;
    }
    
    .technologies-container {
        padding: 0 24px;
    }
    
    .technologies-header {
        margin-bottom: 100px;
    }
    
    .technologies-title {
        font-size: 3rem;
        margin-bottom: 24px;
    }
    
    .technologies-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .tech-stack {
        gap: 24px;
    }
    
    .tech-row {
        gap: 16px;
    }
    
    .tech-tag {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 var(--apple-spacing-sm); /* Even smaller padding on tiny screens */
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem); /* Better responsive scaling for tiny screens */
        line-height: 1.1; /* Adjusted line height */
    }
    
    .hero-subtitle {
        font-size: clamp(1.25rem, 5vw, 1.5rem); /* Better responsive scaling */
    }

    .hero-description {
        font-size: clamp(1rem, 4vw, 1.125rem); /* Better responsive scaling */
        max-width: 100%; /* Full width on tiny screens */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--apple-spacing-sm); /* Consistent spacing */
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .nav-container {
        gap: 0;
    }
    
    /* Extra small mobile Services Dropdown */
    .services-dropdown {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Extra small mobile Contact Dropdown */
    .contact-dropdown {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Extra small mobile Products Dropdown */
    .products-dropdown {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .dropdown-content {
        padding: 20px;
        height: 100%;
        overflow-y: auto;
        padding-top: 60px;
    }
    
    .dropdown-mobile-header {
        padding: 12px 20px;
        border-bottom: none;
        border-radius: 24px 24px 0 0;
    }
    
    .dropdown-header {
        display: none;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .dropdown-item {
        padding: 10px;
        gap: 8px;
    }
    
    .dropdown-item .dropdown-icon {
        width: 32px;
        height: 32px;
    }
    
    .dropdown-text h4 {
        font-size: 0.8rem;
    }
    
    .dropdown-text p {
        font-size: 0.65rem;
    }
    
    /* Extra small mobile Contact Dropdown Content */
    .contact-dropdown .dropdown-content {
        padding: 20px;
        height: 100%;
        overflow-y: auto;
        padding-top: 70px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: calc(100vh - 60px);
    }
    
    .contact-dropdown-content {
        gap: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 14px;
        flex: 1;
    }
    
    .contact-item {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .contact-cta {
        margin-top: auto;
        padding-top: 20px;
    }
    
    .footer-container {
        padding: 0 var(--apple-spacing-md);
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-brand {
        margin: 0 auto var(--apple-spacing-md) auto;
    }
    
    .footer-title {
        font-size: 1.375rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-social {
        gap: var(--apple-spacing-sm);
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    
    .footer-links-container {
        grid-template-columns: 1fr;
        gap: var(--apple-spacing-md);
    }
    
    .footer-subtitle {
        font-size: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    

    
    .footer-bottom {
        padding: 30px 0;
    }

    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.125rem;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    /* Mobile Process Styles */
    .process {
        padding: 80px 0;
    }
    
    .process-container {
        padding: 0 16px;
    }
    
    .process-header {
        margin-bottom: 60px;
    }
    
    .process-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .process-workflow {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 48px;
    }
    
    .workflow-step {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .step-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .step-number-large {
        font-size: 2rem;
    }
    
    .step-title-large {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }
    
    .step-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .step-description-large {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .step-features {
        gap: 10px;
    }
    
    .step-feature {
        padding: 8px 10px;
    }
    
    .step-feature-text {
        font-size: 0.85rem;
    }
    
    .step-icon {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .step-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Mobile Technologies Styles */
    .technologies {
        padding: 100px 0;
    }
    
    .technologies-container {
        padding: 0 16px;
    }
    
    .technologies-header {
        margin-bottom: 80px;
    }
    
    .technologies-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .technologies-description {
        font-size: 1rem;
    }
    
    .tech-stack {
        gap: 20px;
    }
    
    .tech-row {
        gap: 12px;
    }
    
    .tech-tag {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* Scroll Performance Optimizations */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal overflow on html element */
}

body {
    /* These properties were breaking position:fixed on the navbar */
}

/* Reduce backdrop-filter during scroll for performance */
@media (prefers-reduced-motion: no-preference) {
    .scrolling .service-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }


    
    .scrolling .navbar {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
    
    .scrolling .footer {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
}

/* Contain layout and style changes */
.service-card {
    contain: layout style paint;
}

.globe-container {
    contain: layout style paint;
    /* Reduce complexity during scroll */
    will-change: auto;
}

body.scrolling .globe-container {
    pointer-events: none;
}



/* About Section - Modern Unified Design */
.about {
    position: relative;
    padding: 200px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.04) 0%, transparent 70%),
        radial-gradient(circle at 70% 80%, rgba(88, 86, 214, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-lg);
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 120px;
}

.about-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.about-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 122, 255, 0.3), transparent, rgba(88, 86, 214, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.about-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.badge-text {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.about-title .title-gradient {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite alternate;
}

@keyframes titleShimmer {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.about-description {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--apple-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 120px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

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

.stat-number {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 8px;
}

.stat-description {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    color: var(--apple-text-secondary);
    line-height: 1.5;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-features-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #007AFF;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
    color: #007AFF;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--apple-text-secondary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-description {
    color: var(--apple-text-primary);
}

.about-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.03) 0%, rgba(88, 86, 214, 0.03) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--apple-text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Footer Animation */
.footer-main {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}



.footer-bottom {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .about {
        padding: 120px 0;
    }
    
    .about-container {
        padding: 0 24px;
    }
    
    .about-header {
        margin-bottom: 80px;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .about-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-card {
        padding: 32px 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
    
    .about-features-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .feature-item {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .about-cta {
        padding: 48px 32px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 16px;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-content {
        gap: 48px;
        margin-bottom: 60px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    .about-features-title {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
    
    .feature-item {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .about-cta {
        padding: 32px 20px;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 122, 255, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(88, 86, 214, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

.portfolio::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 96px;
}

.portfolio-badge {
    position: relative;
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-badge:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.portfolio-badge:hover::before {
    opacity: 1;
}

.portfolio-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.portfolio-title .title-line {
    display: block;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.portfolio-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.portfolio-card:hover::after {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.portfolio-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.portfolio-card:hover .portfolio-placeholder::before {
    transform: translateX(100%);
}

.portfolio-placeholder.medical {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.portfolio-placeholder.productivity {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

.portfolio-placeholder.wine {
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
}

.portfolio-placeholder.business {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.portfolio-placeholder.consulting {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.portfolio-placeholder.community {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
}

.portfolio-card:hover .portfolio-placeholder {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 40px;
}

.portfolio-project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.portfolio-project-description {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1rem;
    font-weight: 400;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.portfolio-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start !important;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #007AFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.portfolio-link:hover {
    color: #fff;
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-2px);
}

.portfolio-link svg {
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translate(3px, -3px);
}

.portfolio-case-study {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #007AFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.portfolio-case-study:hover {
    color: #fff;
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-2px);
}

.portfolio-case-study svg {
    transition: transform 0.3s ease;
}

.portfolio-case-study:hover svg {
    transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-container {
        max-width: 1200px;
        padding: 0 24px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 80px 0;
    }
    
    .portfolio-container {
        padding: 0 20px;
    }
    
    .portfolio-header {
        margin-bottom: 64px;
    }
    
    .portfolio-title {
        font-size: 3rem;
        margin-bottom: 24px;
    }
    
    .portfolio-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .portfolio-card {
        border-radius: 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 32px;
    }
    
    .portfolio-project-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .portfolio-project-description {
        margin-bottom: 24px;
    }
    
    .portfolio-tech {
        margin-bottom: 24px;
    }
    
    .portfolio-links {
        gap: 12px;
    }
    
    .portfolio-link,
    .portfolio-case-study {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-container {
        padding: 0 16px;
    }
    
    .portfolio-header {
        margin-bottom: 48px;
    }
    
    .portfolio-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .portfolio-description {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        gap: 20px;
        margin-top: 40px;
    }
    
    .portfolio-card {
        border-radius: 16px;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-content {
        padding: 24px;
    }
    
    .portfolio-project-title {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .portfolio-project-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .portfolio-tech {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .tech-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .portfolio-links {
        gap: 10px;
    }
    
    .portfolio-link,
    .portfolio-case-study {
        padding: 8px 12px;
        font-size: 0.875rem;
        gap: 8px;
    }
}

/* FAQ Section */
.faq {
    background: var(--apple-background);
    padding: 120px 0;
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-md);
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--apple-spacing-xxl);
}

.faq-badge {
    display: inline-block;
    position: relative;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: var(--apple-spacing-md);
    transition: all 0.3s ease;
}

.faq-badge:hover {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-1px);
}

.faq-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--apple-spacing-md);
    color: var(--apple-text-primary);
}

.faq-title .title-line {
    display: block;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.faq-description {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--apple-radius);
    margin-bottom: var(--apple-spacing-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-question {
    padding: var(--apple-spacing-md);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: var(--apple-spacing-sm);
}

.faq-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-icon {
    background: rgba(0, 122, 255, 0.15);
    transform: scale(1.05);
}

.faq-icon svg {
    color: var(--apple-blue);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon svg {
    color: #4d9eff;
}

.faq-question-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    flex: 1;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question-title {
    color: var(--apple-blue);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toggle-line {
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--apple-text-secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-line-1 {
    transform: translate(-50%, -50%) rotate(0deg);
}

.toggle-line-2 {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .toggle-line-1 {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.active .toggle-line-2 {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.faq-answer p {
    padding: var(--apple-spacing-md);
    color: var(--apple-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }

    .faq-container {
        padding: 0 var(--apple-spacing-sm);
    }

    .faq-header {
        margin-bottom: var(--apple-spacing-lg);
    }

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

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

    .faq-question {
        padding: var(--apple-spacing-sm);
    }

    .faq-question-title {
        font-size: 1rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-answer p {
        padding: var(--apple-spacing-sm);
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: var(--apple-spacing-md);
    }

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

    .faq-question-content {
        gap: 12px;
    }

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

    .faq-question-title {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* Featured Section */
.featured {
    background: var(--apple-background);
    padding: 120px 0;
    position: relative;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-md);
    position: relative;
    z-index: 1;
}

.featured-header {
    text-align: center;
    margin-bottom: var(--apple-spacing-xxl);
}

.featured-badge {
    display: inline-block;
    position: relative;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: var(--apple-spacing-md);
    transition: all 0.3s ease;
}

.featured-badge:hover {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-1px);
}

.featured-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--apple-spacing-md);
    color: var(--apple-text-primary);
}

.featured-title .title-line {
    display: block;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.featured-description {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-content {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-carousel {
    position: relative;
    margin-bottom: var(--apple-spacing-xl);
    padding: 0; /* Remove padding for consistent centering */
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--apple-radius);
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 70px; /* Add padding to avoid button overlap */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--apple-text-primary);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--apple-blue);
    color: var(--apple-blue);
    transform: scale(1.1);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--apple-spacing-xs);
    margin-top: var(--apple-spacing-md);
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active,
.carousel-indicator:hover {
    background: var(--apple-blue);
    transform: scale(1.2);
}

.featured-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--apple-radius);
    padding: var(--apple-spacing-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.featured-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.featured-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--apple-spacing-md);
}

.featured-type {
    display: flex;
    align-items: center;
}

.type-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.type-article {
    background: rgba(0, 122, 255, 0.1);
    color: var(--apple-blue);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.type-news {
    background: rgba(48, 209, 88, 0.1);
    color: #30d158;
    border: 1px solid rgba(48, 209, 88, 0.2);
}

.featured-date {
    font-size: 0.875rem;
    color: var(--apple-text-secondary);
    font-weight: 500;
}

.featured-card-content {
    margin-bottom: var(--apple-spacing-md);
}

.featured-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: var(--apple-spacing-sm);
    line-height: 1.3;
}

.featured-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-link:hover {
    color: var(--apple-blue);
}

.featured-card-description {
    color: var(--apple-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.featured-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--apple-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.featured-read-more:hover {
    color: #4d9eff;
    transform: translateX(4px);
}

.featured-arrow {
    transition: all 0.3s ease;
}

.featured-read-more:hover .featured-arrow {
    transform: translateX(2px);
}

.featured-empty {
    text-align: center;
    padding: var(--apple-spacing-xxl) var(--apple-spacing-md);
    color: var(--apple-text-secondary);
}

.featured-empty-icon {
    margin-bottom: var(--apple-spacing-md);
}

.featured-empty-icon svg {
    opacity: 0.3;
}

.featured-empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: var(--apple-spacing-sm);
}

.featured-empty-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.featured-cta {
    text-align: center;
    padding: var(--apple-spacing-xl) var(--apple-spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--apple-radius);
    margin-top: var(--apple-spacing-xl);
}

.featured-cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: var(--apple-spacing-sm);
}

.featured-cta-description {
    font-size: 1rem;
    color: var(--apple-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--apple-spacing-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.featured-cta-buttons {
    display: flex;
    gap: var(--apple-spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Featured Section - Responsive Design */
@media (max-width: 768px) {
    .featured {
        padding: 80px 0;
    }

    .featured-container {
        padding: 0 var(--apple-spacing-sm);
    }

    .featured-header {
        margin-bottom: var(--apple-spacing-lg);
    }

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

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

    .featured-carousel {
        padding: 0; /* Remove padding for perfect centering */
    }

    .carousel-btn-prev {
        left: 10px; /* Position inside container */
    }
    
    .carousel-btn-next {
        right: 10px; /* Position inside container */
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-slide {
        padding: 0 50px; /* Add padding to avoid button overlap */
        justify-content: center;
        align-items: center;
    }

    .featured-card {
        padding: var(--apple-spacing-md);
        margin: 0 auto;
    }

    .featured-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--apple-spacing-sm);
    }

    .featured-card-title {
        font-size: 1.125rem;
    }

    .featured-cta {
        padding: var(--apple-spacing-lg) var(--apple-spacing-sm);
    }

    .featured-cta-title {
        font-size: 1.25rem;
    }

    .featured-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .featured {
        padding: 60px 0;
    }

    .featured-header {
        margin-bottom: var(--apple-spacing-md);
    }

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

    .featured-carousel {
        padding: 0; /* Remove padding for perfect centering */
    }

    .carousel-btn-prev {
        left: 8px; /* Position inside container */
    }
    
    .carousel-btn-next {
        right: 8px; /* Position inside container */
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-slide {
        padding: 0 45px; /* Add padding to avoid button overlap */
        justify-content: center;
        align-items: center;
    }

    .featured-card {
        padding: var(--apple-spacing-sm);
        margin: 0 auto;
    }

    .featured-card-title {
        font-size: 1rem;
    }

    .featured-card-description {
        font-size: 0.9rem;
    }

    .featured-cta-title {
        font-size: 1.125rem;
    }

    .featured-cta-description {
        font-size: 0.9rem;
    }
}

.brand-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #a1a1aa;
}

.navbar-logo {
    height: 28px; /* Adjust height as needed */
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}

/* 404 Error Page - Futuristic Framer-style Design */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a0a0a;
    padding: 6rem 0 2rem;
}

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

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.error-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-number {
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    position: relative;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    opacity: 0.9;
}

.error-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.error-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
}

.error-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.error-description {
    font-size: 1rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    max-width: 300px;
}

.error-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
}

.error-btn-primary {
    background: #ffffff;
    color: #000000;
}

.error-btn-primary:hover {
    background: #f4f4f5;
    transform: translateY(-1px);
}

.error-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #27272a;
}

.error-btn-secondary:hover {
    background: #18181b;
    border-color: #3f3f46;
    transform: translateY(-1px);
}

.error-btn svg {
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.error-btn:hover svg {
    transform: translateX(2px);
    opacity: 1;
}

.error-btn span {
    display: inline-block;
}

/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
    .error-section {
        padding: 1rem 0;
    }
    
    .error-container {
        padding: 0 1.5rem;
    }
    
    .error-content {
        gap: 2rem;
    }
    
    .error-number {
        font-size: clamp(6rem, 25vw, 10rem);
    }
    
    .error-glow {
        width: 200px;
        height: 200px;
    }
    
    .error-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .error-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .error-container {
        padding: 0 1rem;
    }
    
    .error-number {
        font-size: clamp(4rem, 30vw, 8rem);
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-description {
        font-size: 0.9rem;
    }
    
    .error-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}