/* TGOO Worldwide - Premium Design */

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

:root {
    --accent-color: #FB8500;
    --accent-hover: #ff9920;
    --accent-glow: rgba(251, 133, 0, 0.5);
    
    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #111111;
    --dark-bg-card: #161616;
    --dark-text: #ffffff;
    --dark-text-secondary: #a8a8a8;
    --dark-border: #222222;
    
    --light-bg: #fafafa;
    --light-bg-secondary: #ffffff;
    --light-bg-card: #ffffff;
    --light-text: #0a0a0a;
    --light-text-secondary: #666666;
    --light-border: #e8e8e8;
    
    --gradient-primary: linear-gradient(135deg, #FB8500 0%, #ff6b00 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(251, 133, 0, 0.15) 0%, transparent 70%);
    
    --section-padding: 140px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-theme="dark"] {
    --bg-color: var(--dark-bg);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-card: var(--dark-bg-card);
    --bg-primary: #0f0f0f;
    --text-color: var(--dark-text);
    --text-secondary: var(--dark-text-secondary);
    --border-color: var(--dark-border);
}

[data-theme="light"] {
    --bg-color: var(--light-bg);
    --bg-secondary: var(--light-bg-secondary);
    --bg-card: var(--light-bg-card);
    --bg-primary: #f5f5f5;
    --text-color: var(--light-text);
    --text-secondary: var(--light-text-secondary);
    --border-color: var(--light-border);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animation Class */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

main { position: relative; margin: 0; padding: 0; }
section { position: relative; z-index: 1; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: var(--section-padding) 0; }

/* Loading Screen */
.loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--dark-bg); display: flex; align-items: center;
    justify-content: center; z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}
.loading-screen.loaded { opacity: 0; visibility: hidden; }
.loading-content { text-align: center; }
.loading-logo { width: 140px; height: auto; margin-bottom: 50px;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--accent-glow)); }
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.loading-bar-container { width: 350px; height: 3px; background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px; overflow: hidden; margin: 0 auto 25px; position: relative; }
.loading-bar { height: 100%; background: var(--gradient-primary); width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px var(--accent-glow); }
.loading-percentage { color: var(--dark-text); font-size: 20px; font-weight: 700;
    font-family: var(--font-display); letter-spacing: 2px; }

/* Geometric Lines Background */
.geometric-lines { position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    overflow: hidden; z-index: 0; pointer-events: none; opacity: 0.4; }
[data-theme="light"] .geometric-lines { opacity: 0.2; }
.line { position: absolute; background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    will-change: transform; }
.line-1 { width: 1px; height: 40%; top: 10%; left: 15%;
    background: linear-gradient(180deg, transparent, rgba(251, 133, 0, 0.6), transparent);
    animation: lineFloat1 20s ease-in-out infinite; }
.line-2 { width: 60%; height: 1px; top: 25%; right: 10%;
    animation: lineFloat2 25s ease-in-out infinite; }
.line-3 { width: 1px; height: 50%; bottom: 15%; right: 20%;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 0, 0.5), transparent);
    animation: lineFloat3 22s ease-in-out infinite; }
.line-4 { width: 40%; height: 1px; top: 50%; left: 5%;
    animation: lineFloat4 28s ease-in-out infinite; }
.line-5 { width: 1px; height: 35%; top: 40%; left: 70%;
    background: linear-gradient(180deg, transparent, rgba(251, 133, 0, 0.4), transparent);
    animation: lineFloat5 24s ease-in-out infinite; transform: rotate(15deg); }
.line-6 { width: 30%; height: 1px; bottom: 20%; left: 30%;
    animation: lineFloat6 30s ease-in-out infinite; }
.line-7 { width: 1px; height: 45%; top: 5%; right: 40%;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 0, 0.3), transparent);
    animation: lineFloat7 26s ease-in-out infinite; transform: rotate(-10deg); }
.line-8 { width: 50%; height: 1px; top: 70%; right: 5%;
    animation: lineFloat8 32s ease-in-out infinite; }
.circle { position: absolute; border: 2px solid var(--accent-color); border-radius: 50%;
    will-change: transform; }
.circle-1 { width: 150px; height: 150px; top: 20%; right: 15%;
    border-color: rgba(251, 133, 0, 0.3);
    animation: circleFloat1 18s ease-in-out infinite, circlePulse 4s ease-in-out infinite; }
.circle-2 { width: 100px; height: 100px; bottom: 25%; left: 10%;
    border-color: rgba(255, 107, 0, 0.4);
    animation: circleFloat2 22s ease-in-out infinite, circlePulse 5s ease-in-out infinite; }
.circle-3 { width: 200px; height: 200px; top: 60%; right: 30%;
    border-color: rgba(251, 133, 0, 0.2);
    animation: circleFloat3 26s ease-in-out infinite, circlePulse 6s ease-in-out infinite; }
.square { position: absolute; border: 2px solid var(--accent-color); will-change: transform; }
.square-1 { width: 80px; height: 80px; top: 35%; left: 25%;
    border-color: rgba(251, 133, 0, 0.3); transform: rotate(45deg);
    animation: squareFloat1 20s ease-in-out infinite, squareRotate 15s linear infinite; }
.square-2 { width: 120px; height: 120px; bottom: 30%; right: 25%;
    border-color: rgba(255, 107, 0, 0.25); transform: rotate(25deg);
    animation: squareFloat2 24s ease-in-out infinite, squareRotate 18s linear infinite reverse; }

@keyframes lineFloat1 { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-50px) translateX(20px); opacity: 0.8; } }
@keyframes lineFloat2 { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(30px) translateX(-30px); opacity: 0.7; } }
@keyframes lineFloat3 { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(40px) translateX(25px); opacity: 0.6; } }
@keyframes lineFloat4 { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-35px) translateX(-20px); opacity: 0.7; } }
@keyframes lineFloat5 { 0%, 100% { transform: rotate(15deg) translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: rotate(15deg) translateY(45px) translateX(-15px); opacity: 0.6; } }
@keyframes lineFloat6 { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-30px) translateX(35px); opacity: 0.7; } }
@keyframes lineFloat7 { 0%, 100% { transform: rotate(-10deg) translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: rotate(-10deg) translateY(-40px) translateX(20px); opacity: 0.5; } }
@keyframes lineFloat8 { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(25px) translateX(-40px); opacity: 0.6; } }
@keyframes circleFloat1 { 0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, 40px); } 66% { transform: translate(20px, -30px); } }
@keyframes circleFloat2 { 0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, -35px); } 66% { transform: translate(-25px, 30px); } }
@keyframes circleFloat3 { 0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-35px, -40px); } 66% { transform: translate(30px, 35px); } }
@keyframes circlePulse { 0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; } }
@keyframes squareFloat1 { 0%, 100% { transform: rotate(45deg) translate(0, 0); }
    33% { transform: rotate(45deg) translate(35px, -30px); }
    66% { transform: rotate(45deg) translate(-30px, 40px); } }
@keyframes squareFloat2 { 0%, 100% { transform: rotate(25deg) translate(0, 0); }
    33% { transform: rotate(25deg) translate(-40px, 35px); }
    66% { transform: rotate(25deg) translate(35px, -35px); } }
@keyframes squareRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Header */
.header {
    position: fixed; top: calc(env(safe-area-inset-top, 0px) + 20px); left: 50%;
    transform: translateX(-50%); width: calc(100% - 80px); max-width: 1400px;
    background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.header:hover { background: rgba(10, 10, 10, 0.8); border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset; }
[data-theme="light"] .header:hover { background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.9) inset; }
.header-container { width: 100%; padding: 0 32px; display: flex; align-items: center;
    justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; position: relative; }
.logo img { height: 48px; width: auto; transition: transform var(--transition-bounce);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)); position: relative; z-index: 1; }
.logo:hover img { transform: scale(1.08) rotate(-2deg); }

/* Navigation */
.nav-desktop { display: flex; align-items: center; }
.nav-menu { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav-link { color: var(--text-color); text-decoration: none; font-size: 15px; font-weight: 600;
    font-family: var(--font-display); transition: all var(--transition-fast);
    position: relative; padding: 10px 0; letter-spacing: 0.3px; }
.nav-link::before { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--gradient-primary); transition: all var(--transition-normal);
    transform: translateX(-50%); border-radius: 2px; }
.nav-link:hover::before { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--accent-color); transform: translateY(-2px); }
.nav-link.active::before { width: 100%; box-shadow: 0 0 40px var(--accent-glow); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.dropdown-icon { transition: transform var(--transition-normal); }
.dropdown:hover .dropdown-icon { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute; top: calc(100% + 24px); left: -20px;
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
    padding: 16px 0; min-width: 300px; list-style: none; opacity: 0; visibility: hidden;
    transform: translateY(-15px); transition: all var(--transition-normal);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
[data-theme="light"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { padding: 0 8px; }
.dropdown-menu a { display: block; padding: 14px 20px; color: var(--text-color);
    text-decoration: none; font-size: 14px; font-weight: 500;
    transition: all var(--transition-fast); border-radius: 12px; position: relative; overflow: hidden; }
.dropdown-menu a::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%;
    height: 100%; background: var(--gradient-primary);
    transition: left var(--transition-normal); z-index: -1; }
.dropdown-menu a:hover::before { left: 0; }
.dropdown-menu a:hover { color: #ffffff; transform: translateX(8px); }

/* Header Controls */
.header-controls { display: flex; align-items: center; gap: 12px; }
.theme-toggle, .lang-toggle {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; color: var(--text-color);
    transition: all var(--transition-normal); position: relative; overflow: hidden;
}
.theme-toggle::before, .lang-toggle::before { content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; background: var(--gradient-primary); border-radius: 50%;
    transform: translate(-50%, -50%); transition: all var(--transition-normal); z-index: -1; }
.theme-toggle:hover::before, .lang-toggle:hover::before { width: 200%; height: 200%; }
[data-theme="light"] .theme-toggle, [data-theme="light"] .lang-toggle {
    background: rgba(0, 0, 0, 0.04); border: 1px solid rgba(0, 0, 0, 0.1);
}
.theme-toggle:hover, .lang-toggle:hover { border-color: var(--accent-color); color: #ffffff;
    transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 24px rgba(251, 133, 0, 0.3); }
.theme-icon { color: var(--text-color); transition: all var(--transition-normal); }
.theme-toggle:hover .theme-icon { color: #ffffff; }
[data-theme="dark"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: none; }
.lang-toggle { width: auto; padding: 0 18px; font-size: 13px; font-weight: 700;
    font-family: var(--font-display); letter-spacing: 1px; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .mobile-menu-toggle {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-normal);
    z-index: -1;
}

.mobile-menu-toggle:hover::before {
    width: 200%;
    height: 200%;
}

.mobile-menu-toggle:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: 100dvh;
    background: var(--bg-color);
    z-index: 2000;
    transform: translateX(-100%); /* Opens from left */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden; /* Hide when closed */
    opacity: 1;
    border-right: 1px solid var(--border-color);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible; /* Show when open */
}

/* Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    flex: 1;
    padding: 60px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu-header {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    display: block;
}

.mobile-logo img {
    height: auto;
    width: 140px;
    max-width: 50%;
    display: block;
}

.mobile-nav {
    width: 100%;
    max-width: 400px;
    margin-bottom: auto;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list > li {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-display);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(251, 133, 0, 0.1);
    color: var(--accent-color);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover {
    background: rgba(251, 133, 0, 0.1);
    color: var(--accent-color);
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li {
    margin: 4px 0;
}

.mobile-submenu a {
    display: block;
    padding: 12px 32px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-submenu a:hover {
    background: rgba(251, 133, 0, 0.1);
    color: var(--accent-color);
}

/* Hero */
.hero {
    position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden;
    display: flex; align-items: flex-end; justify-content: flex-start; margin: 0; padding: 0;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
#parallax-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none; z-index: 1; }
.hero-content {
    position: relative; z-index: 2; max-width: 1400px; width: 100%; margin: 0;
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
    padding-left: max(env(safe-area-inset-left, 0px), 80px);
    padding-right: max(env(safe-area-inset-right, 0px), 80px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 40px);
}
.hero-text { max-width: 900px; display: flex; flex-wrap: wrap; }
.hero-title {
    font-size: clamp(56px, 7vw, 96px); font-weight: 800; line-height: 1.05;
    color: var(--accent-color); margin-bottom: 28px; font-family: var(--font-display);
    letter-spacing: -0.03em; text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow);
    animation: heroTitleReveal 1s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-primary); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; color: #ffffff;
    font-family: var(--font-display); letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    animation: heroSubtitleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}
@keyframes heroTitleReveal {
    from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroSubtitleReveal {
    from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.scroll-indicator {
    position: absolute; bottom: calc(env(safe-area-inset-bottom, 0px) + 50px);
    left: 50%; transform: translateX(-50%); z-index: 2; color: #ffffff;
    animation: scrollBounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(-15px); opacity: 0.7; }
}

/* ==========================================
   PINNED HERO WITH FRAME SEQUENCE
   ========================================== */

/* Hero fixo durante animação */
.hero-pinned {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 50;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    will-change: transform;
}

/* Quando unpinned - vira absolute no final da animação */
.hero-pinned.unpinned {
    position: absolute;
    z-index: 50;
}

.hero-pinned-bg {
    position: absolute;
    /* Expande para cobrir safe-area do iPhone */
    top: calc(-1 * env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    width: 100%;
    height: calc(100% + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
}

#hero-frames-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-pinned::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(10, 10, 10, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-pinned-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0;
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
    padding-left: max(env(safe-area-inset-left, 0px), 80px);
    padding-right: max(env(safe-area-inset-right, 0px), 80px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 40px);
}

/* Spacer - dá a altura para o scroll da animação */
.hero-pinned-spacer {
    width: 100%;
    height: 200vh;
    pointer-events: none;
    position: relative;
    z-index: 0;
}

/* CONTEÚDO PRINCIPAL - Z-INDEX MAIOR QUE O HERO! */
.main-content {
    position: relative;
    z-index: 100;
    background: var(--bg-color);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-pinned-content {
        padding-left: max(env(safe-area-inset-left, 0px), 24px);
        padding-right: max(env(safe-area-inset-right, 0px), 24px);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 32px);
    }
}

/* Typography */
.section-title {
    font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; line-height: 1.1;
    margin-bottom: 32px; color: var(--text-color); font-family: var(--font-display);
    letter-spacing: -0.02em; position: relative;
    text-align: center;
}
.section-description, .section-intro {
    font-size: clamp(18px, 2.2vw, 24px); line-height: 1.7; color: var(--text-secondary);
    margin-bottom: 48px; font-weight: 400; text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; padding: 18px 42px;
    border-radius: 16px; font-size: 16px; font-weight: 600; font-family: var(--font-display);
    text-decoration: none; transition: all var(--transition-normal); cursor: pointer;
    border: none; position: relative; overflow: hidden; letter-spacing: 0.3px;
}
.btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    background: rgba(255, 255, 255, 0.2); border-radius: 50%;
    transform: translate(-50%, -50%); transition: width var(--transition-slow), height var(--transition-slow); }
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary { background: var(--gradient-primary); color: #ffffff;
    box-shadow: 0 8px 24px rgba(251, 133, 0, 0.3); }
.btn-primary:hover { transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(251, 133, 0, 0.5); }
.btn-primary:active { transform: translateY(-2px) scale(0.98); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-color);
    border: 2px solid var(--border-color); backdrop-filter: blur(10px); }
.btn-secondary:hover { border-color: var(--accent-color); color: var(--accent-color);
    background: rgba(251, 133, 0, 0.1); transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(251, 133, 0, 0.2); }
.btn-large { padding: 22px 56px; font-size: 18px; border-radius: 18px; font-weight: 700; }
.btn-large:not(.btn-main-cta) { padding: 22px 48px; }
.cta-buttons { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 60px; }
.cta-center { text-align: center; margin-top: 70px; }

/* Intro Section */
.intro-section {
    background: var(--bg-color); margin-top: 0; position: relative; overflow: hidden;
}
.intro-section::before {
    content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; background: var(--gradient-glow); opacity: 0.6;
    filter: blur(120px); pointer-events: none; animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}
.intro-section::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%;
    height: 2px; background: var(--gradient-primary); opacity: 0.3; }
.intro-content { max-width: 1200px; margin: 0 auto; text-align: center;
    position: relative; z-index: 1; }
.intro-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
    background: rgba(251, 133, 0, 0.1); border: 1px solid rgba(251, 133, 0, 0.3);
    border-radius: 100px; margin-bottom: 32px;
    animation: badgeFloat 3s ease-in-out infinite, badgeReveal 0.8s ease backwards;
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes badgeReveal {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.intro-badge span { font-size: 15px; font-weight: 700; font-family: var(--font-display);
    color: var(--accent-color); letter-spacing: 0.5px; }
.intro-title { margin-bottom: 40px; }

/* Scroll Based Velocity Component - Magic UI Style
   Optimizado para iOS: usa CSS animations puras, 
   pausa durante scroll para evitar flicker */
.velocity-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 20px 0;
    /* Evitar backdrop-filter para prevenir flicker iOS */
    background: transparent;
}

.velocity-scroll-row {
    display: flex;
    width: max-content;
    /* GPU acceleration via translate3d */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    /* Animação CSS pura */
    animation: velocity-scroll 25s linear infinite;
    /* Backface visibility para otimização iOS */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.velocity-scroll-row.velocity-reverse {
    animation: velocity-scroll-reverse 20s linear infinite;
}

/* Pausar animação durante scroll para evitar flicker iOS */
.is-scrolling .velocity-scroll-row {
    animation-play-state: paused;
}

.velocity-scroll-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    /* Também aplicar GPU hints nos filhos */
    transform: translate3d(0, 0, 0);
}

.velocity-text {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--text-color);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.velocity-text-highlight {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.velocity-separator {
    font-size: clamp(24px, 3vw, 40px);
    color: var(--text-secondary);
    opacity: 0.3;
}

.velocity-separator-highlight {
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--accent-color);
    opacity: 0.8;
}

.velocity-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.velocity-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.velocity-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

/* Keyframes com translate3d para GPU acceleration */
@keyframes velocity-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes velocity-scroll-reverse {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.velocity-scroll-container:hover .velocity-scroll-row {
    animation-play-state: paused;
}

.title-highlight {
    background: var(--gradient-primary); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; display: inline-block;
    position: relative;
}
.title-highlight::after { content: ''; position: absolute; bottom: -8px; left: 0;
    width: 100%; height: 4px; background: var(--gradient-primary);
    border-radius: 2px; opacity: 0.3; }
.section-subtitle {
    font-size: clamp(20px, 2.5vw, 28px); line-height: 1.6; color: var(--text-color);
    margin-bottom: 32px; font-weight: 500; font-family: var(--font-display);
}
.company-badges {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin: 50px 0 60px;
}
@keyframes badgeItemReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.badge-item {
    display: flex; align-items: center; gap: 16px; padding: 24px 28px;
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px;
    transition: all var(--transition-normal); position: relative; overflow: hidden;
    animation: badgeItemReveal 0.8s ease backwards;
}
.badge-item:nth-child(1) { animation-delay: 0.2s; }
.badge-item:nth-child(2) { animation-delay: 0.4s; }
.badge-item:nth-child(3) { animation-delay: 0.6s; }
.badge-item::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%;
    height: 100%; background: linear-gradient(90deg, transparent, rgba(251, 133, 0, 0.1), transparent);
    transition: left 0.6s ease; }
.badge-item:hover::before { left: 100%; }
.badge-item:hover { border-color: var(--accent-color); transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 133, 0, 0.2); }
.badge-icon { font-size: 36px; flex-shrink: 0; line-height: 1;
    transition: transform var(--transition-bounce); }
.badge-item:hover .badge-icon { transform: scale(1.2) rotate(5deg); }
.badge-content { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.badge-content strong { font-size: 16px; font-weight: 700; color: var(--text-color);
    font-family: var(--font-display); line-height: 1.4; }
.badge-content span { font-size: 14px; color: var(--text-secondary);
    font-weight: 500; line-height: 1.4; }
.cta-buttons-hero { justify-content: center; gap: 24px; margin-top: 50px; }
.btn-main-cta {
    background: var(--gradient-primary); color: #ffffff; display: inline-flex;
    align-items: center; gap: 12px; font-size: 17px; font-weight: 800; letter-spacing: 0.5px;
    padding: 24px 48px; box-shadow: 0 12px 40px rgba(251, 133, 0, 0.4);
    position: relative; overflow: hidden; animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 12px 40px rgba(251, 133, 0, 0.4); }
    50% { box-shadow: 0 12px 40px rgba(251, 133, 0, 0.6), 0 0 0 4px rgba(251, 133, 0, 0.2); }
}
.btn-main-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%;
    height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease; }
.btn-main-cta:hover::before { left: 100%; }
.btn-main-cta:hover { transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 60px rgba(251, 133, 0, 0.6); }
.btn-main-cta svg { transition: transform var(--transition-normal); }
.btn-main-cta:hover svg { transform: translateX(5px); }

/* Problem Section */
.problem-section { background: var(--bg-secondary); position: relative; overflow: hidden; }
.problem-section::before { content: ''; position: absolute; top: -300px; right: -300px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.1) 0%, transparent 70%);
    pointer-events: none; }
.problems-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px; margin: 70px 0;
}
.problem-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px;
    padding: 40px; transition: all var(--transition-normal); position: relative; overflow: hidden;
}
.problem-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%;
    height: 100%; background: var(--gradient-primary); opacity: 0;
    transition: opacity var(--transition-normal); }
.problem-card:hover::before { opacity: 0.05; }
.problem-card:hover { transform: translateY(-8px); border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(251, 133, 0, 0.1) inset; }
.problem-icon { font-size: 56px; margin-bottom: 24px; display: block;
    transition: transform var(--transition-bounce); }
.problem-card:hover .problem-icon { transform: scale(1.15) rotate(5deg); }
.problem-card p { font-size: 17px; line-height: 1.7; color: var(--text-secondary);
    font-weight: 500; position: relative; z-index: 1; }
.problem-solution { text-align: center; margin-top: 70px; }
.problem-solution p { font-size: 22px; line-height: 1.6; margin-bottom: 40px; }

/* PRO10 Section */
.pro10-section { background: var(--bg-secondary); position: relative; overflow: hidden; }
.pro10-section::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%); width: 600px; height: 600px;
    background: var(--gradient-glow); opacity: 0.6;
    pointer-events: none; animation: pulseGlow 8s ease-in-out infinite;
}
.pro10-solution { margin-top: 60px; }
.subsection-title {
    font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px);
    font-weight: 700; margin-bottom: 20px; color: var(--text-color);
}
.subsection-description { font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.8; color: var(--text-secondary); margin-bottom: 50px; }
.pro10-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; }
.feature-card {
    background: var(--bg-card); padding: 40px; border-radius: 24px;
    border: 1px solid var(--border-color); position: relative;
    overflow: hidden; transition: all var(--transition-normal);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); transform: scaleX(0);
    transition: transform var(--transition-normal);
}
.feature-card:hover { border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(251, 133, 0, 0.15),
                0 0 40px rgba(251, 133, 0, 0.1);
    transform: translateY(-8px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    font-size: 48px; margin-bottom: 24px; display: block;
    filter: drop-shadow(0 4px 12px rgba(251, 133, 0, 0.3));
}
.feature-card h4 {
    font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px);
    font-weight: 700; margin-bottom: 12px; color: var(--text-color);
}
.feature-card p { font-size: 16px; line-height: 1.7;
    color: var(--text-secondary); }

/* What Section */
.what-section { background: var(--bg-color); }
.what-section .section-description strong {
    color: var(--accent-color); font-weight: 700;
}

/* Solutions Section */
.solutions-section { background: var(--bg-secondary); }
.solution-highlight {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color); border-radius: 30px;
    padding: 60px; position: relative; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
[data-theme="light"] .solution-highlight {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}
.solution-highlight::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px; background: var(--gradient-glow);
    border-radius: 50%; pointer-events: none; opacity: 0.5;
}
.solution-content h3 {
    font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px);
    font-weight: 700; margin-bottom: 20px; color: var(--text-color);
}
.solution-content p { font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px; }
.solution-highlight-text { font-size: clamp(18px, 2vw, 22px);
    color: var(--accent-color) !important; margin-bottom: 40px !important; }

/* PRO10 Feature Card - Modern Design */
.pro10-feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.05) 0%, rgba(255, 183, 77, 0.02) 50%, rgba(251, 133, 0, 0.08) 100%);
    border: 1px solid rgba(251, 133, 0, 0.2);
    border-radius: 32px;
    padding: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
}

[data-theme="light"] .pro10-feature-card {
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.08) 0%, rgba(255, 183, 77, 0.03) 50%, rgba(251, 133, 0, 0.1) 100%);
    border-color: rgba(251, 133, 0, 0.25);
}

.pro10-feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(251, 133, 0, 0.15);
}

.pro10-card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

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

.pro10-card-badge {
    display: inline-flex;
    margin-bottom: 24px;
}

.pro10-card-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9f1c 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(251, 133, 0, 0.4);
}

.pro10-card-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.pro10-card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9f1c 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(251, 133, 0, 0.3);
}

.pro10-card-titles {
    flex: 1;
}

.pro10-card-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pro10-card-titles h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    margin: 0;
}

.pro10-card-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    border-color: var(--accent-color);
    background: rgba(251, 133, 0, 0.1);
    color: var(--accent-color);
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.1), rgba(255, 107, 0, 0.05));
    border: 1px solid rgba(251, 133, 0, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.2), rgba(255, 107, 0, 0.1));
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pro10-card-description {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
}

.pro10-card-description strong {
    color: var(--accent-color);
}

.pro10-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateX(4px);
}

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

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

.pro10-card-decoration {
    position: absolute;
    bottom: -50px;
    left: -50px;
    display: flex;
    gap: 20px;
    opacity: 0.1;
    pointer-events: none;
}

.decoration-circle {
    width: 100px;
    height: 100px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
}

.decoration-circle:nth-child(2) {
    width: 150px;
    height: 150px;
}

.decoration-circle:nth-child(3) {
    width: 80px;
    height: 80px;
}

/* Tech Section */
.tech-section { background: var(--bg-color); }
.section-note {
    max-width: 900px; margin: 30px auto 60px; text-align: center;
    font-size: clamp(15px, 1.6vw, 17px); line-height: 1.8;
    color: var(--text-secondary);
}
.section-note em { font-style: italic; color: var(--text-color); }
.section-note strong { color: var(--accent-color); font-weight: 700; }
.tech-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px; margin-top: 60px;
}
.tech-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 28px; padding: 40px; position: relative; overflow: hidden;
    transition: all var(--transition-normal); cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .tech-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.tech-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--gradient-primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition-normal);
}
.tech-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 28px;
    background: var(--gradient-glow); opacity: 0;
    transition: opacity var(--transition-normal); pointer-events: none;
}
.tech-card:hover {
    border-color: var(--accent-color); transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(251, 133, 0, 0.2),
                0 0 50px rgba(251, 133, 0, 0.15);
}
.tech-card:hover::before { transform: scaleX(1); }
.tech-card:hover::after { opacity: 0.05; }
.tech-card-header { display: flex; align-items: flex-start;
    gap: 20px; margin-bottom: 20px; }
.tech-icon {
    font-size: 52px; line-height: 1; flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(251, 133, 0, 0.3));
}
.tech-card h3 {
    font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px);
    font-weight: 700; color: var(--text-color); line-height: 1.3;
    margin: 0;
}
.tech-card p {
    font-size: 16px; line-height: 1.7; color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Animated List Component - Inspired by Magic UI */
.animated-list-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px;
}

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

.animated-list::-webkit-scrollbar {
    width: 6px;
}

.animated-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.animated-list::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.animated-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .animated-list-item {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.animated-list-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animated-list-item:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(251, 133, 0, 0.15);
}

.list-item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.list-item-content {
    flex: 1;
    overflow: hidden;
}

.list-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.list-item-header h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-item-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    background: var(--accent-color);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.list-item-badge.badge-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.list-item-badge.badge-hot {
    background: linear-gradient(135deg, #f5576c 0%, #ff8a00 100%);
}

.list-item-badge.badge-luxury {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
}

.list-item-badge.badge-b2b {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.list-item-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-item-action {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.list-item-action:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateX(4px);
}

.animated-list-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Why Section - Modern Design */
.why-section { background: var(--bg-secondary); }

/* Hyper Text Component - Magic UI Style */
.hyper-text-container { display: inline-block; }
.hyper-text {
    display: inline-block;
    font-family: var(--font-display);
    cursor: pointer;
}
.hyper-text.animating .char {
    animation: hyperTextScramble 0.1s ease forwards;
}
@keyframes hyperTextScramble {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(251, 133, 0, 0.15);
}

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

.why-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.why-card p strong {
    color: var(--accent-color);
}

/* Company Block */
.why-company-block {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.08) 0%, rgba(255, 183, 77, 0.03) 50%, rgba(251, 133, 0, 0.1) 100%);
    border: 1px solid rgba(251, 133, 0, 0.2);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .why-company-block {
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.1) 0%, rgba(255, 183, 77, 0.04) 50%, rgba(251, 133, 0, 0.12) 100%);
}

.why-company-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-company-badge {
    display: inline-flex;
    margin-bottom: 24px;
}

.why-company-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(251, 133, 0, 0.4);
}

.why-company-content h3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 12px;
}

.why-company-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.why-company-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

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

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

.why-quote-modern {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 40px;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: 16px;
    text-align: left;
}

.why-quote-modern p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.why-quote-modern strong {
    color: var(--accent-color);
}

.why-company-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.decoration-ring {
    position: absolute;
    border: 2px solid rgba(251, 133, 0, 0.1);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.decoration-ring:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
}

.decoration-ring:nth-child(2) {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0.5s;
}

.decoration-ring:nth-child(3) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 1s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Legacy why styles */
.why-content { display: flex; flex-direction: column; gap: 60px;
    margin-top: 60px; }
.why-block h3 {
    font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700; margin-bottom: 30px; color: var(--text-color);
}
.why-block p {
    font-size: clamp(16px, 1.8vw, 18px); line-height: 1.8;
    color: var(--text-secondary); margin-bottom: 20px;
}
.why-list {
    list-style: none; padding: 0;
}
.why-list li {
    font-size: clamp(16px, 1.8vw, 18px); line-height: 1.8;
    color: var(--text-secondary); padding-left: 35px;
    position: relative; margin-bottom: 20px;
}
.why-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: var(--accent-color); font-weight: 900; font-size: 22px;
}
.why-list li strong { color: var(--text-color); font-weight: 700; }
.why-quote {
    background: var(--bg-card); border-left: 4px solid var(--accent-color);
    border-radius: 12px; padding: 30px 40px; margin-top: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .why-quote {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.why-quote p {
    font-size: clamp(15px, 1.7vw, 17px); line-height: 1.9;
    color: var(--text-secondary); margin: 0;
}
.why-quote strong { color: var(--accent-color); }

/* How It Works Section */
.how-section { background: var(--bg-color); }
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; margin-top: 60px;
}
.step-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 24px; padding: 40px; text-align: center;
    position: relative; overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .step-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.step-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 24px;
    background: var(--gradient-glow); opacity: 0;
    transition: opacity var(--transition-normal); pointer-events: none;
}
.step-card:hover {
    border-color: var(--accent-color); transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(251, 133, 0, 0.15);
}
.step-card:hover::before { opacity: 0.08; }
.step-number {
    width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 24px;
    background: var(--gradient-primary); display: flex;
    align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 32px;
    font-weight: 900; color: #ffffff;
    box-shadow: 0 10px 30px var(--accent-glow);
}
.step-card h3 {
    font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px);
    font-weight: 700; line-height: 1.4; color: var(--text-color);
}
.how-cta { text-align: center; margin-top: 60px; }

/* Problems Section (B2B Pain Points) */
.problems-section { 
    background: var(--bg-secondary); 
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-normal);
}

.problem-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 133, 0, 0.15);
}

.problem-card:hover::before {
    transform: scaleY(1);
}

.problem-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.problem-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 16px 0;
    line-height: 1.4;
    font-family: var(--font-display);
    font-style: italic;
}

.problem-solution {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.problem-solution strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    
    .problem-card {
        padding: 24px;
    }
    
    .problem-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .problem-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .problem-solution {
        font-size: 14px;
    }
}

/* Legacy Social Proof Section (mantido para compatibilidade) */
.social-proof-section { background: var(--bg-secondary); overflow: hidden; }

/* Marquee Component - Inspired by Magic UI */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-reverse .marquee-track {
    animation: marquee-reverse 40s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Gradient fade edges */
.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

/* Testimonial Cards */
.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 133, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    font-family: var(--font-display);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    font-style: italic;
}

.testimonial-card blockquote::before {
    content: none;
}

/* Legacy placeholder styles - keep for backwards compatibility */
.social-proof-placeholder {
    background: var(--bg-card); border: 2px dashed var(--border-color);
    border-radius: 24px; padding: 80px 60px; text-align: center;
}
.social-proof-placeholder p {
    font-size: clamp(16px, 1.8vw, 18px); line-height: 1.8;
    color: var(--text-secondary); margin-bottom: 20px;
}
.social-proof-placeholder p strong { color: var(--accent-color); }

/* FAQ Section */
.faq-section { background: var(--bg-color); }
.faq-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px; margin-top: 60px;
}
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 20px; padding: 35px; position: relative; overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .faq-item {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.faq-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gradient-primary);
    transform: scaleX(0); transition: transform var(--transition-normal);
}
.faq-item:hover {
    border-color: var(--accent-color); transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(251, 133, 0, 0.12);
}
.faq-item:hover::before { transform: scaleX(1); }
.faq-item h3 {
    font-family: var(--font-display); font-size: clamp(18px, 2vw, 21px);
    font-weight: 700; margin-bottom: 15px; color: var(--text-color);
}
.faq-item p {
    font-size: 16px; line-height: 1.7; color: var(--text-secondary);
    margin: 0;
}
.faq-item p strong { color: var(--accent-color); font-weight: 700; }

/* Page Hero Styles (Internal Pages) */
.page-hero {
    padding-top: calc(120px + env(safe-area-inset-top, 0px));
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: var(--gradient-glow);
    opacity: 0.4;
    filter: blur(150px);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-hero-badge {
    display: inline-flex;
    margin-bottom: 24px;
}

.page-hero-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(251, 133, 0, 0.4);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.page-hero-description {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.page-hero-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-badge-item .badge-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.hero-badge-item .badge-text {
    display: flex;
    flex-direction: column;
}

.hero-badge-item .badge-text strong {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.hero-badge-item .badge-text span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* About Section */
.about-section {
    background: var(--bg-secondary);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-top: 60px;
}

.about-lead {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-lead strong {
    color: var(--accent-color);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

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

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    margin-top: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-normal);
}

.about-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-card {
        padding: 24px;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-color);
}

.gallery-info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
}

.gallery-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 15px;
    color: var(--text-color);
}

.info-icon {
    font-size: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Vision Section */
.vision-section {
    background: var(--bg-secondary);
}

.vision-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.vision-lead {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 32px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.vision-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.vision-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.vision-conclusion {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 32px;
}

.vision-conclusion strong {
    color: var(--accent-color);
}

/* Target Section */
.target-section {
    background: var(--bg-color);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: var(--accent-color);
}

.target-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.target-item p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.target-conclusion {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
}

.target-conclusion strong {
    color: var(--accent-color);
}

/* Vision & Target Mobile Responsive */
@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .vision-card {
        padding: 20px;
    }
    
    .vision-number {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .vision-card p {
        font-size: 16px;
    }
    
    .vision-lead {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .vision-conclusion {
        font-size: 16px;
        margin-top: 24px;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 24px 0;
    }
    
    .target-item {
        padding: 16px;
    }
    
    .target-icon {
        font-size: 20px;
    }
    
    .target-item p {
        font-size: 15px;
    }
    
    .target-conclusion {
        font-size: 18px;
    }
}

/* Method Section */
.method-section {
    background: var(--bg-secondary);
}

/* Contact Section Styles */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 0;
}

.section-title-sm {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent-color);
}

.contact-card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 8px;
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-card-content a:hover {
    opacity: 0.8;
}

.contact-note {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Social Links */
.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-color);
    background: rgba(251, 133, 0, 0.1);
    color: var(--accent-color);
}

.social-icon {
    font-size: 18px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

button.full-width {
    width: 100%;
    justify-content: center;
}

/* Comparison Section */
.comparison-section {
    background: var(--bg-secondary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.comparison-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all var(--transition-normal);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.comparison-pro10 {
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.comparison-pro10::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffa500);
}

.comparison-header {
    margin-bottom: 32px;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.comparison-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.comparison-monthly .comparison-badge {
    background: #666;
}

.comparison-price {
    margin-bottom: 32px;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
    display: block;
    margin-top: 8px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-highlight {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: 16px;
}

.comparison-highlight p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-normal);
}

.faq-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
}

.faq-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card,
    .faq-card {
        padding: 24px;
    }
    
    .price-value {
        font-size: 36px;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    position: relative; overflow: hidden;
}
.final-cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 800px; height: 800px;
    background: var(--gradient-glow); border-radius: 50%;
    opacity: 0.8; pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite;
}
.final-cta-content {
    text-align: center; position: relative; z-index: 1;
    max-width: 900px; margin: 0 auto;
}
.final-cta-content .section-title { margin-bottom: 30px; }
.final-cta-content .section-description { margin-bottom: 50px; }
.btn-xl {
    font-size: clamp(18px, 2.2vw, 22px) !important;
    padding: 28px 60px !important; font-weight: 800 !important;
    box-shadow: 0 20px 60px rgba(251, 133, 0, 0.3),
                0 0 80px rgba(251, 133, 0, 0.2);
}
.btn-xl:hover {
    box-shadow: 0 25px 80px rgba(251, 133, 0, 0.4),
                0 0 100px rgba(251, 133, 0, 0.3);
}

/* Footer */
.footer {
    position: relative; background: var(--bg-secondary);
    border-top: 1px solid var(--border-color); padding: 80px 0 40px; overflow: hidden;
    min-height: 400px;
}
.footer .container { position: relative; z-index: 1; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at top, rgba(251, 133, 0, 0.03) 0%, transparent 50%);
    pointer-events: none; z-index: 0; }
.footer-fluid-wave { position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0; pointer-events: none; }
.footer-fluid-wave::before { content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(251, 133, 0, 0.08) 0%, transparent 60%);
    pointer-events: none; }
.footer-fluid-wave #fluid-canvas { position: absolute; top: 0; left: 0; width: 100%;
    height: 100%; opacity: 0.5; mix-blend-mode: screen; }
[data-theme="light"] .footer-fluid-wave #fluid-canvas { mix-blend-mode: multiply; opacity: 0.4; }
.footer-fluid-wave .wave-overlay { position: absolute; top: 0; left: 0; width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(251, 133, 0, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
    pointer-events: none; }
.footer-fluid-wave .wave-content { position: relative; width: 100%; height: 100%; }
.footer-fluid-wave .wave-orb { position: absolute; border-radius: 50%; filter: blur(70px);
    opacity: 0.4; animation: orbFloat 20s ease-in-out infinite; }
.footer-fluid-wave .orb-1 { width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.6) 0%, rgba(251, 133, 0, 0) 70%);
    top: 10%; left: 15%; animation-delay: 0s; }
.footer-fluid-wave .orb-2 { width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.5) 0%, rgba(255, 107, 0, 0) 70%);
    top: 30%; right: 10%; animation-delay: 7s; }
.footer-fluid-wave .orb-3 { width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.55) 0%, rgba(251, 133, 0, 0) 70%);
    bottom: 10%; left: 45%; animation-delay: 14s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    33% { transform: translate(50px, -50px) scale(1.1); opacity: 0.8; }
    66% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.5; }
}
/* Footer Content Grid - 4 Columns */
.footer-content { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; 
    gap: 60px; 
    margin-bottom: 60px; 
    position: relative;
    z-index: 2;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 380px;
}

.footer-logo img { 
    height: 48px; 
    margin-bottom: 16px; 
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)); 
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 8px 0;
    font-family: var(--font-display);
}

.footer-brand-tagline {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

/* Footer Social Icons - Dock Component */
.footer-social { 
    margin-top: 24px;
}

/* Override dock styles for footer integration */
.footer-brand .dock-container {
    margin: 0;
    background: rgba(251, 133, 0, 0.05);
    border-color: rgba(251, 133, 0, 0.2);
}

[data-theme="dark"] .footer-brand .dock-container {
    background: rgba(251, 133, 0, 0.08);
    border-color: rgba(251, 133, 0, 0.25);
}

[data-theme="light"] .footer-brand .dock-container {
    background: rgba(251, 133, 0, 0.05);
    border-color: rgba(251, 133, 0, 0.15);
}

/* Footer Columns */
.footer-column h4 { 
    font-size: 16px; 
    font-weight: 700; 
    margin-bottom: 20px; 
    color: var(--text-color); 
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer-column li {
    margin-bottom: 4px;
}

.footer-column a { 
    display: inline-block; 
    padding: 6px 0; 
    color: var(--text-secondary); 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 500; 
    transition: all var(--transition-fast); 
}

.footer-column a:hover { 
    color: var(--accent-color); 
    transform: translateX(4px); 
}

/* Footer Contact Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.contact-icon {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 3px;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.contact-item span,
.contact-item a {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: block;
}

.contact-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-item strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Phone Groups */
.phone-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}

.phone-group:last-child {
    margin-bottom: 0;
}

.phone-group a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.phone-note {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.8;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    position: relative;
    z-index: 2;
    text-align: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom-links .separator {
    color: var(--border-color);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content { 
        grid-template-columns: 1.5fr 1fr 1fr; 
        gap: 40px; 
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-contact-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .contact-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-contact-list {
        flex-direction: column;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    .footer-bottom-links {
        font-size: 12px;
    }
}

/* Gallery Grid Adjustments */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per line on desktop */
    gap: 24px;
    margin-top: 40px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 per line on mobile */
    }
}
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 32px;
    text-align: center; position: relative; z-index: 2; }
.footer-bottom p { font-size: 14px; color: var(--text-secondary); }

/* Responsive */
@media (max-width: 1200px) {
    :root { --section-padding: 100px; }
    .nav-menu { gap: 30px; }
    .nav-link { font-size: 14px; }
}

@media (max-width: 1024px) {
    :root { --section-padding: 80px; }
    .header { top: calc(env(safe-area-inset-top, 0px) + 16px);
        width: calc(100% - 40px); }
    .header-container { padding: 0 24px; height: 64px; }
    /* Hide desktop nav and show mobile toggle on tablet/mobile */
    .nav-desktop { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .dropdown-menu { min-width: 260px; }
    .container { padding: 0 24px; }
    .hero-content {
        padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
        padding-left: max(env(safe-area-inset-left, 0px), 40px);
        padding-right: max(env(safe-area-inset-right, 0px), 40px);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 40px);
    }
    .pro10-features { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .tech-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .faq-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .why-company-stats { gap: 40px; }
    .footer-content { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; }
    .geometric-lines { opacity: 0.2; }
    [data-theme="light"] .geometric-lines { opacity: 0.1; }
    .line-3, .line-5, .line-7, .line-8 { display: none; }
    .circle-2, .circle-3 { display: none; }
    .square-2 { display: none; }
    .header-container { overflow-x: auto; overflow-y: hidden; scrollbar-width: none;
        -ms-overflow-style: none; }
    .header-container::-webkit-scrollbar { display: none; }
    .nav-desktop { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav-menu { gap: 20px; white-space: nowrap; }
    .nav-link { font-size: 12px; }
    .header-controls { gap: 10px; margin-left: 16px; }
    .theme-toggle, .lang-toggle { width: 40px; height: 40px; }
    .lang-toggle { padding: 0 14px; font-size: 11px; }
    .hero-content {
        padding-top: calc(env(safe-area-inset-top, 0px) + 40px);
        padding-left: max(env(safe-area-inset-left, 0px), 24px);
        padding-right: max(env(safe-area-inset-right, 0px), 24px);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 40px);
    }
    .intro-badge { padding: 10px 20px; margin-bottom: 24px; }
    .intro-badge span { font-size: 13px; }
    .company-badges { grid-template-columns: 1fr; gap: 16px; margin: 40px 0 50px; }
    .badge-item { padding: 20px; }
    .badge-icon { font-size: 28px; }
    .badge-content strong { font-size: 15px; }
    .badge-content span { font-size: 13px; }
    .btn-main-cta { font-size: 15px; padding: 20px 32px; }
    .cta-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .problems-grid { grid-template-columns: 1fr; }
    .pro10-features { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; gap: 30px; }
    .faq-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .solution-highlight { padding: 40px; }
    .social-proof-placeholder { padding: 50px 30px; }
    .testimonial-card { width: 280px; padding: 20px; }
    .marquee-fade { width: 80px; }
    .marquee-container { margin-top: 30px; }
    .animated-list-container { padding: 10px; margin-top: 40px; }
    .animated-list { grid-template-columns: 1fr; gap: 16px; }
    .animated-list-item { padding: 16px 20px; }
    .list-item-icon { width: 44px; height: 44px; min-width: 44px; font-size: 22px; }
    .list-item-header h4 { font-size: 15px; }
    .list-item-content p { font-size: 13px; }
    .velocity-scroll-container { margin-bottom: 30px; }
    .velocity-text, .velocity-text-highlight { font-size: 32px; }
    .velocity-fade { width: 80px; }
    .pro10-feature-card { padding: 30px; }
    .pro10-card-icon { width: 60px; height: 60px; min-width: 60px; font-size: 30px; }
    .pro10-card-header { gap: 16px; }
    .pro10-card-titles h3 { font-size: 24px; }
    .pro10-card-actions { flex-direction: column; }
    .pro10-card-actions .btn { width: 100%; justify-content: center; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
    .why-card { padding: 24px; }
    .why-card-icon { font-size: 36px; margin-bottom: 16px; }
    .why-card h3 { font-size: 18px; }
    .why-company-block { padding: 40px 24px; margin-top: 40px; }
    .why-company-stats { flex-direction: column; gap: 24px; }
    .why-quote-modern { padding: 20px 24px; }
    .footer-fluid-wave .wave-orb { filter: blur(50px); opacity: 0.3; }
    .footer-fluid-wave .orb-1 { width: 250px; height: 250px; }
    .footer-fluid-wave .orb-2 { width: 300px; height: 300px; }
    .footer-fluid-wave .orb-3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .header { top: calc(env(safe-area-inset-top, 0px) + 12px);
        width: calc(100% - 24px); border-radius: 20px; }
    .header-container { height: 60px; padding: 0 16px; }
    .logo img { height: 40px; }
    .hero-content {
        padding-top: calc(env(safe-area-inset-top, 0px) + 30px);
        padding-left: max(env(safe-area-inset-left, 0px), 20px);
        padding-right: max(env(safe-area-inset-right, 0px), 20px);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 30px);
    }
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 18px; }
    .section-description { font-size: 16px; }
    .intro-badge { padding: 8px 16px; }
    .intro-badge span { font-size: 12px; }
    .title-highlight::after { height: 3px; bottom: -6px; }
    .company-badges { margin: 30px 0 40px; }
    .badge-item { padding: 16px; flex-direction: column; text-align: center;
        align-items: center; }
    .badge-content { align-items: center; text-align: center; }
    .btn-main-cta { font-size: 14px; padding: 18px 28px; }
    .btn-main-cta span { display: block; line-height: 1.4; }
    .feature-card { padding: 30px; }
    .feature-icon { font-size: 40px; margin-bottom: 20px; }
    .tech-icon { font-size: 44px; }
    .tech-card-header { flex-direction: column; gap: 16px; }
    .solution-highlight { padding: 30px; }
    .step-number { width: 60px; height: 60px; font-size: 28px; }
    .social-proof-placeholder { padding: 40px 24px; }
    .testimonial-card { width: 260px; padding: 18px; }
    .testimonial-avatar { width: 40px; height: 40px; }
    .testimonial-info h4 { font-size: 14px; }
    .testimonial-info span { font-size: 12px; }
    .testimonial-card blockquote { font-size: 14px; }
    .marquee-fade { width: 50px; }
    .marquee-content { gap: 16px; padding-right: 16px; }
    .animated-list-container { padding: 0; }
    .animated-list-item { padding: 14px 16px; gap: 12px; flex-wrap: wrap; }
    .list-item-icon { width: 40px; height: 40px; min-width: 40px; font-size: 20px; border-radius: 10px; }
    .list-item-header { flex-direction: column; align-items: flex-start; gap: 6px; }
    .list-item-header h4 { font-size: 14px; white-space: normal; }
    .list-item-badge { font-size: 10px; padding: 3px 8px; }
    .list-item-content p { font-size: 12px; -webkit-line-clamp: 3; }
    .list-item-action { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
    .animated-list-fade { height: 60px; }
    .velocity-text, .velocity-text-highlight { font-size: 24px; }
    .velocity-separator, .velocity-separator-highlight { font-size: 16px; }
    .velocity-scroll-container { padding: 10px 0; }
    .velocity-fade { width: 40px; }
    .pro10-feature-card { padding: 24px; border-radius: 24px; }
    .pro10-card-badge span { font-size: 11px; padding: 6px 12px; }
    .pro10-card-header { flex-direction: column; gap: 16px; }
    .pro10-card-icon { width: 56px; height: 56px; min-width: 56px; font-size: 28px; border-radius: 16px; }
    .pro10-card-label { font-size: 12px; }
    .pro10-card-titles h3 { font-size: 22px; }
    .pro10-card-highlight { gap: 8px; }
    .highlight-tag { padding: 8px 14px; font-size: 12px; }
    .pro10-card-description { font-size: 15px; }
    .btn-outline { padding: 14px 24px; font-size: 14px; width: 100%; justify-content: center; }
    .btn-xl { font-size: 16px !important; padding: 22px 40px !important; }
    .footer-fluid-wave #fluid-canvas { opacity: 0.3; }
    .footer-fluid-wave .wave-orb { filter: blur(40px); opacity: 0.2; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none !important; }
    .velocity-scroll-row { animation: none !important; }
    .footer-fluid-wave .wave-orb { animation: none; }
    .footer-fluid-wave #fluid-canvas { display: none; }
}

::selection { background: var(--accent-color); color: #ffffff; }

/* ============================================
   RESELLER PAGE STYLES - CLEAN LAYOUT
   ============================================ */

/* Hero Section with Commission Badge */
.reseller-hero {
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.05), rgba(255, 140, 0, 0.02));
    border-bottom: 1px solid var(--border-color);
}

.reseller-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commission-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    color: #ffffff;
    padding: 24px 48px;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 12px 40px rgba(251, 133, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.commission-amount {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-display);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.commission-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.reseller-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
    font-family: var(--font-display);
    line-height: 1.2;
}

.reseller-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Content Sections */
.reseller-why,
.reseller-how,
.reseller-target,
.reseller-products {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 32px;
    font-family: var(--font-display);
}

.section-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Lists */
.reseller-benefits,
.reseller-steps,
.reseller-target-list,
.reseller-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reseller-benefits li,
.reseller-target-list li,
.reseller-products-list li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.reseller-benefits li:hover,
.reseller-target-list li:hover,
.reseller-products-list li:hover {
    transform: translateX(8px);
    border-left-width: 6px;
    box-shadow: 0 4px 16px rgba(251, 133, 0, 0.1);
}

.reseller-steps {
    counter-reset: step-counter;
}

.reseller-steps li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 24px 24px 80px;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}

.reseller-steps li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(251, 133, 0, 0.15);
    border-color: var(--accent-color);
}

.reseller-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
}

/* Form Section */
.reseller-form-section {
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.03), rgba(255, 140, 0, 0.01));
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
}

.reseller-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-row {
    margin-bottom: 24px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    color: var(--text-color);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

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

.radio-group {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group {
    margin-top: 32px;
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.success-note {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 24px;
    margin-top: 48px;
}

.success-note p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .commission-amount {
        font-size: 48px;
    }
    
    .commission-label {
        font-size: 16px;
    }
    
    .reseller-hero-title {
        font-size: 32px;
    }
    
    .reseller-hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .reseller-form {
        padding: 32px 24px;
    }
    
    .form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .reseller-steps li {
        padding: 20px 20px 20px 72px;
    }
    
    .reseller-steps li::before {
        width: 40px;
        height: 40px;
        font-size: 20px;
        left: 16px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
}
::-moz-selection { background: var(--accent-color); color: #ffffff; }
*:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 4px; }

/* ============================================
   ARTICLE PAGES - PROFESSIONAL LAYOUT
   ============================================ */

/* Articles Page - Reduce spacing */
.articles-section.section-padding {
    padding-top: 60px !important;
}

/* Article Header */
.article-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.03) 0%, rgba(255, 107, 0, 0.01) 100%);
    border-bottom: 1px solid var(--border-color);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
    transform: translateX(-4px);
}

.article-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-bottom: 24px;
    max-width: 900px;
}

.article-lead {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    font-weight: 400;
}

/* Article Content */
.article-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-top: 60px;
    margin-bottom: 24px;
    line-height: 1.3;
    position: relative;
    padding-left: 24px;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.article-body h3 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-body p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.article-body p strong {
    color: var(--text-color);
    font-weight: 600;
}

.article-body ul,
.article-body ol {
    margin: 32px 0;
    padding-left: 0;
    list-style: none;
}

.article-body ul li,
.article-body ol li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.article-body ol {
    counter-reset: article-counter;
}

.article-body ol li {
    counter-increment: article-counter;
}

.article-body ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-display);
}

/* CTA Card dentro do artigo */
.cta-card {
    margin: 60px 0;
    padding: 48px;
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.08) 0%, rgba(255, 107, 0, 0.03) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.cta-card h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
    padding: 16px 40px;
    font-size: 18px;
    box-shadow: 0 12px 40px rgba(251, 133, 0, 0.3);
}

.cta-card .btn:hover {
    box-shadow: 0 16px 50px rgba(251, 133, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
}

/* FAQ Section */
.article-faq {
    max-width: 800px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.article-faq h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(251, 133, 0, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item h3::before {
    content: 'Q';
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 44px;
}

/* Related Articles */
.related-articles {
    max-width: 800px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.related-articles h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.related-card:hover::before {
    transform: scaleY(1);
}

.related-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(251, 133, 0, 0.15);
}

.related-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-display);
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-card:hover .read-more {
    gap: 12px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .article-header {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-lead {
        font-size: 18px;
    }

    .article-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .article-body {
        padding: 0 20px;
    }

    .article-body h2 {
        font-size: 28px;
        margin-top: 40px;
        padding-left: 20px;
    }

    .article-body h3 {
        font-size: 22px;
    }

    .article-body p {
        font-size: 17px;
    }

    .article-body ul li,
    .article-body ol li {
        font-size: 17px;
        padding-left: 32px;
    }

    .cta-card {
        padding: 32px 24px;
        margin: 40px -20px;
        border-radius: 0;
    }

    .cta-card h3 {
        font-size: 24px;
    }

    .cta-card p {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .cta-card .btn {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
    }

    .article-faq,
    .related-articles {
        margin-top: 60px;
        padding-top: 40px;
    }

    .article-faq h2,
    .related-articles h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .faq-item {
        padding: 24px 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p {
        font-size: 16px;
    }

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

    .related-card {
        padding: 24px 20px;
    }
}

/* Job Cards (Trabalhe Connosco) */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.job-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-family: var(--font-display);
}

.job-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .job-card .btn-outline {
        width: 100%;
    }
}

/* ================================================
   FILE TREE NAVIGATION (Magic UI Style)
   ================================================ */
.file-tree-nav {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
}

.file-tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-tree-item {
    position: relative;
}

/* Tree indicator line */
.file-tree-children {
    list-style: none;
    padding-left: 12px;
    margin-left: 8px;
    border-left: 1px solid var(--border-color);
    display: none;
}

.file-tree-children.expanded {
    display: block;
}

/* Item content */
.file-tree-link,
.file-tree-folder-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
}

.file-tree-link:hover,
.file-tree-folder-toggle:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .file-tree-link:hover,
[data-theme="light"] .file-tree-folder-toggle:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.file-tree-link.active {
    background-color: rgba(251, 133, 0, 0.12);
    color: var(--accent-color);
}

/* Icons */
.file-tree-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.file-tree-link:hover .file-tree-icon,
.file-tree-folder-toggle:hover .file-tree-icon,
.file-tree-link.active .file-tree-icon {
    opacity: 1;
}

/* Chevron arrow */
.file-tree-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    opacity: 0.5;
    margin-right: -2px;
}

.file-tree-item.expanded > .file-tree-folder-toggle .file-tree-chevron {
    transform: rotate(90deg);
}

/* Folder icons toggle */
.file-tree-folder-icon-open {
    display: none;
}

.file-tree-item.expanded > .file-tree-folder-toggle .file-tree-folder-icon-closed {
    display: none;
}

.file-tree-item.expanded > .file-tree-folder-toggle .file-tree-folder-icon-open {
    display: block;
}

/* Label */
.file-tree-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Menu Social Links */
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

[data-theme="light"] .mobile-menu-social a {
    background: rgba(0, 0, 0, 0.04);
}

.mobile-menu-social a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

.mobile-menu-social svg {
    width: 20px;
    height: 20px;
}
/* Utility classes for new layout elements */
.mt-12 { margin-top: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-bold { font-weight: 700; }
.text-accent { color: var(--accent-color); }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.flex { display: flex; }
.gap-4 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }

/**
 * Dock Component Styles
 * MacOS-style animated dock with magnification effect
 */

.dock-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: fit-content;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

[data-theme="dark"] .dock-container {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .dock-container {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

.dock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    position: relative;
    transform-origin: bottom center;
    flex-shrink: 0;
}

.dock-icon svg {
    width: 100%;
    height: 100%;
    padding: 8px;
}

.dock-icon:hover {
    color: var(--accent-color);
    background: rgba(251, 133, 0, 0.1);
}

/* Tooltip */
.dock-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1000;
}

.dock-icon::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.dock-icon:hover::before,
.dock-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Separator */
.dock-separator {
    width: 1px;
    height: 32px;
    background: var(--border-color);
    margin: 0 4px;
    flex-shrink: 0;
}

/* Active state */
.dock-icon.active {
    color: var(--accent-color);
    background: rgba(251, 133, 0, 0.15);
}

.dock-icon.active::before {
    background: var(--accent-color);
}

.dock-icon.active::after {
    border-top-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .dock-container {
        gap: 8px;
        padding: 10px 12px;
        border-radius: 16px;
    }
    
    .dock-icon {
        width: 36px;
        height: 36px;
    }
    
    .dock-separator {
        height: 28px;
    }
}

/* Animation on load */
@keyframes dockFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dock-container {
    animation: dockFadeIn 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

