/* ============================================
   DUCA DIZAJN - Light Theme Premium Design
   ============================================ */

/* Fontovi se učitavaju kroz <link> u <head> — bez @import duplikata */

/* ============================================
   CSS Variables - Light Theme
   ============================================ */
:root {
    /* Primary Colors - Based on Logo */
    --primary: #c4a882;
    --primary-dark: #a8906e;
    --primary-light: #d4bc9a;
    --primary-lighter: #e8dcc8;

    /* Background Colors - Light Theme */
    --bg-primary: #fdfcfa;
    --bg-secondary: #f8f6f2;
    --bg-tertiary: #f0ece4;
    --bg-card: #ffffff;

    /* Text Colors — kontrast pojačan za WCAG AA (4.5:1 nad bg-primary) */
    --text-dark: #2d2520;
    --text-primary: #4a3f35;
    --text-secondary: #5a4e44;
    --text-muted: #6b5f52;
    
    /* Accent Colors */
    --accent-gold: #d4a574;
    --accent-cream: #f5f0e8;
    --instagram: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    
    /* Shadows - Light Theme */
    --shadow-sm: 0 2px 12px rgba(196, 168, 130, 0.08);
    --shadow-md: 0 8px 24px rgba(196, 168, 130, 0.12);
    --shadow-lg: 0 16px 48px rgba(196, 168, 130, 0.15);
    --shadow-xl: 0 24px 64px rgba(196, 168, 130, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c4a882 0%, #d4bc9a 100%);
    --gradient-shine: linear-gradient(135deg, #f5f0e8 0%, #ffffff 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    
    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out-quart);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--ease-out-quart);
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower {
        display: none;
    }
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    animation: rotate 3s linear infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preloader-progress {
    width: 200px;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 2s ease-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

.preloader-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.4s var(--ease-out-quart);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 15px 40px;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    padding: 2px;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-out-quart);
}

.nav-link:hover {
    color: var(--primary);
}

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

.nav-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.nav-burger.active span:first-child {
    transform: rotate(45deg) translate(4px, 6px);
}

.nav-burger.active span:last-child {
    transform: rotate(-45deg) translate(4px, -6px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-logo .logo-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
}

.link-num {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--primary);
    margin-bottom: 5px;
}

.link-text {
    display: block;
}

.mobile-cta {
    margin-top: 20px;
    padding: 16px 32px;
    background: var(--instagram);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   Hero Section - New Beautiful Design
   ============================================ */
.slide {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.slide-hero {
    background: var(--bg-primary);
    padding-top: 80px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
    padding: 0 60px;
}

/* Left Side - Content */
.hero-left {
    display: flex;
    align-items: center;
}

.hero-content-wrap {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-cream);
    border: 1px solid var(--primary-lighter);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--text-dark);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.title-highlight {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 10px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 35px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.7s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out-quart);
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary);
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Right Side - Visual */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
}

.visual-bg {
    position: absolute;
    inset: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.circle-1 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--primary-lighter) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.circle-2 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: radial-gradient(circle, var(--accent-cream) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

.circle-3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-15px, 15px) scale(0.95); }
    75% { transform: translate(10px, 5px) scale(1.02); }
}

.hero-logo-showcase {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 1s var(--ease-out-expo) 0.3s both;
}

.hero-logo-showcase img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
}

.ring-1 {
    width: 250px;
    height: 250px;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation: ringPulse 3s ease-in-out infinite 0.3s;
}

.ring-3 {
    width: 350px;
    height: 350px;
    animation: ringPulse 3s ease-in-out infinite 0.6s;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--primary-lighter);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

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

/* ============================================
   Section Base Styles
   ============================================ */
.slide {
    padding: 60px 60px;
    position: relative;
}

.slide-hero {
    padding-bottom: 40px;
}

.slide-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: 10%;
    left: -150px;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-intro {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.section-line {
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 50px;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-showcase {
    display: flex;
    justify-content: center;
}

.showcase-card {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.card-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--primary-lighter);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s;
}

.showcase-card:hover .card-frame {
    transform: translateY(-10px);
}

.showcase-img {
    width: 100%;
    display: block;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196, 168, 130, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.overlay-content {
    text-align: center;
    padding: 40px;
    color: white;
}

.overlay-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    font-size: 2rem;
}

.overlay-icon i {
    background: var(--instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    margin-top: 20px;
    transition: transform 0.3s;
}

.overlay-btn:hover {
    transform: scale(1.05);
}

.card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.info-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

.info-tag i {
    font-size: 1.2rem;
    background: var(--instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Services Section
   ============================================ */
.slide-services {
    background: var(--bg-secondary);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-lighter);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s var(--ease-out-quart);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-cream);
    border-radius: 16px;
    margin-bottom: 25px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: color 0.4s;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--primary-lighter);
}

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

.price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--primary);
}

/* ============================================
   Process Section
   ============================================ */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background: var(--primary-lighter);
}

.process-step {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-left: 80px;
}

.step-marker {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.4s;
}

.process-step:hover .step-marker {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.step-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--primary-lighter);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s;
}

.process-step:hover .step-card {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-cream);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.2rem;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FAQ Section
   ============================================ */
.slide-faq {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-lighter);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    margin-bottom: 25px;
    color: white;
    font-size: 1.4rem;
}

.faq-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 40px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Footer CTA Section
   ============================================ */
.footer-cta {
    text-align: center;
    padding: 50px 30px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(196, 168, 130, 0.15) 0%, rgba(212, 188, 154, 0.1) 100%);
    border: 1px solid rgba(196, 168, 130, 0.3);
    border-radius: 20px;
}

.footer-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--instagram);
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(240, 148, 51, 0.4);
    transition: all 0.3s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 36px rgba(240, 148, 51, 0.6);
}

.cta-button i:last-child {
    transition: transform 0.3s;
}

.cta-button:hover i:last-child {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand .logo-circle {
    width: 35px;
    height: 35px;
    border-color: white;
}

.footer-brand span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-bottom > p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer-credit a {
    color: var(--primary);
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* ============================================
   Floating Instagram
   ============================================ */
.floating-ig {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--instagram);
    color: white;
    font-size: 1.6rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: transform 0.3s;
}

.floating-ig:hover {
    transform: scale(1.1);
}

.floating-pulse {
    position: absolute;
    inset: 0;
    background: var(--instagram);
    border-radius: 50%;
    animation: pulse-effect 2s ease-in-out infinite;
}

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

.floating-ig i {
    position: relative;
    z-index: 1;
}

/* ============================================
   Scroll Progress
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bg-tertiary);
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    transition: width 0.1s;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .hero-right {
        margin-top: 40px;
    }

    .hero-logo-showcase {
        width: 240px;
        height: 240px;
    }
    
    .hero-logo-showcase img {
        width: 160px;
        height: 160px;
    }
    
    .nav-menu, .nav-cta {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 80px 30px;
    }
    
    .hero-split {
        padding: 0 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-logo-showcase {
        width: 250px;
        height: 250px;
    }
    
    .hero-logo-showcase img {
        width: 130px;
        height: 130px;
    }
    
    .floating-card {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .process-step {
        padding-left: 70px;
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .floating-ig {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 15px 20px;
    }

    .logo-text {
        display: none;
    }

    .hero-split {
        padding: 0 20px;
    }

    .slide {
        padding: 60px 20px;
    }

    .hero-logo-showcase {
        width: 200px;
        height: 200px;
    }

    .hero-logo-showcase img {
        width: 110px;
        height: 110px;
    }

    .floating-card {
        display: none;
    }
}

/* ============================================
   Skip link (a11y)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    z-index: 10002;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
    outline: 3px solid var(--primary-dark);
}

/* Focus indicators (a11y, WCAG 2.4.7) */
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10003;
    background: var(--bg-card);
    border: 1px solid rgba(196, 168, 130, 0.4);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(45, 37, 32, 0.2);
    padding: 22px 24px;
    max-width: 520px;
    margin-left: auto;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.45s var(--ease-out-expo), opacity 0.3s ease-out;
}
.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}
.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0 0 18px;
    line-height: 1.55;
}
.cookie-banner a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (min-width: 480px) {
    .cookie-actions { flex-direction: row; }
}
.cookie-btn {
    flex: 1;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease-out, background 0.2s, color 0.2s;
    min-height: 44px;
}
.cookie-btn-primary {
    background: var(--primary);
    color: #fff;
}
.cookie-btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.cookie-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(106, 89, 71, 0.35);
}
.cookie-btn-secondary:hover { background: var(--bg-tertiary); }

/* ============================================
   Legal pages (privacy / terms / cookies)
   ============================================ */
body.legal-page {
    background: var(--bg-primary);
    min-height: 100vh;
}
.nav--legal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 168, 130, 0.2);
    padding: 16px 32px;
}
.nav--legal .nav-inner { max-width: 900px; }
.nav--legal .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(106, 89, 71, 0.35);
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}
.nav--legal .nav-cta:hover { background: var(--bg-tertiary); }

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
}
.legal-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(196, 168, 130, 0.3);
}
.legal-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 14px;
}
.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.legal-updated {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}
.legal-content section {
    margin-bottom: 36px;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--text-dark);
    margin: 0 0 16px;
    letter-spacing: -0.005em;
}
.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 10px;
}
.legal-content p {
    margin: 0 0 14px;
}
.legal-content ul, .legal-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}
.legal-content li {
    margin-bottom: 6px;
}
.legal-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.legal-content a:hover { color: var(--primary); }
.legal-content code {
    font-family: 'Courier New', Consolas, monospace;
    background: var(--bg-tertiary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.92em;
    color: var(--text-dark);
}
.legal-content .muted {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.legal-content strong { color: var(--text-dark); }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 24px;
    font-size: 0.92rem;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.legal-table th, .legal-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(196, 168, 130, 0.18);
}
.legal-table th {
    background: var(--bg-secondary);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.legal-table tr:last-child td { border-bottom: 0; }

.footer--legal {
    border-top: 1px solid rgba(196, 168, 130, 0.25);
    padding: 30px 24px;
    background: var(--bg-secondary);
}
.footer--legal .footer-inner {
    max-width: 820px;
    margin: 0 auto;
}
.footer--legal .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

/* Footer-legal links inside main footer */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
}
.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    padding: 4px 0;
}
.footer-legal a:hover, .footer-legal a[aria-current="page"] {
    color: var(--primary-dark);
    border-color: currentColor;
}

/* ============================================
   404 page
   ============================================ */
body.error-page {
    margin: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--font-body);
}
.error-content { width: 100%; }
.error-inner {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}
.error-logo img {
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    padding: 4px;
}
.error-eyebrow {
    font-family: var(--font-display);
    font-size: clamp(4rem, 16vw, 7rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 12px;
    line-height: 1;
    letter-spacing: -0.04em;
}
.error-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    color: var(--text-dark);
    margin: 0 0 16px;
}
.error-desc {
    color: var(--text-primary);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.error-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
@media (min-width: 480px) {
    .error-actions { flex-direction: row; }
}

/* ============================================
   Reduced motion respect
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    .preloader-bar, .preloader-logo,
    .floating-pulse, .ring-1, .ring-2, .ring-3 {
        animation: none !important;
    }
}
