/* ==========================================
   NARAWAY RECRUITMENT - INNOVATIVE DESIGN
   Brand: #E67E22 (Orange), #2F3A4E (Navy)
   ========================================== */

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

:root {
    --orange: #E67E22;
    --orange-light: #F39C12;
    --navy: #2F3A4E;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.7);
    --gray-light: rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   CINEMATIC HERO WITH ORBITAL SYSTEM
   ========================================== */

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230, 126, 34, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(47, 58, 78, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--orange);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-hero-primary,
.btn-hero-ghost {
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(230, 126, 34, 0.4);
}

.btn-hero-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.proof-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 13px;
    color: var(--gray-light);
}

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

/* Orbital Animation System */
.orbital-system {
    position: relative;
    width: 500px;
    height: 500px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 400px;
    height: 400px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    animation: rotate 15s linear infinite reverse;
}

.orbit-3 {
    width: 200px;
    height: 200px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(230, 126, 34, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--orange);
}

.node-1 { top: -30px; left: 50%; transform: translateX(-50%); }
.node-2 { right: -30px; top: 50%; transform: translateY(-50%); }
.node-3 { bottom: -30px; left: 50%; transform: translateX(-50%); }

.center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.core-pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--orange);
    animation: corePulse 3s infinite;
}

@keyframes corePulse {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ==========================================
   ASYMMETRIC SPLIT SECTION
   ========================================== */

.split-value {
    padding: 160px 0;
    background: var(--black);
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}

.split-sticky {
    position: sticky;
    top: 140px;
}

.section-title-xl {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-desc-xl {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
}

.split-stats {
    display: flex;
    gap: 48px;
}

.split-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-light);
}

/* Advantage Cards */
.advantage-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(47, 58, 78, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    transform: translateX(8px);
    border-color: rgba(230, 126, 34, 0.3);
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.08) 0%, rgba(47, 58, 78, 0.08) 100%);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(230, 126, 34, 0.1);
    line-height: 1;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 28px;
    color: var(--orange);
}

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantage-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ==========================================
   BENTO GRID SOLUTIONS
   ========================================== */

.solutions-bento {
    padding: 160px 0;
    background: var(--dark);
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 80px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 280px);
    gap: 24px;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.03) 0%, rgba(47, 58, 78, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 126, 34, 0.4);
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.2);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(230, 126, 34, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover .bento-overlay {
    opacity: 1;
}

.bento-content {
    position: relative;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bento-icon i {
    font-size: 24px;
    color: var(--orange);
}

.bento-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 16px;
}

.bento-features {
    list-style: none;
    margin-bottom: auto;
}

.bento-features li {
    font-size: 13px;
    color: var(--gray-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.bento-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.bento-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
}

.stat-lbl {
    font-size: 12px;
    color: var(--gray-light);
}

/* ==========================================
   HORIZONTAL SCROLL INDUSTRIES
   ========================================== */

.industries-horizontal {
    padding: 160px 0;
    background: var(--black);
}

.industries-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.industries-intro {
    text-align: center;
    margin-bottom: 80px;
}

.industries-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
}

.industries-scroll::-webkit-scrollbar {
    display: none;
}

.industry-panel {
    min-width: 450px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(47, 58, 78, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.3s;
}

.industry-panel:hover {
    border-color: rgba(230, 126, 34, 0.3);
}

.panel-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.panel-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.panel-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 32px;
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.panel-tags span {
    padding: 8px 16px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 8px;
    font-size: 13px;
    color: var(--orange);
}

.panel-metric {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-big {
    font-size: 56px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 8px;
}

/* ==========================================
   DIAGONAL ECOSYSTEM
   ========================================== */

.ecosystem-diagonal {
    padding: 160px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.diagonal-stripe {
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
    transform: skewY(-6deg);
}

.ecosystem-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.eco-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.eco-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 126, 34, 0.3);
}

.eco-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eco-icon i {
    font-size: 24px;
    color: var(--orange);
}

.eco-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.eco-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ==========================================
   STAGGERED CASE STUDIES
   ========================================== */

.cases-staggered {
    padding: 160px 0;
    background: var(--black);
}

.cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.cases-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.case-card {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.03) 0%, rgba(47, 58, 78, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
}

.case-offset-left {
    transform: translateY(0);
}

.case-offset-center {
    transform: translateY(40px);
}

.case-offset-right {
    transform: translateY(0);
}

.case-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(230, 126, 34, 0.3);
}

.case-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(230, 126, 34, 0.15);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 20px;
}

.case-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.case-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-stat {
    display: flex;
    flex-direction: column;
}

.stat-n {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
}

.stat-l {
    font-size: 12px;
    color: var(--gray-light);
}

.case-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ==========================================
   FULLWIDTH TESTIMONIALS
   ========================================== */

.testimonials-fullwidth {
    padding: 160px 0;
    background: var(--dark);
    position: relative;
}

.testimonials-track {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    height: 400px;
}

.testimonial-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
}

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

.testimonial-stars {
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 32px;
}

.testimonial-quote {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--white);
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray-light);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 60px;
}

.testimonial-nav {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-nav:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--orange);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   MINIMAL FAQ
   ========================================== */

.faq-clean {
    padding: 160px 0;
    background: var(--black);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.faq-accordion {
    margin-top: 80px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-trigger {
    width: 100%;
    padding: 32px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s;
}

.faq-trigger:hover {
    color: var(--orange);
}

.faq-trigger i {
    font-size: 20px;
    transition: all 0.3s;
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
    color: var(--orange);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

/* ==========================================
   IMMERSIVE CTA
   ========================================== */

.cta-immersive {
    padding: 200px 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(47, 58, 78, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-cta-main,
.btn-cta-alt {
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-cta-main {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    box-shadow: 0 10px 40px rgba(230, 126, 34, 0.3);
}

.btn-cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 56px rgba(230, 126, 34, 0.4);
}

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

.btn-cta-alt:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange);
}

.cta-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
}

.badge-item i {
    font-size: 20px;
    color: var(--orange);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .hero-grid,
    .split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual,
    .orbital-system {
        display: none;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .cases-wrapper,
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title-xl {
        font-size: 36px;
    }
    
    .hero-actions,
    .cta-buttons {
        flex-direction: column;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-panel {
        min-width: 320px;
    }
    
    .testimonial-quote {
        font-size: 20px;
    }
    
    .cta-headline {
        font-size: 36px;
    }
}
