/* ===================================
   Fire Sky - Modern One-Pager CSS
   =================================== */

/* CSS Variables - Color Palette */
:root {
    /* Primary Brand Colors */
    --primary: #E8422C;
    --primary-dark: #C73724;
    --primary-light: #F26A56;
    
    /* Tech Accent Colors */
    --tech-blue: #1D75FF;
    --cyber-teal: #1FAFA0;
    --electric-purple: #6B4CFF;
    
    /* Light Theme */
    --bg-light: #FAFAFA;
    --surface-light: #F0F0F0;
    --text-primary: #1A1A1A;
    --text-secondary: #5C5C5C;
    
    /* Dark Theme */
    --bg-dark: #101010;
    --surface-dark: #1B1B1B;
    --text-on-dark: #EDEDED;
    
    /* Supporting Colors */
    --soft-coral: #EC8678;
    --warm-gray: #D9D9D9;
    --muted-sand: #F5E8E1;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 30px rgba(232, 66, 44, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #fff 0%, var(--soft-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 66, 44, 0.4);
}

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

.btn-light:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: white;
    color: var(--cyber-teal);
    border: 2px solid var(--cyber-teal);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
    background: var(--cyber-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 175, 160, 0.3);
}

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

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

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    color: white;
}

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

.navbar.scrolled .lang-toggle {
    color: var(--text-primary);
}

.navbar.scrolled .lang-toggle:hover {
    background: var(--surface-light);
}

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

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

.lang-divider {
    opacity: 0.4;
}

.lang-inactive {
    opacity: 0.6;
}

.lang-toggle:hover .lang-inactive {
    opacity: 1;
}

.mobile-lang {
    color: var(--text-primary);
    justify-content: flex-end;
    height: 56px;
    padding-right: 0;
}

.mobile-lang:hover {
    background: none;
}

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

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

.navbar.scrolled .nav-links a::after {
    background: var(--primary);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--text-primary);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 0 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-menu.scrolled {
    top: 56px;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 56px;
    border-bottom: 1px solid var(--surface-light);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url('components/development.jpg') center center / cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.85) 0%, rgba(27, 27, 27, 0.75) 100%);
}

.hero-gradient {
    display: none;
}

.hero-pattern {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-centered {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-centered .hero-cta {
    justify-content: center;
}

.hero-centered .hero-trust {
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(232, 66, 44, 0.2);
    border: 1px solid rgba(232, 66, 44, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-text h1 {
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta .btn {
    min-width: 240px;
    justify-content: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.device-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, var(--surface-dark) 0%, var(--bg-dark) 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        var(--shadow-lg),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

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

.app-header {
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-card {
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    animation: pulse 2s ease-in-out infinite;
}

.app-card.small {
    height: 60px;
    width: 70%;
}

.app-card:nth-child(2) {
    animation-delay: 0.3s;
}

.app-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.app-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.nav-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 500;
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-1 {
    top: 60px;
    left: -40px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 80px;
    right: -40px;
    animation-delay: 2s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(232, 66, 44, 0.1) 0%, rgba(107, 76, 255, 0.1) 100%);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: rgba(232, 66, 44, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card.featured {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--surface-dark) 100%);
    color: white;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--text-on-dark);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.icon-web,
.icon-app,
.icon-custom,
.icon-crypto {
    background: linear-gradient(135deg, rgba(232, 66, 44, 0.1) 0%, rgba(232, 66, 44, 0.2) 100%);
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card > p {
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyber-teal);
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap var(--transition-fast);
}

.service-card.featured .service-link {
    color: var(--primary-light);
}

.service-link:hover {
    gap: 12px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.why-intro {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-feature {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(-20px);
}

.why-feature.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-content h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.feature-content p {
    font-size: 0.9rem;
}

/* Stats Card */
.stats-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
}

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

.stars {
    color: #FFC107;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

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

.process-step {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 20px auto 0;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary);
}

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

.process-cta p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-base);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--surface-dark) 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(232, 66, 44, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(107, 76, 255, 0.12) 0%, transparent 50%);
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 36px;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: var(--surface-light);
    transform: translateX(8px);
}

.contact-method.whatsapp-method {
    background: linear-gradient(135deg, rgba(31, 175, 160, 0.1) 0%, rgba(31, 175, 160, 0.15) 100%);
    border: 1px solid rgba(31, 175, 160, 0.3);
}

.contact-method.whatsapp-method:hover {
    background: linear-gradient(135deg, rgba(31, 175, 160, 0.15) 0%, rgba(31, 175, 160, 0.2) 100%);
}

.contact-method.consult-method {
    background: linear-gradient(135deg, rgba(232, 66, 44, 0.06) 0%, rgba(242, 106, 86, 0.12) 100%);
    border: 1px solid rgba(232, 66, 44, 0.28);
    box-shadow: 0 10px 30px rgba(232, 66, 44, 0.18);
}

.contact-method.consult-method:hover {
    background: linear-gradient(135deg, rgba(232, 66, 44, 0.1) 0%, rgba(242, 106, 86, 0.18) 100%);
    transform: translateX(10px);
}

.method-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.whatsapp-method .method-icon {
    color: var(--cyber-teal);
}

.consult-method .method-icon {
    color: var(--primary);
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.method-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.contact-image-frame {
    width: 100%;
    max-width: 480px;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.contact-image-frame:hover .contact-image {
    transform: scale(1.06);
}

.contact-form h3 {
    margin-bottom: 28px;
    font-size: 1.4rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    border: 2px solid var(--surface-light);
    border-radius: var(--radius-md);
    background: white;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 66, 44, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235C5C5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 80px 0 40px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--cyber-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(31, 175, 160, 0.4);
    transition: all var(--transition-base);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(31, 175, 160, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background: white;
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-fast);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Legal / Privacy Page */
.legal-content {
    padding: 40px 0 80px;
}

.legal-article {
    max-width: 840px;
    margin: 0 auto;
}

.legal-article p {
    margin-bottom: 14px;
}

.legal-article h2 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.legal-article h2:first-of-type {
    margin-top: 20px;
}

.legal-article ul {
    margin-bottom: 14px;
    padding-left: 20px;
}

.legal-article li {
    margin-bottom: 6px;
}

/* Animation Delays */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.why-feature:nth-child(1) { transition-delay: 0.1s; }
.why-feature:nth-child(2) { transition-delay: 0.2s; }
.why-feature:nth-child(3) { transition-delay: 0.3s; }
.why-feature:nth-child(4) { transition-delay: 0.4s; }

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-visual {
        order: -1;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .logo img {
        height: 32px;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-centered {
        padding: 0 8px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 1rem;
    }
    
    .hero-trust {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .trust-divider {
        display: block;
        height: 30px;
    }
    
    .trust-item {
        flex: 1;
        text-align: center;
    }
    
    .trust-number {
        font-size: 1.25rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services,
    .why-section,
    .process-section,
    .testimonials,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto 40px;
        gap: 24px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .stats-card {
        padding: 24px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-method {
        padding: 16px;
    }
    
    .method-icon {
        width: 44px;
        height: 44px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 24px;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 32px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .why-feature {
        gap: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

