/* Premium Cacao Theme v2 - Rich Chocolate with Copper Gradients */

:root {
    /* Cacao Pattern - Pod/Leaf tile pattern (very subtle) */
    --cacao-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23cd8b62' fill-opacity='0.03'%3E%3Cellipse cx='30' cy='20' rx='8' ry='12'/%3E%3Cellipse cx='30' cy='20' rx='5' ry='8'/%3E%3Cpath d='M30 32 L30 45 M25 38 L30 45 L35 38' stroke='%23cd8b62' stroke-width='1.5' fill='none' stroke-opacity='0.03'/%3E%3C/g%3E%3C/svg%3E");

    /* Cacao Tree Silhouette for hero */
    --cacao-tree: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' fill='%23cd8b62' fill-opacity='0.08'%3E%3C!-- Trunk --%3E%3Cpath d='M95 400 L95 250 Q90 200 100 150 L105 150 Q110 200 105 250 L105 400 Z'/%3E%3C!-- Main branches --%3E%3Cpath d='M100 200 Q60 180 40 120 Q50 115 55 120 Q70 160 100 175 Z'/%3E%3Cpath d='M100 200 Q140 180 160 120 Q150 115 145 120 Q130 160 100 175 Z'/%3E%3Cpath d='M100 170 Q50 140 30 80 Q40 75 45 80 Q60 120 100 145 Z'/%3E%3Cpath d='M100 170 Q150 140 170 80 Q160 75 155 80 Q140 120 100 145 Z'/%3E%3C!-- Top branches --%3E%3Cpath d='M100 130 Q70 100 60 50 Q70 45 75 50 Q85 90 100 110 Z'/%3E%3Cpath d='M100 130 Q130 100 140 50 Q130 45 125 50 Q115 90 100 110 Z'/%3E%3C!-- Cacao pods hanging --%3E%3Cellipse cx='55' cy='145' rx='6' ry='10'/%3E%3Cellipse cx='145' cy='145' rx='6' ry='10'/%3E%3Cellipse cx='40' cy='100' rx='5' ry='8'/%3E%3Cellipse cx='160' cy='100' rx='5' ry='8'/%3E%3Cellipse cx='70' cy='180' rx='5' ry='8'/%3E%3Cellipse cx='130' cy='180' rx='5' ry='8'/%3E%3C/svg%3E");

    /* Background Palette - Deep Chocolate */
    --bg-deep: #0d0b0a;
    --bg-card: #1a1512;
    --bg-section: #141110;
    --bg-elevated: #221c18;

    /* Accent - Warm Copper/Bronze */
    --accent: #cd8b62;
    --accent-light: #e4a980;
    --accent-dark: #a66d48;
    --accent-glow: rgba(205, 139, 98, 0.4);

    /* Gold highlights */
    --gold: #d4a574;
    --gold-light: #e8c496;

    /* Premium Gradients */
    --gradient-hero: linear-gradient(135deg, #1a1210 0%, #2d1f18 50%, #1a1210 100%);
    --gradient-accent: linear-gradient(135deg, #cd8b62 0%, #d4a574 50%, #a66d48 100%);
    --gradient-card: linear-gradient(145deg, rgba(205, 139, 98, 0.08) 0%, rgba(212, 165, 116, 0.03) 100%);
    --gradient-feature: linear-gradient(135deg, #2d1f18 0%, #3d2a1e 50%, #2d1f18 100%);

    /* Text */
    --text-primary: #f5efe8;
    --cream: #f5efe8;
    --text-secondary: #c4b5a5;
    --text-muted: #8a7d72;

    /* Borders & Effects */
    --border: #3a2e28;
    --border-light: #4d3f38;
    --border-accent: rgba(205, 139, 98, 0.3);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 8px 40px rgba(205, 139, 98, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

    /* Glass effect */
    --glass-bg: rgba(26, 21, 18, 0.8);
    --glass-border: rgba(205, 139, 98, 0.15);

    /* Legacy compatibility */
    --cacao-dark: var(--bg-deep);
    --cacao-brown: var(--bg-section);
    --cacao-medium: var(--border);
    --gold-primary: var(--accent);
    --gold-accent: var(--gold);
    --text-cream: var(--text-primary);
    --caramel: var(--gold);
}

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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   NAVIGATION - Premium Glass Effect
   ======================================== */
.navbar {
    background: rgba(13, 11, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    position: relative;
}

.nav-logo a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-menu a:hover {
    color: var(--accent);
}

/* Dropdown Menu */
.nav-menu .has-dropdown {
    position: relative;
}

.nav-menu .has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7em;
    opacity: 0.6;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    box-shadow: var(--shadow-soft);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    list-style: none;
    padding: 0.75rem;
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dropdown-menu a:hover {
    background: var(--bg-elevated);
    color: var(--accent);
}

.dropdown-menu a.coming-soon {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Apps Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
}

.nav-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7em;
    opacity: 0.6;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    min-width: 260px;
    padding: 0.75rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Bridge element to prevent hover gap */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.nav-dropdown .dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nav-dropdown .dropdown-menu a:hover {
    background: var(--bg-elevated);
    color: var(--accent);
}

.nav-dropdown .dropdown-menu a.coming-soon {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.language-switcher {
    position: relative;
    margin-right: 2rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.lang-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.lang-flag {
    font-size: 1.1rem;
}

.lang-code {
    color: var(--text-primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    display: none;
    min-width: 180px;
    padding: 0.5rem;
    z-index: 1001;
}

.lang-dropdown.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

.lang-dropdown button {
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.lang-dropdown button:hover {
    background: var(--bg-elevated);
    color: var(--accent);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HERO SECTION - Gradient Background with Cacao Elements
   ======================================== */
.hero {
    margin-top: 72px;
    padding: 140px 0 120px;
    background: var(--gradient-hero);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Cacao pattern tile background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--cacao-pattern);
    background-repeat: repeat;
    background-size: 60px 60px;
    opacity: 1;
    pointer-events: none;
}

/* Copper glow overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(205, 139, 98, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Cacao tree silhouette - right side */
.hero .cacao-tree-right {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 280px;
    height: 100%;
    background-image: var(--cacao-tree);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.7;
    pointer-events: none;
}

/* Cacao tree silhouette - left side (mirrored) */
.hero .cacao-tree-left {
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 280px;
    height: 100%;
    background-image: var(--cacao-tree);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    transform: scaleX(-1);
    opacity: 0.5;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
}

.hero-title .brand {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 4rem;
    margin-top: 0.25rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease 0.15s both;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
}

.cta-button {
    padding: 16px 42px;
    font-size: 1rem;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.3s both;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.02em;
    position: relative;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ========================================
   SERVICES SECTION - Glass Cards
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--bg-section);
    background-image: var(--cacao-pattern);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 11, 10, 0.85);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}

.confidential {
    font-size: 0.85rem !important;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.load-more {
    display: block;
    margin: 0 auto;
    padding: 14px 36px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.load-more:hover {
    background: var(--gradient-accent);
    color: var(--bg-deep);
    border-color: transparent;
}

/* ========================================
   AI TOOLS / FEATURES SECTION
   ======================================== */
.ai-tools {
    padding: 100px 0;
    background: var(--bg-section);
}

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

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

.feature {
    padding: 1.75rem;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
    font-weight: 600;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    margin: 3rem 0;
}

.pricing-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
}

.pricing-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 600;
}

.price {
    font-size: 2.75rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */
.download-section {
    text-align: center;
    margin-top: 3rem;
}

.download-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.download-btn {
    padding: 16px 42px;
    font-size: 1rem;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.download-btn:disabled {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--bg-section);
    background-image: var(--cacao-pattern);
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.expertise {
    margin-top: 3rem;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.expertise h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 600;
}

.expertise ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.expertise li {
    padding: 0.875rem 1rem;
    background: var(--bg-section);
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-deep);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cream);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.g-recaptcha {
    margin-bottom: 1.5rem;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.contact-info {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #080706;
    color: var(--text-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1.25rem;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

/* ========================================
   PRODUCTS SHOWCASE
   ======================================== */
.products-showcase {
    padding: 100px 20px;
    background: var(--bg-deep);
}

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

.product-showcase-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-showcase-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

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

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.product-icon svg {
    width: 56px;
    height: 56px;
    fill: currentColor;
}

.product-showcase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
    font-weight: 600;
}

.product-showcase-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features-small {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.product-features-small span {
    background: var(--bg-deep);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.product-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.product-link:hover {
    color: var(--accent-light);
}

.product-link.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* ========================================
   ICON STYLES
   ======================================== */
.gold-icon {
    width: 48px;
    height: 48px;
    fill: var(--accent);
    transition: fill 0.2s ease;
}

.gold-icon:hover {
    fill: var(--accent-light);
}

.service-icon svg,
.product-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--accent);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 1rem;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .lang-dropdown {
        right: -20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-soft);
        padding: 2rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
    }

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

    .hero-title .brand {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .expertise ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-title .brand {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Lazy Loading Placeholder */
img.lazy {
    background: var(--bg-card);
    background-image: linear-gradient(90deg, var(--bg-card) 0%, var(--bg-elevated) 50%, var(--bg-card) 100%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

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