:root {
    --bg-color: #050505;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --gold: #D4AF37;
    --glass-bg: rgba(25, 25, 25, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Epilogue', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.container { max-width: 1440px; margin: 0 auto; padding: 0 5%; }
.text-center { text-center; }

/* Typography */
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.text-center { text-align: center; }

/* Header & Nav */
.header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 30px 5%;
    display: flex; justify-content: space-between; align-items: center; z-index: 100; transition: background 0.3s ease;
}
.header.scrolled { background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(15px); padding: 15px 5%; border-bottom: 1px solid var(--glass-border); }
.header.scrolled .logo img { height: 80px; }
.logo img { height: 110px; filter: brightness(0) invert(1); transition: all 0.3s ease; }

.hamburger { background: none; border: none; cursor: pointer; z-index: 101; display: flex; flex-direction: column; gap: 6px; padding: 10px; }
.hamburger .line { width: 30px; height: 2px; background-color: var(--text-primary); transition: 0.3s ease; transform-origin: right; }
.hamburger:hover .line { background-color: var(--gold); }
.hamburger.active .line:nth-child(1) { transform: rotate(-45deg) translate(-2px, -2px); }
.hamburger.active .line:nth-child(2) { opacity: 0; }
.hamburger.active .line:nth-child(3) { transform: rotate(45deg) translate(-2px, 2px); }

/* Nav Overlay */
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; z-index: 99; transition: 0.4s ease-in-out;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.nav-links { list-style: none; text-align: center; }
.nav-links li { margin: 30px 0; transform: translateY(30px); opacity: 0; transition: 0.4s ease; }
.nav-overlay.active .nav-links li { transform: translateY(0); opacity: 1; }
.nav-link { color: var(--text-primary); text-decoration: none; font-family: var(--font-heading); font-size: 3rem; font-weight: 800; text-transform: uppercase; transition: color 0.3s ease; }
.nav-link:hover { color: var(--gold); }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
#heroVideo { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.5; 
}
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,1) 100%); }
.hero-content { text-align: center; z-index: 1; padding: 0 20px; max-width: 900px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-secondary); margin-bottom: 40px; }

/* Buttons */
.btn-primary {
    display: inline-block; padding: 18px 45px; background-color: var(--gold); color: #000;
    text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.9rem; transition: all 0.3s ease; border: 1px solid var(--gold); cursor: pointer; border-radius: 2px;
}
.btn-primary:hover { background-color: transparent; color: var(--gold); box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); }

/* Glass */
.glass { background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 8px; }

/* O Nama kratko */
.about-section { padding: 80px 0; text-align: center; }
.about-section .section-text { max-width: 800px; margin: 0 auto; color: var(--text-secondary); font-size: 1.25rem; }

/* Trust & Marquee */
.trust-section { padding: 60px 0; background: rgba(255,255,255,0.02); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); overflow: hidden; }
.stats-bar { display: flex; justify-content: center; align-items: center; gap: 40px; margin-bottom: 50px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); }
.stat-divider { font-size: 3rem; color: var(--glass-border); font-weight: 100; }

.marquee-wrapper { width: 100%; overflow: hidden; position: relative; display: flex; }
.marquee { display: flex; width: max-content; animation: scrollMarquee 30s linear infinite; }
.marquee-content { display: flex; align-items: center; gap: 80px; padding: 0 40px; }
.logo-item { font-size: 3rem; color: rgba(255,255,255,0.2); transition: 0.3s ease; cursor: pointer; }
.logo-item:hover { color: var(--gold); transform: scale(1.1); }
.client-logo { height: 60px; object-fit: contain; filter: invert(1) grayscale(100%) opacity(0.5); transition: all 0.4s ease; mix-blend-mode: screen; border-radius: 8px;}
.client-logo:hover { filter: invert(1) sepia(100%) hue-rotate(5deg) saturate(400%) brightness(1.2) opacity(1); transform: scale(1.1); }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sticky Narrative Scroll (Services) */
.sticky-narrative {
    position: relative;
    background: var(--bg-color);
}
.narrative-media {
    position: sticky;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    float: left;
    overflow: hidden;
}
.narrative-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.narrative-video.active {
    opacity: 1;
}
.narrative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5,5,5,0) 0%, rgba(5,5,5,1) 100%);
    z-index: 2;
}

.narrative-content {
    margin-left: 50vw;
    width: 50vw;
    padding-top: 50vh;
    padding-bottom: 20vh;
    position: relative;
}
.narrative-step {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    opacity: 0.3;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}
.narrative-step.active-step {
    opacity: 1;
    transform: translateY(0);
}
.step-inner {
    max-width: 600px;
}
.step-circle {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--glass-border);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 transparent;
}
.step-circle.circle-glowing {
    border-color: var(--gold);
    color: var(--bg-color);
    background: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Video Frame Pulse Effect */
.narrative-media {
    position: sticky;
    top: 0;
    width: 50vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.narrative-media.pulse-glow {
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.4);
}
.step-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.step-highlight {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.step-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media(max-width: 1024px) {
    .narrative-media {
        width: 100vw;
        height: 100vh;
        position: sticky; /* Keep sticky on mobile, but push behind text */
        top: 0;
        z-index: 1;
        float: none !important; /* SPAS ZA MARQUEE: ukida float tako da margin-top ne povuce sadrzaj u sekciju iznad */
    }
    .narrative-overlay {
        background: rgba(5,5,5,0.7); /* Darker overlay so text is readable */
    }
    .narrative-content {
        margin-left: 0;
        width: 100vw;
        margin-top: -100vh; /* Pull content over the sticky media */
        padding-top: 50vh;
        position: relative;
        z-index: 10;
        background: transparent;
    }
    .narrative-step {
        padding: 0 30px;
        min-height: 80vh;
    }
    #narrativeWindingLineSvg {
        display: none !important; /* Bez linija tu kako je traženo */
    }
}

/* The Nicioti Way */
.process-section { padding: 120px 0; background: linear-gradient(to bottom, #050505 0%, #0a0a0a 100%); }
.process-timeline { max-width: 1000px; margin: 0 auto; position: relative; }

/* SVG Winding Line Container */
.winding-line-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.winding-path { opacity: 0; }
.winding-path-fill { fill: none; stroke: var(--gold); stroke-width: 4; filter: drop-shadow(0 0 10px var(--gold)); stroke-linecap: round; transition: stroke-dashoffset 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

.process-step { display: grid; grid-template-columns: 1fr auto 1fr; gap: 50px; align-items: center; margin-bottom: 250px; position: relative; z-index: 2; opacity: 0.5; transition: opacity 0.5s ease; }
.process-step.glowing { opacity: 1; }
.process-step.glowing .step-number { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); background: var(--gold); color: var(--bg-color); }
.process-step:last-child { margin-bottom: 0; }

.step-number { width: 100px; height: 100px; flex-shrink: 0; background: var(--bg-color); border: 2px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--glass-border); transition: all 0.4s ease; margin: 0 auto; }
.step-info { padding-top: 0; transition: all 0.5s ease; }
.step-spacer { /* Prazan prostor za grid */ }

/* Left text */
.process-step.left .step-info { grid-column: 1; text-align: right; transform: translateX(-20px); }
.process-step.left .step-number { grid-column: 2; }
.process-step.left .step-spacer { grid-column: 3; }
.process-step.left.glowing .step-info { transform: translateX(0); }

/* Right text */
.process-step.right .step-spacer { grid-column: 1; }
.process-step.right .step-number { grid-column: 2; }
.process-step.right .step-info { grid-column: 3; text-align: left; transform: translateX(20px); }
.process-step.right.glowing .step-info { transform: translateX(0); }

.step-info h4 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; }
.step-info p { color: var(--text-secondary); }

@media(max-width: 768px) {
    /* Hero */
    .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
    
    /* Stats Bar (300+ projekata) */
    .stats-bar { gap: 20px; flex-direction: column; text-align: center; }
    .stat-divider { display: none; }
    .stat-item { margin-bottom: 10px; }

    /* Marquee Logos */
    .marquee-content { gap: 40px; padding: 0 20px; }
    .client-logo { height: 40px; }

    /* The Nicioti Way - Vertical Timeline */
    .process-step { 
        display: flex !important; 
        flex-direction: row !important; 
        gap: 30px; 
        margin-bottom: 80px; 
        align-items: flex-start !important;
        text-align: left !important;
        position: relative;
    }
    .step-number { 
        margin: 0; 
        width: 60px; 
        height: 60px; 
        font-size: 1.3rem; 
        flex-shrink: 0;
        z-index: 2;
    }
    .process-step.left .step-info, .process-step.right .step-info { 
        text-align: left !important; 
        transform: translateX(0) !important; 
        padding-top: 5px;
    }
    .process-step.left .step-spacer, .process-step.right .step-spacer { display: none; }
    
    /* Usluge (Narrative Steps) */
    .narrative-step { padding: 0 20px; min-height: 80vh; }
    .step-title { font-size: 2.2rem; }
    .step-circle { width: 60px; height: 60px; font-size: 1.4rem; }

    /* Footer Fixes */
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 15px; }
    .footer-legal { margin: 0; display: flex; flex-direction: column; gap: 10px; align-items: center; }
    .footer-legal a { margin: 0; }
    .footer a[href^="tel:"] { color: white !important; text-decoration: none !important; }
}

/* Reviews */
.reviews-section { padding: 120px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.review-card { padding: 40px; }
.stars { color: var(--gold); margin-bottom: 20px; font-size: 1.2rem; }
.quote { font-size: 1.2rem; font-style: italic; margin-bottom: 25px; line-height: 1.8; }
.author { color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }

/* Final CTA */
.final-cta { padding: 150px 0; background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(5,5,5,1) 70%); }
.cta-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 40px; }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 80px 0 40px 0; background: #020202; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; margin-bottom: 60px; }
.footer-brand .footer-logo { height: 60px; filter: brightness(0) invert(1); margin-bottom: 15px; display: block; }
.footer-brand p { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; }
.footer-info p { margin-bottom: 10px; color: var(--text-secondary); }
.footer-info i { color: var(--gold); margin-right: 10px; }
.footer-social a { color: var(--text-primary); font-size: 1.5rem; margin-left: 20px; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 0 5%; flex-wrap: wrap; gap: 20px; border-top: 1px solid var(--glass-border); padding-top: 30px; color: var(--text-secondary); font-size: 0.9rem; max-width: 1440px; margin: 0 auto;}
.footer-legal a { color: var(--text-secondary); text-decoration: none; margin-left: 20px; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* Contact Popup */
.contact-popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.9); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.3s ease; }
.contact-popup-overlay.show { opacity: 1; pointer-events: all; }
.contact-popup-box { padding: 50px; width: 90%; max-width: 450px; text-align: center; position: relative; transform: scale(0.9); transition: 0.3s ease; }
.contact-popup-overlay.show .contact-popup-box { transform: scale(1); }
.close-popup { position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.close-popup:hover { color: var(--gold); }
.contact-popup-box h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; }
.contact-popup-box p { color: var(--text-secondary); margin-bottom: 30px; }
.contact-options { display: flex; flex-direction: column; gap: 15px; }
.popup-btn { display: block; padding: 15px; text-decoration: none; font-weight: 600; border-radius: 5px; transition: 0.3s; }
.phone-btn { background: var(--text-primary); color: var(--bg-color); }
.phone-btn:hover { background: #e0e0e0; }
.wa-btn { background: #25D366; color: white; }
.wa-btn:hover { background: #20b858; }

/* Contact Form inside Modal */
.contact-form { margin-top: 20px; text-align: left; }
.contact-form .input-group { margin-bottom: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; background: rgba(0, 0, 0, 0.5); border: 1px solid var(--glass-border); color: var(--text-primary); border-radius: 8px; font-family: var(--font-body); font-size: 1rem; transition: all 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
.contact-alternative { margin-top: 25px; display: flex; flex-direction: column; gap: 10px; color: var(--text-secondary); font-size: 0.9rem; align-items: center; }
.contact-options-mini { display: flex; gap: 15px; justify-content: center; }
.contact-options-mini a { width: 40px; height: 40px; border-radius: 50%; background: var(--glass-border); color: white; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; font-size: 1.2rem; }
.contact-options-mini a:hover { background: var(--gold); transform: translateY(-3px); }

/* Cookie Consent Popup */
.cookie-popup { position: fixed; bottom: 20px; right: 20px; width: 90%; max-width: 400px; padding: 25px; border-radius: 15px; z-index: 9999; transform: translateY(150%); transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); border: 1px solid var(--glass-border); box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.cookie-popup.show { transform: translateY(0); }
.cookie-close { position: absolute; top: 15px; right: 15px; background: transparent; border: none; color: var(--text-secondary); cursor: pointer; font-size: 1.2rem; transition: color 0.3s; }
.cookie-close:hover { color: var(--text-primary); }
.cookie-content h4 { font-family: var(--font-heading); color: var(--text-primary); margin-bottom: 10px; font-size: 1.3rem; }
.cookie-content p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }
.cookie-content p a { color: var(--gold); text-decoration: none; }
.cookie-content p a:hover { text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 15px; }
.cookie-accept { padding: 10px 20px; font-size: 0.9rem; }
.cookie-learn-more { color: var(--text-primary); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color 0.3s; }
.cookie-learn-more:hover { color: var(--gold); }

/* Ostale stranice (Contact / Portfolio) */
.contact-page-hero, .portfolio-hero { padding: 180px 0 80px 0; background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, rgba(5,5,5,1) 70%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; margin-bottom: 100px; }
.contact-info, .contact-form-wrapper { padding: 40px; }
.info-item { display: flex; align-items: center; gap: 15px; margin-top: 30px; font-size: 1.1rem; }
.info-item i { color: var(--gold); font-size: 1.5rem; }
.info-item a { color: var(--text-primary); text-decoration: none; transition: 0.3s; }
.info-item a:hover { color: var(--gold); }
.social-links-contact { margin-top: 40px; }
.social-links-contact a { color: var(--text-primary); font-size: 1.8rem; margin-right: 20px; transition: 0.3s; }
.social-links-contact a:hover { color: var(--gold); }
.custom-form .form-group { margin-bottom: 25px; }
.custom-form label { display: block; margin-bottom: 10px; color: var(--text-secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.custom-form input, .custom-form select, .custom-form textarea { width: 100%; padding: 15px; background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); color: white; font-family: var(--font-body); border-radius: 4px; transition: border 0.3s; }
.custom-form input:focus, .custom-form select:focus, .custom-form textarea:focus { outline: none; border-color: var(--gold); }
@media(max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* Case Studies (Portfolio Redesign) */
.case-studies-container { display: flex; flex-direction: column; gap: 150px; padding: 50px 5% 150px 5%; max-width: 1600px; margin: 0 auto; }
.case-study-row { display: flex; align-items: center; gap: 80px; }
.case-study-row.reverse { flex-direction: row-reverse; }
.case-study-media { flex: 1; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid var(--glass-border); position: relative; }
.case-study-media video { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 16/9; }
.case-study-content { flex: 1; padding: 20px; }
.cs-category { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 15px; display: inline-block; }
.cs-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 25px; line-height: 1.1; }
.cs-desc { color: var(--text-secondary); font-size: 1.2rem; line-height: 1.8; margin-bottom: 30px; }
.cs-tags { list-style: none; display: flex; gap: 15px; flex-wrap: wrap; }
.cs-tags li { background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); color: var(--gold); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; }

@media(max-width: 992px) {
    .case-study-row, .case-study-row.reverse { flex-direction: column; gap: 40px; }
    .case-studies-container { gap: 100px; padding: 50px 5%; }
}

/* =========================================
   CUSTOM PRICING SECTION (V2 SPLIT LAYOUT)
   ========================================= */
.custom-pricing-section.split-layout {
    padding: 120px 5%;
    position: relative;
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    padding-right: 40px;
}

.massive-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
}

.pricing-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 20px;
}

.pricing-body {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pricing-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 30px 0;
}

.pricing-text.highlight-text {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 40px;
}

.pricing-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-actions-vertical .btn, 
.pricing-actions-vertical .btn-call,
.pricing-actions-vertical .btn-whatsapp {
    width: 100%;
    text-align: center;
    padding: 18px 30px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    margin-right: 8px;
}

.btn-call {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
}

.btn-call:hover {
    background: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-call i {
    margin-right: 8px;
}

@media(max-width: 1200px) {
    .massive-title {
        font-size: 3.5rem;
    }
}

@media(max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pricing-header {
        padding-right: 0;
        text-align: center;
    }
    .massive-title {
        font-size: 3rem;
    }
}

@media(max-width: 768px) {
    .custom-pricing-section.split-layout {
        padding: 80px 5%;
    }
    .massive-title {
        font-size: 2.5rem;
    }
    .pricing-body {
        padding: 30px 20px;
    }
}


