/* ============================================
   JUTROEN DIGITAL - Premium Dark Theme
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #0D0D0D;
    --color-black-light: #1A1A1A;
    --color-gold: #D4AF37;
    --color-gold-soft: #C9A25A;
    --color-white: #FFFFFF;
    --color-off-white: #F2F2F2;
    --color-grey: #7A7876;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --spacing-section: 120px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-off-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-grey);
    max-width: 700px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--color-off-white);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.logo-accent {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 0;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-gold-soft);
    color: var(--color-black);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: var(--transition);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 1.125rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    overflow: hidden;
}

.hero-decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

.line {
    position: absolute;
    background: var(--color-gold);
    transform-origin: center;
}

.line-1 {
    width: 2px;
    height: 100%;
    left: 15%;
    transform: rotate(15deg);
}

.line-2 {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: rotate(-10deg);
}

.line-3 {
    width: 2px;
    height: 100%;
    right: 20%;
    transform: rotate(8deg);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    opacity: 0.8;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-graphic .grid-lines {
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.25;
    }
}

.hero-graphic .diagonal-lines line:nth-child(1) {
    animation: lineDraw 4s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-graphic .diagonal-lines line:nth-child(2) {
    animation: lineDraw 4s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-graphic .diagonal-lines line:nth-child(3) {
    animation: lineDraw 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes lineDraw {
    0%, 100% {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
}

.hero-graphic .shape-1 {
    animation: rotate 30s linear infinite;
    transform-origin: 300px 300px;
}

.hero-graphic .shape-2 {
    animation: rotate 20s linear infinite reverse;
    transform-origin: 450px 200px;
}

.hero-graphic .shape-3 {
    animation: rotate 25s linear infinite;
    transform-origin: 150px 450px;
}

.hero-graphic .shape-4 {
    animation: rotate 15s linear infinite;
    transform-origin: 140px 140px;
}

.hero-graphic .shape-5 {
    animation: rotate 18s linear infinite reverse;
    transform-origin: 450px 450px;
}

.hero-graphic .shape-6 {
    animation: rotate 22s linear infinite;
    transform-origin: 500px 150px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-graphic .node {
    animation: nodePulse 2s ease-in-out infinite;
    animation-delay: calc(var(--node-delay, 0) * 0.3s);
}

@keyframes nodePulse {
    0%, 100% {
        r: 5;
        opacity: 0.7;
    }
    50% {
        r: 8;
        opacity: 1;
    }
}

.hero-graphic .node-1 { --node-delay: 0; }
.hero-graphic .node-2 { --node-delay: 1; }
.hero-graphic .node-3 { --node-delay: 2; }
.hero-graphic .node-4 { --node-delay: 3; }
.hero-graphic .node-5 { --node-delay: 4; }
.hero-graphic .node-6 { --node-delay: 5; }

.hero-graphic .connections line {
    stroke-dasharray: 5, 5;
    animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -20;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-description {
    font-size: 1rem;
    color: var(--color-grey);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 650px;
}

/* About Section */
.about {
    padding: var(--spacing-section) 2rem;
    background: var(--color-black-light);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 140px;
}

.about-right {
    padding-top: 2rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--color-off-white);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Services Section */
.services {
    padding: var(--spacing-section) 2rem;
    background: var(--color-black);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    padding: 3rem 2rem;
    background: var(--color-black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-description {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: var(--spacing-section) 2rem;
    background: var(--color-black-light);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-lead {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.approach-content p {
    font-size: 1.125rem;
    color: var(--color-off-white);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.approach-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 500px;
}

.visual-element {
    background: var(--color-black);
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.visual-element:hover {
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.visual-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.visual-element:hover::before {
    left: 100%;
    transition: left 0.5s;
}

.visual-label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1;
}

.visual-1 {
    grid-column: 1;
    grid-row: 1;
}

.visual-2 {
    grid-column: 2;
    grid-row: 1;
}

.visual-3 {
    grid-column: 1;
    grid-row: 2;
}

.visual-4 {
    grid-column: 2;
    grid-row: 2;
}

/* Sectors Section */
.sectors {
    padding: var(--spacing-section) 2rem;
    background: var(--color-black);
}

.sectors-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sectors-header {
    text-align: center;
    margin-bottom: 5rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.sector-card {
    padding: 3.5rem 3rem;
    background: var(--color-black-light);
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
}

.sector-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.sector-description {
    font-size: 1.125rem;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-sector {
    margin-top: auto;
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Values Section */
.values {
    padding: var(--spacing-section) 2rem;
    background: var(--color-black-light);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.values-visual {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    min-width: 80px;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.value-text {
    font-size: 1.125rem;
    color: var(--color-grey);
    line-height: 1.7;
}

.values-content p {
    font-size: 1.125rem;
    color: var(--color-off-white);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-point {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.value-point-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
}

.value-point-text {
    font-size: 1rem;
    color: var(--color-grey);
}

/* Contact Section */
.contact {
    padding: var(--spacing-section) 2rem;
    background: var(--color-black);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--color-black-light);
    padding: 3.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--color-off-white);
    line-height: 1.6;
}

.contact-address {
    color: var(--color-off-white);
}

.contact-phone,
.contact-email {
    color: var(--color-off-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.contact-form {
    background: var(--color-black-light);
    padding: 3.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--color-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-white);
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-black);
    color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--color-black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.footer-tagline {
    color: var(--color-grey);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    color: var(--color-gold-soft);
    transform: translateX(5px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-grey);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-grey);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        min-height: 400px;
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container,
    .approach-container,
    .values-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-left {
        position: static;
    }
    
    .approach-visual {
        height: 400px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 1.5rem 60px;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .hero-graphic {
        max-width: 100%;
        max-height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .approach-visual {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .visual-1,
    .visual-2,
    .visual-3,
    .visual-4 {
        grid-column: 1;
    }
    
    .visual-1 { grid-row: 1; }
    .visual-2 { grid-row: 2; }
    .visual-3 { grid-row: 3; }
    .visual-4 { grid-row: 4; }
}

@media (max-width: 480px) {
    :root {
        --spacing-section: 80px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .footer-logo .logo-image {
        height: 40px;
    }
    
    .logo-text,
    .logo-accent {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card,
    .sector-card {
        padding: 2rem 1.5rem;
    }
}

/* Legal Pages */
.legal-page {
    padding: 140px 2rem 80px;
    background: var(--color-black);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-date {
    font-size: 0.9375rem;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.legal-section {
    background: var(--color-black-light);
    padding: 2.5rem;
    border-left: 4px solid var(--color-gold);
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.legal-section p {
    font-size: 1.125rem;
    color: var(--color-off-white);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    font-size: 1.125rem;
    color: var(--color-off-white);
    line-height: 1.9;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.legal-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 1.5rem 60px;
    }
    
    .legal-section {
        padding: 2rem 1.5rem;
    }
    
    .legal-section-title {
        font-size: 1.25rem;
    }
    
    .legal-section p,
    .legal-list li {
        font-size: 1rem;
    }
}

/* Insights Page */
.insights-hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    position: relative;
    overflow: hidden;
}

.insights-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.insights-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.insights-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.insights-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.insights-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.insights-hero-description {
    font-size: 1.125rem;
    color: var(--color-grey);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Insight */
.featured-insight {
    padding: 80px 2rem;
    background: var(--color-black-light);
}

.featured-insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-insight-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.featured-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    font-family: var(--font-heading);
}

.featured-excerpt {
    font-size: 1.25rem;
    color: var(--color-off-white);
    line-height: 1.8;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

.featured-category {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-date {
    font-size: 0.9375rem;
    color: var(--color-grey);
}

.featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-graphic {
    width: 100%;
    max-width: 400px;
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

.featured-graphic svg {
    width: 100%;
    height: 100%;
}

/* Insights Grid */
.insights-grid-section {
    padding: 80px 2rem;
    background: var(--color-black);
}

.insights-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.insights-grid-header {
    text-align: center;
    margin-bottom: 4rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.insight-card {
    background: var(--color-black-light);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.insight-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.insight-category {
    padding: 0.375rem 0.875rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-date {
    font-size: 0.875rem;
    color: var(--color-grey);
}

.insight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.insight-excerpt {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.insight-read-time {
    font-size: 0.875rem;
    color: var(--color-grey);
}

/* Insights CTA */
.insights-cta {
    padding: 80px 2rem;
    background: var(--color-black-light);
    text-align: center;
}

.insights-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.insights-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.insights-cta-text {
    font-size: 1.25rem;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .featured-insight-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-hero {
        padding: 120px 1.5rem 60px;
    }
    
    .featured-insight {
        padding: 60px 1.5rem;
    }
    
    .insights-grid-section {
        padding: 60px 1.5rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-card {
        padding: 2rem 1.5rem;
    }
    
    .insights-cta {
        padding: 60px 1.5rem;
    }
}

/* Support Page */
.support-hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.support-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.support-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.support-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-gold);
    line-height: 1.6;
}

/* Support Options */
.support-options {
    padding: 80px 2rem;
    background: var(--color-black);
}

.support-options-container {
    max-width: 1400px;
    margin: 0 auto;
}

.support-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.support-option-card {
    background: var(--color-black-light);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.support-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.support-option-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.support-option-card:hover::before {
    transform: scaleX(1);
}

.support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon svg {
    width: 100%;
    height: 100%;
}

.support-option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.support-option-description {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.support-link {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.support-link:hover {
    color: var(--color-gold-soft);
    text-decoration: underline;
}

.support-address {
    color: var(--color-off-white);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Support FAQ */
.support-faq {
    padding: 80px 2rem;
    background: var(--color-black-light);
}

.support-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.faq-item {
    background: var(--color-black);
    padding: 2.5rem;
    border-left: 4px solid var(--color-gold);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.faq-answer {
    font-size: 1rem;
    color: var(--color-off-white);
    line-height: 1.8;
}

/* Support Form */
.support-form-section {
    padding: 80px 2rem;
    background: var(--color-black);
}

.support-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.support-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-form {
    background: var(--color-black-light);
    padding: 3.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Pricing Page */
.pricing-hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.pricing-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.pricing-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.pricing-hero-description {
    font-size: 1.125rem;
    color: var(--color-grey);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Models */
.pricing-models {
    padding: 80px 2rem;
    background: var(--color-black);
}

.pricing-models-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-models-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--color-black-light);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    border: 2px solid var(--color-gold);
    transform: scale(1.05);
}

.pricing-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-description {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.pricing-features li {
    font-size: 1rem;
    color: var(--color-off-white);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.pricing-duration {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.duration-label {
    font-size: 0.875rem;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.duration-value {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* Pricing Info */
.pricing-info {
    padding: 80px 2rem;
    background: var(--color-black-light);
}

.pricing-info-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pricing-info-card {
    background: var(--color-black);
    padding: 2.5rem;
    border-left: 4px solid var(--color-gold);
}

.pricing-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-info-text {
    font-size: 1rem;
    color: var(--color-grey);
    line-height: 1.8;
}

/* Pricing Form */
.pricing-form-section {
    padding: 80px 2rem;
    background: var(--color-black);
}

.pricing-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-form {
    background: var(--color-black-light);
    padding: 3.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 1024px) {
    .support-options-grid,
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-hero,
    .pricing-hero {
        padding: 120px 1.5rem 60px;
    }
    
    .support-options,
    .support-faq,
    .support-form-section,
    .pricing-models,
    .pricing-info,
    .pricing-form-section {
        padding: 60px 1.5rem;
    }
    
    .support-options-grid,
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .support-option-card,
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .support-form,
    .pricing-form {
        padding: 2rem;
    }
}

