/* ===== BASE STYLES ===== */
:root {
    --primary-color: #c5a572;
    --primary-light: #e8d5a8;
    --primary-dark: #a08050;
    --bg-dark: #0a1628;
    --bg-light: #0f1f3d;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #1a1a2e;
    --accent-gold: #d4af37;
    --gradient-gold: linear-gradient(135deg, #c5a572, #e8d5a8, #c5a572);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

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

/* ===== ANIMATIONS ===== */
@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);
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) translateX(20px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-svg {
    width: 180px;
    height: 45px;
    transition: var(--transition-smooth);
}

.logo:hover .logo-svg {
    transform: scale(1.02);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.nav-item.active .nav-link {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-dark) 70%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 0.5s; }
.particle:nth-child(10) { left: 15%; animation-delay: 1.5s; }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
}

.hero-badge-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(197, 165, 114, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 165, 114, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(197, 165, 114, 0.1);
    transform: translateY(-3px);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-xl {
    padding: 18px 45px;
    font-size: 16px;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-light);
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(197, 165, 114, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(197, 165, 114, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: var(--transition-smooth);
}

.about-feature:hover {
    background: rgba(197, 165, 114, 0.1);
    transform: translateX(10px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bg-dark);
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1), rgba(197, 165, 114, 0.05));
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(197, 165, 114, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(197, 165, 114, 0.2) 0%, transparent 50%);
}

.about-icon-main {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

.about-floating-card {
    position: absolute;
    background: rgba(10, 22, 40, 0.95);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.about-floating-card.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.about-floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.floating-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--bg-dark);
}

.floating-card h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 165, 114, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--bg-dark);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== APP SECTION ===== */
.app-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.app-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(197, 165, 114, 0.08) 0%, transparent 50%);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-content .section-title {
    text-align: left;
}

.app-content > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.app-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    gap: 15px;
    align-items: center;
}

.app-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(197, 165, 114, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.app-feature span {
    font-size: 15px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-button svg {
    width: 28px;
    height: 28px;
    fill: var(--text-light);
}

.app-button span {
    font-size: 14px;
    font-weight: 600;
}

.app-preview {
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e, #0f1f3d);
    border-radius: 40px;
    border: 4px solid rgba(197, 165, 114, 0.3);
    padding: 10px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.app-screen-content {
    padding: 40px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screen-header {
    text-align: center;
    margin-bottom: 20px;
}

.screen-header h4 {
    font-size: 16px;
    color: var(--primary-color);
}

.screen-card {
    background: rgba(197, 165, 114, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.screen-card h5 {
    font-size: 12px;
    margin-bottom: 8px;
}

.screen-card p {
    font-size: 10px;
    color: var(--text-gray);
}

.screen-ad {
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.2), rgba(197, 165, 114, 0.1));
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.screen-ad p {
    font-size: 10px;
    color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1) 0%, rgba(197, 165, 114, 0.05) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand .footer-logo .logo-svg {
    width: 160px;
    height: 40px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--primary-color);
    margin: 15px 0;
}

.footer-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item span,
.contact-item a {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(197, 165, 114, 0.1);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-links a {
    font-size: 14px;
    color: var(--text-gray);
}

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

.footer-legal-links .separator {
    color: rgba(197, 165, 114, 0.3);
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: var(--bg-dark);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(197, 165, 114, 0.1) 0%, transparent 50%);
}

.page-hero-particles {
    position: absolute;
    inset: 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-gray);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--text-gray);
}

.breadcrumb .active {
    color: var(--primary-color);
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    padding: 100px 0;
}

.services-grid-large {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-large-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.service-large-card.reverse {
    direction: rtl;
}

.service-large-card.reverse > * {
    direction: ltr;
}

.service-large-visual {
    background: rgba(197, 165, 114, 0.05);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 165, 114, 0.1);
}

.service-visual-svg {
    width: 250px;
    height: 250px;
}

.service-large-content {
    padding: 20px 0;
}

.service-number {
    display: inline-block;
    font-size: 60px;
    font-weight: 700;
    color: rgba(197, 165, 114, 0.2);
    margin-bottom: 10px;
}

.service-large-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-large-content > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    gap: 15px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-gray);
}

.service-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.service-stores {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.store-available {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary-color);
    background: rgba(197, 165, 114, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
}

.store-available svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

/* ===== AD MONETIZATION SECTION ===== */
.ad-monetization-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.ad-formats-showcase {
    margin-top: 60px;
}

.showcase-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.ad-format-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ad-format-card {
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.ad-format-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.1);
}

.ad-format-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ad-format-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--bg-dark);
}

.ad-format-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.ad-format-card p {
    font-size: 13px;
    color: var(--text-gray);
}

.ad-platforms-showcase {
    margin-top: 60px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.platform-card {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.platform-card:hover {
    transform: scale(1.05);
    background: rgba(197, 165, 114, 0.08);
}

.platform-logo-svg {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.platform-name {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.08);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.product-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--bg-dark);
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.news-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background: rgba(197, 165, 114, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-date {
    font-size: 12px;
    color: var(--text-gray);
    margin-left: 10px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

.news-link:hover {
    gap: 15px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1) 0%, rgba(197, 165, 114, 0.05) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 8px;
    background: rgba(10, 22, 40, 0.5);
    color: var(--text-light);
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== CULTURE PAGE ===== */
.mission-section {
    padding: 100px 0;
}

.mission-grid {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content {
    text-align: center;
}

.mission-content .section-title {
    margin-bottom: 30px;
}

.mission-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-visual {
    margin-top: 40px;
}

.mission-visual svg {
    width: 300px;
    height: 200px;
}

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 165, 114, 0.08);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--bg-dark);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.08);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.environment-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.environment-item {
    text-align: center;
    padding: 30px;
}

.environment-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.environment-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--bg-dark);
}

.environment-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.environment-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bg-dark);
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-text p,
.contact-text a {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 50px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 10px;
    background: rgba(10, 22, 40, 0.5);
    color: var(--text-light);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-content {
    text-align: center;
}

.map-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.map-content > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 165, 114, 0.1);
}

.map-placeholder svg {
    width: 100%;
    height: auto;
}

.app-download-section {
    padding: 80px 0;
}

.app-download-content {
    text-align: center;
}

.app-download-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.app-download-text > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ===== LEGAL PAGES ===== */
.legal-content-section {
    padding: 100px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.toc-section {
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
}

.toc-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.toc-list li a {
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.toc-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.legal-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    margin: 30px 0 15px;
}

.legal-section h4 {
    font-size: 18px;
    margin: 25px 0 15px;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-section li strong {
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-list {
        gap: 30px;
    }
    
    .about-grid,
    .app-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-features {
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .services-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .environment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .ad-format-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-large-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-large-card.reverse {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid,
    .products-grid,
    .news-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .ad-format-cards {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .app-button {
        justify-content: center;
    }
}
