/* ============================================
   REBEL CO. GROUP — LIGHT THEME DESIGN SYSTEM
   ============================================ */

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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --bg-dark: #0f1117;
    --bg-dark-card: #181b23;
    --bg-dark-secondary: #1a1d27;
    --border: #e8eaed;
    --border-hover: #d0d4d9;
    --border-light: #f0f1f3;
    --gold: #ffd700;
    --gold-bright: #ffd700;
    --gold-dim: #e6c200;
    --gold-glow: rgba(255, 215, 0, 0.08);
    --gold-glow-strong: rgba(255, 215, 0, 0.15);
    --white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-dim: #9ca3af;
    --text-light: #ffffff;
    --text-light-secondary: rgba(255, 255, 255, 0.7);
    --text-light-muted: rgba(255, 255, 255, 0.5);
    --whatsapp: #25d366;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    --max-width: 1200px;
    --section-padding: 120px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-primary); background: var(--bg-primary); color: var(--text-secondary); line-height: 1.7; font-size: 16px; overflow-x: hidden; }

/* UTILITY */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-label { font-family: var(--font-accent); font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: inline-block; }
.section-title { font-size: clamp(32px, 4.5vw, 48px); font-weight: 700; color: var(--text-primary); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }
.section-header { margin-bottom: 72px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.gold { color: var(--gold); }

/* Dark section overrides */
.section-dark { background: var(--bg-dark); }
.section-dark .section-title { color: var(--text-light); }
.section-dark .section-subtitle { color: var(--text-light-secondary); }
.section-dark .section-label { color: var(--gold-bright); }

/* Light section */
.section-light { background: var(--bg-secondary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; font-family: var(--font-primary); font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.3s ease; cursor: pointer; border: none; white-space: nowrap; }
.btn-primary { background: var(--gold); color: #1a1a1a; }
.btn-primary:hover { background: var(--gold-dim); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border); }
.btn-secondary:hover { background: var(--text-primary); color: var(--white); border-color: var(--text-primary); }
.btn-dark { background: var(--bg-dark); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--text-primary); padding: 16px 0; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform 0.3s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-sm { padding: 11px 24px; font-size: 14px; }
.btn-outline-light { background: transparent; color: var(--text-light); border: 1.5px solid rgba(255, 255, 255, 0.25); }
.btn-outline-light:hover { background: var(--white); color: var(--bg-dark); border-color: var(--white); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; max-width: 100vw; z-index: 1000; transition: all 0.4s ease; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.header.scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: 0 1px 0 var(--border); }
.header-inner { max-width: var(--max-width); width: 100%; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 80px; box-sizing: border-box; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 36px; height: auto; object-fit: contain; }
.logo-text { font-family: var(--font-accent); font-size: 18px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.logo-text span { color: var(--text-muted); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.2s ease; position: relative; }
.nav a:hover { color: var(--text-primary); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; border-radius: 1px; }
.nav a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 20px; }
.lang-switch { font-size: 13px; font-weight: 600; color: var(--text-muted); display: flex; gap: 4px; align-items: center; }
.lang-switch a { text-decoration: none; padding: 4px 8px; border-radius: 4px; transition: all 0.2s; }
.lang-switch a.active { color: var(--text-primary); background: var(--bg-secondary); }
.lang-switch a:not(.active) { color: var(--text-muted); }
.lang-switch a:not(.active):hover { color: var(--text-secondary); }
.header-cta { padding: 10px 24px; font-size: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 12px; margin-right: 0; position: relative; z-index: 10; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }

/* PAGE HERO */
.page-hero { padding: 160px 0 80px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.page-hero-content { max-width: 700px; }
.page-hero-title { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--text-primary); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; }
.page-hero-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 560px; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ABOUT PAGE */
.about-overview { padding: var(--section-padding) 0; }
.about-overview .about-text p { color: var(--text-secondary); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.about-text p { margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.3s ease; }
.about-stat-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.about-stat-number { font-family: var(--font-accent); font-size: 36px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.about-stat-label { font-size: 14px; color: var(--text-muted); }

.philosophy { padding: var(--section-padding) 0; background: var(--bg-secondary); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.philosophy-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; transition: all 0.3s ease; }
.philosophy-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.philosophy-number { font-family: var(--font-accent); font-size: 48px; font-weight: 700; color: var(--gold); opacity: 0.15; margin-bottom: 16px; line-height: 1; }
.philosophy-card h3 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.philosophy-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

.differentiators { padding: var(--section-padding) 0; }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.diff-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; display: flex; gap: 20px; align-items: flex-start; transition: all 0.3s ease; }
.diff-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.diff-icon { font-size: 16px; flex-shrink: 0; width: 48px; height: 48px; background: var(--gold-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-family: var(--font-accent); }
.diff-card h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.diff-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.about-industries { padding: var(--section-padding) 0; background: var(--bg-secondary); }
.about-industries-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-industries-text p { margin-top: 16px; }
.about-industries-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-industry-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 600; color: var(--text-primary); transition: border-color 0.3s; }
.mini-industry-card:hover { border-color: var(--gold); }
.mini-industry-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* SERVICES HUB */
.services-hub-hero { padding: 160px 0 80px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.services-categories { padding: var(--section-padding) 0; }
.services-categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* SERVICE CARD */
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; transition: all 0.35s ease; text-decoration: none; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-number { font-family: var(--font-accent); font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 20px; letter-spacing: 0.05em; }
.service-card h3 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; letter-spacing: -0.01em; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.service-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.service-tag { font-size: 12px; font-weight: 500; color: var(--text-muted); padding: 4px 12px; border: 1px solid var(--border); border-radius: 100px; background: var(--bg-secondary); }
.service-card-link { font-size: 14px; font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 8px; transition: color 0.2s ease; }
.service-card:hover .service-card-link { color: var(--gold); }
.service-card-link .arrow { transition: transform 0.3s ease; }
.service-card:hover .service-card-link .arrow { transform: translateX(4px); }

/* Featured service card (larger) */
.service-card.featured { grid-column: span 2; padding: 48px 40px; background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%); border-color: transparent; }
.service-card.featured h3 { color: var(--text-light); font-size: 24px; }
.service-card.featured p { color: var(--text-light-secondary); }
.service-card.featured .service-tag { color: var(--text-light-muted); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
.service-card.featured .service-card-link { color: var(--text-light); }
.service-card.featured:hover .service-card-link { color: var(--gold-bright); }
.service-card.featured .service-card-number { color: var(--gold-bright); }

/* CONTACT PAGE */
.contact-hero { padding: 160px 0 80px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.contact-full { padding: var(--section-padding) 0; }
.contact-full-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-sidebar h2 { font-size: 28px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; }
.contact-sidebar p { margin-bottom: 32px; }
.contact-trust-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-trust-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.contact-trust-list .check { color: var(--gold); }

.full-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-sm); }
.full-form h3 { font-size: 22px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.full-form .form-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-steps-indicator { display: flex; gap: 8px; margin-bottom: 32px; }
.step-dot { width: 40px; height: 3px; border-radius: 2px; background: var(--border); transition: background 0.3s; }
.step-dot.active { background: var(--gold); }
.form-nav { display: flex; gap: 12px; margin-top: 24px; }

/* FORM ELEMENTS */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.form-input { width: 100%; padding: 14px 16px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); font-family: var(--font-primary); font-size: 15px; transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-input::placeholder { color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit { width: 100%; margin-top: 8px; }

/* CONTACT DETAILS */
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-secondary); }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-glow); border: 1px solid rgba(255, 215, 0, 0.15); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; color: var(--gold); font-weight: 600; }

/* FAQ PAGE */
.faq-page-content { padding: var(--section-padding) 0; }
.faq-category { margin-bottom: 56px; }
.faq-category-title { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.faq-grid { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; color: var(--text-primary); font-family: var(--font-primary); font-size: 16px; font-weight: 600; padding: 24px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color 0.2s ease; }
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 24px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* CTA SECTION */
.cta-section { padding: var(--section-padding) 0; background: var(--bg-dark); text-align: center; position: relative; overflow: hidden; }
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: var(--text-light); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-subtitle { font-size: 18px; color: var(--text-light-secondary); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .section-label { color: var(--gold-bright); }

/* FOOTER */
.footer { background: var(--bg-dark); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-icon { width: 28px; height: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--font-accent); font-size: 16px; font-weight: 700; color: var(--text-light); }
.footer-brand p { font-size: 14px; color: var(--text-light-muted); margin-bottom: 24px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.12); display: flex; align-items: center; justify-content: center; color: var(--text-light-muted); font-size: 14px; text-decoration: none; transition: all 0.2s ease; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(255, 215, 0, 0.08); }
.footer-column h4 { font-size: 14px; font-weight: 600; color: var(--text-light); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-light-muted); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 13px; color: var(--text-light-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-light-muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-light-secondary); }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); transition: all 0.3s ease; text-decoration: none; color: white; font-size: 24px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(9) { transition-delay: 640ms; opacity: 1; transform: translateY(0); }

/* CAREER */
.career-values { padding: var(--section-padding) 0; }
.career-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.career-value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.3s ease; }
.career-value-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.career-value-accent { width: 32px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 16px; }
.career-value-card h3 { font-size: 17px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.career-value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.career-positions { padding: var(--section-padding) 0; background: var(--bg-secondary); }
.position-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: all 0.3s ease; }
.position-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.position-info h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.position-meta { display: flex; gap: 16px; font-size: 14px; color: var(--text-muted); }
.position-meta span { display: flex; align-items: center; gap: 6px; }

.career-apply { padding: var(--section-padding) 0; }
.career-apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.career-apply h2 { color: var(--text-primary); }
.career-apply p { color: var(--text-secondary); }

/* BLOG */
.blog-grid-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; text-decoration: none; display: block; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-image { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary)); display: flex; align-items: center; justify-content: center; }
.blog-card-image span { font-family: var(--font-accent); font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.blog-card-body { padding: 28px; }
.blog-card-category { font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.blog-card-meta { font-size: 13px; color: var(--text-dim); }
.blog-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* BLOG LISTING */
.blog-listing { padding: var(--section-padding) 0; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-listing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.blog-listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-listing-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-secondary); }
.blog-listing-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-listing-card:hover .blog-listing-card-image img { transform: scale(1.05); }
.blog-listing-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-listing-card-category { font-size: 12px; font-weight: 600; color: var(--gold-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.blog-listing-card h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.4; }
.blog-listing-card-meta { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; display: flex; gap: 6px; }
.blog-listing-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.blog-listing-card-link { font-size: 14px; font-weight: 600; color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
.blog-listing-card-link:hover { color: var(--gold); }

/* BLOG POST */
.blog-post-content { padding: var(--section-padding) 0; }
.blog-post-content .container { max-width: 800px; }
.blog-post-content h2 { font-size: 28px; font-weight: 700; color: var(--text-primary); margin: 40px 0 16px; }
.blog-post-content p { font-size: 17px; line-height: 1.8; margin-bottom: 20px; color: var(--text-secondary); }

/* MOBILE MENU */
.mobile-menu { position: fixed; inset: 0; background: var(--bg-dark); z-index: 1001; display: flex; flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: flex-end; margin-bottom: 48px; }
.mobile-menu-close { background: none; border: none; color: var(--text-light); font-size: 28px; cursor: pointer; padding: 8px; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 0; flex-grow: 1; }
.mobile-menu-nav a { font-size: 24px; font-weight: 600; color: var(--text-light); text-decoration: none; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: color 0.2s; }
.mobile-menu-nav a:hover { color: var(--gold-bright); }
.mobile-menu-bottom { padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-bottom .lang-switch { display: flex; font-size: 15px; }
.mobile-menu-bottom .lang-switch a.active { color: var(--text-light); background: rgba(255, 255, 255, 0.08); }
.mobile-menu-bottom .lang-switch a:not(.active) { color: var(--text-light-muted); }
.mobile-menu-contact { font-size: 14px; color: var(--text-light-muted); display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-contact a { color: var(--text-light-secondary); text-decoration: none; }

/* PARTNERS */
.partners { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; align-items: center; }
.partner-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; text-align: center; transition: all 0.35s ease; flex: 1 1 180px; max-width: 200px; min-width: 160px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.partner-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-card-logo { height: 36px; width: auto; opacity: 0.5; transition: opacity 0.3s ease; filter: grayscale(1); }
.partner-card:hover .partner-card-logo { opacity: 1; filter: grayscale(0); }
.partner-card-name { font-family: var(--font-accent); font-size: 13px; font-weight: 600; color: var(--text-muted); line-height: 1.3; }
.partner-card-badge { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* VERTICAL TIMELINE PROCESS */
.process-timeline { max-width: 680px; margin: 0 auto; position: relative; padding-left: 28px; }
.process-timeline::before { content: ''; position: absolute; left: 55px; top: 40px; bottom: 40px; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--gold-dim), var(--border)); z-index: 0; }
.timeline-step { display: flex; align-items: flex-start; gap: 28px; position: relative; z-index: 1; }
.timeline-step:hover .timeline-number { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: 0 0 24px var(--gold-glow-strong); }
.timeline-step:hover .timeline-content { border-color: var(--gold); box-shadow: var(--shadow-md); }
.timeline-number { width: 56px; height: 56px; min-width: 56px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-accent); font-size: 18px; font-weight: 700; color: var(--gold); transition: all 0.35s ease; position: relative; z-index: 2; }
.timeline-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; flex: 1; transition: all 0.35s ease; }
.timeline-content h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.01em; }
.timeline-content p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.timeline-connector { display: flex; align-items: center; gap: 28px; padding-left: 0; }
.timeline-connector-line { width: 56px; min-width: 56px; display: flex; justify-content: center; padding: 6px 0; }
.timeline-connector-line svg { color: var(--gold); opacity: 0.4; }
.timeline-connector-dot { display: none; }

/* Dark section overrides for specific elements */
.section-dark .timeline-number { background: var(--bg-dark-card); }
.section-dark .timeline-content { background: var(--bg-dark-card); border-color: rgba(255,255,255,0.08); }
.section-dark .timeline-content h3 { color: var(--text-light); }
.section-dark .timeline-content p { color: var(--text-light-muted); }
.section-dark .timeline-step:hover .timeline-content { background: rgba(255,255,255,0.05); }

/* FOUNDER SECTION */
.founder-section { padding: var(--section-padding) 0; }
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.founder-image { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; }
.founder-info .founder-name { font-size: 28px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.founder-info .founder-role { font-size: 16px; color: var(--gold); font-weight: 600; margin-bottom: 24px; }
.founder-info p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .header-inner { padding: 0 24px; }
    .container { padding: 0 24px; }
    .nav, .header-right { display: none; }
    .menu-toggle { display: block; }
    .about-grid, .about-industries-grid, .contact-full-grid, .career-apply-grid, .founder-grid { grid-template-columns: 1fr; gap: 48px; }
    .philosophy-grid, .services-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .career-values-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid-layout { grid-template-columns: 1fr; }
    .blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-listing-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card.featured { grid-column: span 1; }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px; }
    .page-hero { padding: 110px 0 40px; }
    .page-hero-title { font-size: clamp(24px, 6.5vw, 36px); }
    .page-hero-subtitle { font-size: 16px; }
    .section-title { font-size: clamp(24px, 6vw, 36px); }
    .section-subtitle { font-size: 16px; }
    .philosophy-grid, .services-categories-grid, .about-stats, .about-industries-cards { grid-template-columns: 1fr; }
    .career-values-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .cta-title { font-size: clamp(24px, 6vw, 36px); }
    .cta-subtitle { font-size: 16px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { text-align: center; justify-content: center; }
    .position-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .blog-cards-grid { grid-template-columns: 1fr; }
    .blog-listing-grid { grid-template-columns: 1fr; }
    .blog-listing-card-body { padding: 20px; }
    .blog-listing-card h3 { font-size: 16px; }
    .full-form { padding: 24px; }
    .partners-grid { gap: 12px; }
    .partner-card { padding: 16px 12px; min-width: 100px; max-width: none; flex: 1 1 100px; }
    .partner-card-logo { height: 24px; }
    .partner-card-name { font-size: 11px; }
    .process-timeline { padding-left: 0; }
    .process-timeline::before { left: 27px; }
    .timeline-step { gap: 16px; }
    .timeline-number { width: 44px; height: 44px; min-width: 44px; font-size: 15px; }
    .timeline-connector { gap: 16px; }
    .timeline-connector-line { width: 44px; min-width: 44px; }
    .timeline-content { padding: 20px; }
    .timeline-content h3 { font-size: 16px; }
    .timeline-content p { font-size: 14px; }
    .section-header { margin-bottom: 40px; }
    .btn { padding: 14px 28px; font-size: 14px; }
    .service-card { padding: 28px 24px; }
    .service-card h3 { font-size: 18px; }
    .contact-detail { font-size: 14px; }
    .mobile-menu-nav a { font-size: 20px; padding: 14px 0; }
}

@media (max-width: 480px) {
    :root { --section-padding: 48px; }
    .header-inner { padding: 0 16px; height: 64px; }
    .container { padding: 0 16px; }
    .logo-icon { width: 28px; }
    .logo-text { font-size: 14px; }
    .logo { gap: 8px; }
    .menu-toggle { padding: 10px; }
    .page-hero { padding: 90px 0 32px; }
    .page-hero-title { font-size: clamp(22px, 6vw, 30px); }
    .career-values-grid { grid-template-columns: 1fr; }
    .about-stat-number { font-size: 28px; }
    .philosophy-card { padding: 28px 20px; }
    .diff-card { padding: 24px 20px; flex-direction: column; }
    .footer-grid { gap: 28px; }
    .footer-brand { max-width: 100%; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 20px; bottom: 20px; right: 16px; }
}

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

section:not(:first-of-type) { content-visibility: auto; contain-intrinsic-size: auto 500px; }
