:root {
    --primary: #0070F3;
    --primary-light: #00BFFF;
    --primary-dark: #0052CC;
    --secondary: #00D4FF;
    --secondary-light: #00E5FF;
    --accent: #00F0FF;
    --accent-glow: #00FFFF;
    --white: #ffffff;
    --bg-light: #F0F9FF;
    --bg-soft: #F8FAFC;
    --bg-gradient: linear-gradient(135deg, #E6F4FF 0%, #D6EDFF 50%, #C6E7FF 100%);
    --text-dark: #0A1628;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --gradient: linear-gradient(135deg, #0052CC 0%, #0070F3 20%, #00BFFF 40%, #00D4FF 60%, #00E5FF 80%, #00F0FF 100%);
    --gradient-soft: linear-gradient(135deg, #0070F3 0%, #00A3FF 33%, #00BFFF 66%, #00D4FF 100%);
    --gradient-light: linear-gradient(135deg, #E6F4FF 0%, #B3E0FF 50%, #80D4FF 100%);
    --gradient-hero: linear-gradient(135deg, #0052CC 0%, #0066FF 15%, #0070F3 30%, #00A3FF 45%, #00BFFF 60%, #00D4FF 75%, #00E5FF 90%, #00F0FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1E3A5F 50%, #0A1628 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #F0F9FF 100%);
    --shadow-sm: 0 2px 8px rgba(0, 112, 243, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 112, 243, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 112, 243, 0.2);
    --shadow-xl: 0 12px 60px rgba(0, 112, 243, 0.25);
    --glow-primary: 0 0 20px rgba(0, 112, 243, 0.3);
    --glow-accent: 0 0 30px rgba(0, 240, 255, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', 'Noto Sans SC', sans-serif;
}

[data-theme="dark"] {
    --primary: #00BFFF;
    --primary-light: #00D4FF;
    --primary-dark: #0070F3;
    --secondary: #00E5FF;
    --secondary-light: #00F0FF;
    --accent: #00FFFF;
    --accent-glow: #00F0FF;
    --white: #0A1628;
    --bg-light: #1E3A5F;
    --bg-soft: #0A1628;
    --bg-gradient: linear-gradient(135deg, #1E3A5F 0%, #0A1628 50%, #1E3A5F 100%);
    --text-dark: #F8FAFC;
    --text-gray: #CBD5E1;
    --text-light: #94A3B8;
    --gradient-dark: linear-gradient(135deg, #F8FAFC 0%, #CBD5E1 50%, #F8FAFC 100%);
    --gradient-card: linear-gradient(180deg, #1E3A5F 0%, #0A1628 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-md), var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-accent);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: var(--white);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

[data-theme="dark"] .logo {
    color: var(--text-dark);
}

.navbar.scrolled .logo {
    color: var(--primary);
}

.logo img {
    border-radius: var(--radius-sm);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--secondary-light);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width var(--transition-base);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .menu-toggle:hover {
    background: rgba(0, 112, 243, 0.1);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 112, 243, 0.2) 0%, transparent 50%);
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-logo-img {
    width: 400px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

[data-theme="dark"] .hero-logo-img {
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.3;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stats {
    background: var(--bg-gradient);
    padding: 5rem 0;
}

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

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 112, 243, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.services-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

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

.service-card {
    padding: 3rem;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 112, 243, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.cases-preview {
    background: var(--bg-gradient);
    padding: 6rem 0;
}

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

.case-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.case-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.partners {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.partners h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-gray);
    opacity: 0.6;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
}

.cta {
    background: var(--gradient-hero);
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta .btn-white {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-light);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.875rem 0;
        background: rgba(0, 82, 204, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .navbar.scrolled {
        padding: 0.75rem 0;
        background: var(--white) !important;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 36px !important;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--gradient-hero);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-base);
        z-index: 999;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        color: var(--white);
        font-size: 1.3rem;
        padding: 0.5rem 0;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    .hero-logo-img {
        width: 220px !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-icon {
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .services-grid,
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.75rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .case-card {
        height: 250px;
    }
    
    .partners {
        padding: 3.5rem 0;
    }
    
    .partners h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .partners-grid {
        gap: 2rem;
    }
    
    .partner-logo {
        font-size: 1.5rem;
    }
    
    .cta {
        padding: 4rem 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .cta .btn-white {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        width: 100%;
        max-width: 280px;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
        background: var(--gradient-dark) !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links ul li {
        margin-bottom: 0.8rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links ul li a {
        white-space: nowrap;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-logo-img {
        width: 180px !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 1.75rem 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.75rem;
    }
    
    .footer-brand h3 {
        font-size: 1.35rem;
    }
    
    footer {
        background: var(--gradient-dark) !important;
    }
    
    .footer-links ul li {
        margin-bottom: 0.8rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links ul li a {
        white-space: nowrap;
    }
}

.page-header {
    background: var(--gradient-hero);
    padding: 10rem 0 6rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 112, 243, 0.2) 0%, transparent 50%);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.domains-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.domains-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.domains-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domains-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.9;
}

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

.domain-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 112, 243, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.domain-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.domain-name {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.domain-desc {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.domain-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section {
    background: var(--gradient-hero);
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.contact-email:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.features-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

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

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: all var(--transition-base);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-info .contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-content p {
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.contact-content a {
    color: var(--primary);
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-header {
        padding: 7rem 0 4rem;
    }
    
    .page-header h1 {
        font-size: 1.9rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .domains-section {
        padding: 4rem 0;
    }
    
    .domains-intro {
        margin-bottom: 2.5rem;
    }
    
    .domains-intro h2 {
        font-size: 1.8rem;
    }
    
    .domains-intro p {
        font-size: 1rem;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .domain-card {
        padding: 2rem 1.75rem;
    }
    
    .domain-name {
        font-size: 1.5rem;
    }
    
    .domain-desc {
        font-size: 0.95rem;
    }
    
    .domain-price {
        font-size: 1.25rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-section p {
        font-size: 1rem;
    }
    
    .contact-email {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .features-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.75rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.75rem;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-info .contact-item {
        gap: 1rem;
        align-items: flex-start;
    }
    
    .contact-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .domains-intro h2 {
        font-size: 1.5rem;
    }
    
    .domain-card {
        padding: 1.75rem 1.5rem;
    }
    
    .domain-name {
        font-size: 1.35rem;
    }
    
    .contact-section h2 {
        font-size: 1.6rem;
    }
}
