/* ============================================
   CUT DIJITAL - PREMIUM LANDING PAGE STYLES
   Dark Luxury Theme with Gold Accents
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-card: #161616;
    --color-bg-card-hover: #1a1a1a;

    --color-gold-primary: #c9a962;
    --color-gold-light: #e4d4a5;
    --color-gold-dark: #a88a3d;
    --color-gold-gradient: linear-gradient(135deg, #c9a962 0%, #e4d4a5 50%, #c9a962 100%);

    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
    transition: all var(--transition-medium);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-scissors {
    font-size: 2rem;
    color: #c9a962;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.logo-underline {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c9a962, #e4d4a5);
    margin-top: 2px;
}

/* Typography */
.gold-text {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 169, 98, 0.6);
    }
}

@keyframes scroll-line {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s !important;
}

.delay-2 {
    animation-delay: 0.4s !important;
}

.delay-3 {
    animation-delay: 0.6s !important;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--color-gold-gradient);
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    font-size: 1.4rem;
}

.btn-primary.btn-large {
    padding: 22px 48px;
    font-size: 1.2rem;
}

.btn-primary.btn-large i {
    font-size: 1.6rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-secondary:hover {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-primary);
    background: rgba(201, 169, 98, 0.05);
}

.btn-secondary i {
    font-size: 1.2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 24px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold-primary), transparent);
    animation: scroll-line 1.5s ease infinite;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.metric-card {
    padding: 40px 20px;
    position: relative;
}

.metric-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.metric-card:last-child::after {
    display: none;
}

.metric-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.metric-prefix {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--color-gold-primary);
}

.metric-label {
    display: block;
    margin-top: 12px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.2);
    background: var(--color-bg-card-hover);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--color-gold-primary);
}

.why-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.process-timeline {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--color-gold-primary);
    border-radius: var(--radius-md);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 90px;
    width: 2px;
    height: calc(100% - 50px);
    background: linear-gradient(to bottom, var(--color-gold-primary), transparent);
}

.step-content {
    flex: 1;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-medium);
}

.step-content:hover {
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateX(10px);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 1.4rem;
    color: var(--color-gold-primary);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.step-details {
    list-style: none;
}

.step-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.step-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-gold-primary);
    border-radius: 50%;
}

.step-details li:last-child {
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subheadline {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.7;
}

.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-gold-primary);
}

.footer-link i {
    font-size: 1.2rem;
    width: 24px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 100%;
    }

    .why-card {
        padding: 30px 20px;
    }

    .process-timeline {
        gap: 30px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Header Mobile */
    .header {
        padding: 15px 0;
    }

    .logo-scissors {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    /* Hero Mobile */
    .hero-section {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .hero-cta-container {
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .btn-primary i {
        font-size: 1.2rem;
    }

    .btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Metrics Mobile */
    .social-proof-section {
        padding: 50px 0;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-card {
        padding: 25px 15px;
    }

    .metric-card::after {
        display: none;
    }

    .metric-number {
        font-size: 2.2rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }

    /* Why Section Mobile */
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }

    .why-card {
        padding: 30px 24px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 1.5rem;
    }

    .why-text {
        font-size: 1rem;
    }

    /* Process Section Mobile */
    .process-step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .step-content {
        padding: 24px 20px;
    }

    .step-content:hover {
        transform: none;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .step-details li {
        font-size: 0.95rem;
        padding-left: 16px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-headline {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .cta-subheadline {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .btn-primary.btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        order: 1;
    }

    .footer-contact {
        order: 2;
    }

    .footer-contact h4 {
        margin-bottom: 15px;
    }

    .footer-link {
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    /* Section Headlines Mobile */
    .section-headline {
        font-size: 1.6rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
}

/* Mobile Portrait (Small) */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 16px;
    }

    .header-container {
        padding: 0 16px;
    }

    .logo-scissors {
        font-size: 1.4rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-underline {
        height: 1.5px;
    }

    .hero-section {
        padding: 90px 16px 50px;
    }

    .hero-headline {
        font-size: 1.7rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-cta-container {
        padding: 0;
    }

    .btn-primary {
        padding: 14px 20px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .btn-secondary {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .section-headline {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .step-content {
        padding: 20px 16px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-details li {
        font-size: 0.9rem;
    }

    .cta-headline {
        font-size: 1.5rem;
    }

    .cta-subheadline {
        font-size: 0.95rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Smooth scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-primary);
}