/* CSS Design System for steta.rs */
/* Based on Foodie Wagon Aesthetic: Black & Gold */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Roboto+Condensed:wght@700;900&display=swap');

:root {
    --bg-color: #000000;
    --card-bg: #0D0D0D;
    --accent-color:#60A5FA;
    --accent-glow: #60A5FA;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --border-radius: 12px;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
}

.bg-ornament {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #000000 70%);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

h1,
h2,
h3 {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.text-accent {
    color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000000;
}

.btn-primary:hover {
    background-color: #60A5FA;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #000000;
}

/* Header */
header {
    padding: 0;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2200;
    /* Increased to sit above mobile overlay */
    overflow: visible;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.logo img {
    height: auto;
    max-height: 200px;
    /* Increased from 140px */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    /* Reduced from 6px for modern look */
    transition: 0.4s;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-link {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    transition: var(--transition);
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--accent-color);
}

/* Toggled Hamburger State (Refined X) */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

.hero {
    padding: clamp(120px, 20vh, 200px) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/hero-crash.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-inner-container {
    width: 100%;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-bullets {
    display: flex;
    gap: 30px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px rgba(255, 189, 46, 0.2);
}

/* Grid Systems */
.premium-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* USP Section - Asymmetric Layout */
.usp-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.usp-header-side {
    position: sticky;
    top: 150px;
}

.usp-header-side .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.usp-grid-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-card {
    background: linear-gradient(90deg, #0D0D0D 0%, #050505 100%);
    display: flex;
    align-items: flex-start;
    /* Better alignment */
    gap: 30px;
    /* Reduced from 40px */
    padding: 40px;
    /* Standard: 40px */
    border-radius: 20px;
    /* Standard: 20px */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Standard border */
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Fix border bleed */
}

.usp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Staggered margin removed for uniformity */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.usp-card-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    stroke: var(--accent-color);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.usp-card:hover::before {
    transform: scaleX(1);
}

.usp-card img {
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.usp-card h3 {
    font-size: 1.35rem;
    /* Standardized H3 */
    margin-bottom: 12px;
    font-weight: 700;
}

/* Premium Comparison Matrix */
.comp-matrix {
    max-width: 1000px;
    margin: 40px auto;
    background: #0D0D0D;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    position: relative;
}

.comp-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    height: 100%;
    background: rgba(255, 189, 46, 0.05);
    /* Increased visibility */
    border-left: 1px solid rgba(255, 189, 46, 0.2);
    box-shadow: inset 10px 0 30px rgba(255, 189, 46, 0.02);
    pointer-events: none;
    z-index: 0;
}

.comp-matrix-header {
    display: grid;
    grid-template-columns: 44% 28% 28%;
    background: #111;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.comp-matrix-header div {
    padding: 35px 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.comp-matrix-header div:not(:first-child) {
    justify-content: center;
}

.comp-matrix-row {
    display: grid;
    grid-template-columns: 44% 28% 28%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.comp-matrix-row:hover {
    background: rgba(255, 255, 255, 0.04);
    /* Brighter hover */
    transform: translateX(5px);
    /* Subtle slide */
    border-left: 2px solid var(--accent-color);
    /* Hover accent */
}

.comp-matrix-row div {
    padding: 30px 25px;
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.col-feature {
    color: var(--text-secondary);
    font-weight: 500;
}

.col-them {
    color: #ff4444;
    font-weight: 400;
    justify-content: center;
}

.col-us {
    color: var(--accent-color);
    font-weight: 900;
    justify-content: center;
}

.comp-total-row {
    background: linear-gradient(90deg, #111 0%, #000 100%);
    border-top: 2px solid var(--accent-color);
}

.comp-total-row .col-us {
    background: var(--accent-color);
    color: #000;
    font-size: 1.2rem;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Harmonized from 20px */
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-item p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

section {
    padding: 160px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 80px;
    letter-spacing: -0.01em;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Harmonized from 50px */
}

.process-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    /* Standard: 40px */
    border-radius: 20px;
    /* Standard: 20px */
    position: relative;
    overflow: hidden;
    /* Fix border bleed */
    min-height: 350px;
    /* Optimized */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 5;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.process-card>* {
    position: relative;
    z-index: 2;
}

.process-number {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.process-card h3 {
    font-size: 1.35rem;
    /* Standardized */
    font-weight: 700;
    margin-bottom: 12px;
}

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    /* Standard */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Standard */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    /* Fix border bleed */
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.case-image {
    height: 250px;
    background-color: #222;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.case-card:hover .case-image {
    transform: scale(1.05);
}

.case-content {
    padding: 20px;
}

.case-card {
    position: relative;
    /* ... */
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 10;
}

.case-card:hover::before {
    transform: scaleX(1);
}

.case-comparison {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.amount-box span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.amount-box strong {
    font-size: 1.1rem;
}

.amount-high {
    color: var(--accent-color);
}

/* Scenarios Section */
.scenarios {
    background-color: #080808a2;
}

.scenario-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.scenario-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    display: none;
}

.scenario-content.active {
    display: block;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Standard */
    border-radius: 20px;
    /* Standard */
    overflow: hidden;
    /* Fix border bleed */
}

.faq-question {
    padding: 20px;
    background: var(--card-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    text-transform: none;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #000;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.0fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    position: relative;
    padding: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1720415164378-4dd57ee1223a?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
}

.contact-links {
    margin-top: 250px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

input,
textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
footer {
    padding: 80px 0 140px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.floating-cta-badge {
    position: fixed;
    right: 40px;
    bottom: 30px;
    /* Moved closer to bottom */
    background: var(--accent-color);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-glow 2s infinite;
    text-transform: uppercase;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 171, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 189, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 189, 46, 0);
    }
}

@media (max-width: 768px) {
    .floating-cta-badge {
        display: none;
    }
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

/* Mobile Sticky CTA */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    display: none;
    /* Shown on mobile */
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 2px solid var(--accent-color);
    z-index: 2000;
}

/* Quiz Section - Dark Theme Focus */
.quiz-section {
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.quiz-container {
    max-width: 800px;
    margin: 40px auto;
    background: #050505;
    padding: 80px 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 50px rgba(46, 213, 255, 0.1);
    text-align: center;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.quiz-opt {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.quiz-opt:hover {
    border-color: var(--accent-color);
    background: rgba(255, 189, 46, 0.05);
}

/* Pain points - Vertical staggered */
.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Harmonized from 40px */
    max-width: 900px;
    margin: 0 auto;
}

.pain-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    /* Optimized */
    gap: 30px;
    align-items: start;
    background: #0A0A0A;
    padding: 40px;
    /* Standard: 40px */
    border-radius: 20px;
    /* Standard: 20px */
    border: 1px solid rgba(255, 68, 68, 0.1);
    transition: var(--transition);
    height: 100%;
}

/* Staggered margin removed */

.pain-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 68, 68, 0.1);
    font-family: 'Roboto Condensed', sans-serif;
}

.pain-item {
    position: relative;
    overflow: hidden;
    /* For top border */
    /* ... other props unchanged ... */
}

/* Moved '!' to after */
.pain-item::after {
    content: '!';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 68, 68, 0.05);
    font-family: 'Roboto Condensed', sans-serif;
}

/* Top Border Accent */
.pain-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4444;
    transform: scaleX(0);
    transition: var(--transition);
}

.pain-item:hover::before {
    transform: scaleX(1);
}

.pain-item:hover {
    border-color: #ff4444;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.1);
}

.pain-item h3 {
    color: #ff4444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    /* Standardized */
    font-weight: 700;
}

/* Legal Authority - Premium Glassmorphism */
.authority {
    padding: 180px 0;
    background: radial-gradient(circle at 10% 20%, rgba(46, 206, 255, 0.05) 0%, transparent 50%);
}

.legal-box {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&q=80&w=1200') no-repeat center center;
    background-size: cover;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-card-glass {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    padding: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 65%;
}

.legal-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

/* Premium Comparison Matrix */
.comp-matrix {
    max-width: 1000px;
    margin: 0 auto;
    background: #0D0D0D;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    position: relative;
}

.comp-matrix::before {
    content: AGENCIJA;
    position: absolute;
    top: 0;
    right: 0;
    width: 33.33%;
    height: 100%;
    background: rgba(46, 231, 255, 0.03);
    border-left: 1px solid rgba(46, 231, 255, 0.1);
    pointer-events: none;
}

.comp-header-row {
    display: grid;
    grid-template-columns: 44% 28% 28%;
    background: #151515;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.comp-header-row div {
    padding: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
}

.comp-matrix-row {
    display: grid;
    grid-template-columns: 44% 28% 28%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.comp-matrix-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-matrix-row div {
    padding: 30px 40px;
    display: flex;
    align-items: center;
}

.col-feature {
    color: var(--text-secondary);
    font-weight: 500;
}

.col-them {
    color: #ff4444;
    font-weight: 400;
    justify-content: center;
    background: rgba(255, 68, 68, 0.01);
}

.col-us {
    color: var(--accent-color);
    font-weight: 900;
    justify-content: center;
    background: rgba(255, 189, 46, 0.02);
}

.comp-total-row {
    background: linear-gradient(90deg, #151515 0%, #000 100%);
    border-top: 2px solid var(--accent-color);
}

.comp-total-row .col-us {
    background: var(--accent-color);
    color: #000;
    font-size: 1.2rem;
}

/* UI Upgrade: Triple Comparison Cards - OBSOLETE but keeping placeholder if needed */
.comparison-cards {
    display: none;
}

.comp-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.comp-card.highlighted .comp-item strong {
    font-size: 1.25rem;
}

/* Utility Spacing */
.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* New Sections: Testimonials & Team */
.testimonial-card {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    /* Standard */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Standard */
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.client-info {
    margin-top: 20px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.team-card {
    text-align: center;
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(46, 248, 255, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    margin-top: 30px;
}

/* 1920p Desktop Optimization */
@media (min-width: 1600px) {
    :root {
        --container-width: 1400px;
    }

    body {
        font-size: 1.1rem;
    }

    section {
        padding: 220px 0;
    }

    .hero-content h1 {
        font-size: 6rem;
    }

    .hero-content p {
        font-size: 1.5rem;
        max-width: 900px;
    }

    .section-title {
        font-size: 4.5rem;
        margin-bottom: 120px;
    }

    .usp-card,
    .comp-card {
        padding: 80px 50px;
    }
}

/* Responsive Optimization */
@media (max-width: 1024px) {
    .usp-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .usp-header-side {
        position: static;
        text-align: center;
    }

    .usp-header-side .section-title {
        text-align: center;
    }

    .usp-card:nth-child(even) {
        margin-left: 0;
    }

    .logo {
        width: auto;
    }

    .logo img {
        height: auto;
        max-height: 80px;
        /* Increased from 55px */
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .premium-grid-3,
    .usp-grid,
    .process-grid,
    .cases-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .logo {
        width: auto;
    }

    .logo img {
        height: auto;
        max-height: 120px;
        /* Increased from 80px */
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        /* Fix lines in one row */
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
        line-height: 1.2;
    }

    .usp-card {
        padding: 30px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .usp-card p {
        font-size: 1.05rem;
        opacity: 0.95;
    }

    /* Comparison Matrix Mobile Scroll */
    /* Comparison Matrix Mobile - Stacked Cards */
    .comp-matrix {
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .comp-matrix::before {
        display: none;
    }

    .comp-matrix-header {
        display: none;
    }

    .comp-matrix-row {
        display: flex;
        flex-direction: column;
        background: #131313;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px;
        min-width: auto;
        gap: 12px;
    }

    .comp-matrix-row:hover {
        background: #131313;
        /* Disable hover effect on mobile */
    }

    .comp-matrix-row div {
        padding: 5px 0;
        display: block;
        text-align: center !important;
        /* Force center */
        width: 100%;
    }

    .col-label {
        font-size: 1.1rem;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 12px !important;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .col-them {
        color: #ff5555;
        font-size: 0.95rem;
    }

    .col-them::before {
        content: 'Samostalno: ';
        display: block;
        font-size: 0.75rem;
        color: #666;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .col-us {
        background: rgba(255, 189, 46, 0.08);
        /* Accent bg */
        padding: 15px !important;
        border-radius: 12px;
        margin-top: 5px;
        font-size: 1.1rem;
        border: 1px solid rgba(46, 213, 255, 0.25);
        color: var(--accent-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .col-us::before {
        content: 'AGENCIJA: ';
        display: block;
        font-size: 0.8rem;
        color: var(--accent-color);
        margin-bottom: 4px;
        font-weight: 900;
        opacity: 0.8;
    }



    .mobile-cta-bar {
        display: grid;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #000;
        z-index: 1900;
        /* Lower than overlay (2000) */
        border-top: 1px solid var(--accent-color);
        transform: translateY(100%);
        /* Hidden by default */
        transition: transform 0.4s ease;
    }

    .mobile-cta-bar.visible {
        transform: translateY(0);
        /* Slide in */
    }

    header .btn {
        display: none;
    }

    .floating-cta-badge {
        bottom: 100px;
    }

    .team-img {
        width: 140px;
        height: 140px;
    }

    .team-card p.text-accent {
        font-size: 1.1rem;
    }

    .team-card small {
        font-size: 0.95rem !important;
        opacity: 0.9 !important;
        display: block;
        margin-top: 5px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }

    .stat-item h2 {
        font-size: 2.2rem;
        margin-bottom: 2px;
    }

    .stat-item p {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-secondary);
        line-height: 1.2;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .legal-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .pain-item {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
    }

    .pain-number {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .process-card {
        min-height: 320px;
        padding: 40px 25px;
    }

    .scenario-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        padding-right: 15px;
    }

    .faq-answer p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .logo {
        width: auto;
    }

    .logo img {
        height: auto;
        max-height: 210px;
        /* Increased by ~20% (from 170px) */
    }

    header {
        padding: 0;
        height: 75px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-ctas .btn {
        width: 100% !important;
        padding: 10px 12px;
        /* Even more discrete */
        font-size: 0.85rem;
    }

    .guarantee-badge {
        flex-direction: row;
        /* Keep row for 0 RSD to save vertical space */
        align-items: center;
        justify-content: center;
        text-align: left;
        padding: 10px 15px;
        /* Compact padding */
        border-radius: 12px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .trust-bullets {
        flex-direction: column;
        gap: 10px;
    }

    .bullet {
        justify-content: center;
        font-size: 0.85rem;
    }

    .stat-item h2 {
        font-size: 1.8rem;
    }

    .bg-ornament {
        display: none;
    }

    .logo {
        width: auto;
    }

    .logo img {
        height: auto;
        max-height: 150px;
        /* Increased by 20% (from 125px) */
    }

    header {
        height: 70px;
    }
}