/* ============================================================
   skupinaCOMP d.o.o. – Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --color-bg: #07111F;
    --color-bg-alt: #0D1E35;
    --color-surface: #112240;
    --color-surface-2: #1A2E4A;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-primary: #FF6B35;
    --color-primary-dk: #E55A24;
    --color-accent: #3B82F6;
    --color-text: #E8EDF5;
    --color-muted: #8A9BB5;
    --color-white: #FFFFFF;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.50);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

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

input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
}

/* ─── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-white);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
}

p {
    color: var(--color-muted);
    margin-bottom: 1rem;
}

/* ─── Layout ──────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
    background: var(--color-primary-dk);
    box-shadow: 0 6px 28px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-accent:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(59, 130, 246, 0.45);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.875rem;
}

/* ─── Navigation ──────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #FF6B35, #E55A24);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: white;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
    color: var(--color-primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    cursor: pointer;
    transition: all var(--transition);
    background: none;
    border: none;
    font-family: inherit;
}

.nav-dropdown-toggle:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.875rem;
}

.nav-dropdown-menu a small {
    color: var(--color-muted);
    font-size: 0.75rem;
    margin-top: 2px;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-phone {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-phone svg {
    color: var(--color-primary);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile menu */
.nav-mobile {
    display: none;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--color-border);
    background: rgba(7, 17, 31, 0.97);
}

.nav-mobile a {
    display: block;
    padding: 12px 8px;
    font-size: 1rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile.open {
    display: block;
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #07111F 0%, #0D1E35 60%, #112240 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
}

.stat-number span {
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 560px;
    pointer-events: none;
}

/* ─── Section Headings ────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.12);
    color: var(--color-primary);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header h2 {
    margin-bottom: 14px;
}

.section-header p {
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ─── Cards ───────────────────────────────────────────────── */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.card:hover {
    border-color: rgba(255, 107, 53, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 53, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.card-icon.blue {
    background: rgba(59, 130, 246, 0.12);
}

.card-icon.green {
    background: rgba(16, 185, 129, 0.12);
}

.card-icon.purple {
    background: rgba(139, 92, 246, 0.12);
}

.card h3 {
    margin-bottom: 10px;
}

/* ─── Grid Layouts ────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

/* ─── Pricing Cards ───────────────────────────────────────── */
.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #1A2E4A, #112240);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.pricing-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 16px 0 8px;
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
}

.pricing-price .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-muted);
}

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

.pricing-card ul {
    margin: 24px 0;
}

.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--color-muted);
    font-size: 0.93rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── Testimonials ────────────────────────────────────────── */
.testimonial-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    color: rgba(255, 107, 53, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.97rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.92rem;
}

.testimonial-role {
    color: var(--color-muted);
    font-size: 0.82rem;
}

.stars {
    color: #FBB914;
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

/* ─── Form Styles ─────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--color-text);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: var(--color-muted);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
    background: #060E1C;
    border-top: 1px solid var(--color-border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 14px;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--color-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-item a {
    color: var(--color-muted);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

.footer-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 0.83rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-muted);
    font-size: 0.83rem;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ─── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 20px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
}

.cookie-banner p {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin: 0;
}

.cookie-banner a {
    color: var(--color-primary);
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ─── Alert / Notice ──────────────────────────────────────── */
.alert {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 3px solid var(--color-accent);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.alert.success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    border-left-color: #10B981;
}

.alert.warning {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
    border-left-color: #FBBF24;
}

/* ─── Page Header ─────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0D1E35 0%, #112240 100%);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 65%);
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--color-muted);
    margin-bottom: 14px;
}

.page-hero .breadcrumb a {
    color: var(--color-muted);
}

.page-hero .breadcrumb a:hover {
    color: var(--color-primary);
}

.page-hero .breadcrumb .sep {
    color: var(--color-border);
}

.page-hero h1 {
    margin-bottom: 14px;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
}

/* ─── Utility Classes ─────────────────────────────────────── */
.text-primary {
    color: var(--color-primary) !important;
}

.text-muted {
    color: var(--color-muted) !important;
}

.text-white {
    color: var(--color-white) !important;
}

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

.text-sm {
    font-size: 0.875rem;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 16px;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

/* ─── Badge ───────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary {
    background: rgba(255, 107, 53, 0.15);
    color: var(--color-primary);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

/* ─── Divider ─────────────────────────────────────────────── */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    margin: 20px auto;
}

.divider-left {
    margin-left: 0;
}

/* ─── Accordion (FAQ) ─────────────────────────────────────── */
.accordion-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--color-white);
    user-select: none;
    transition: background var(--transition);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 1rem;
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
    border-color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 24px;
    color: var(--color-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

.accordion-item.open .accordion-body {
    max-height: 400px;
    padding: 0 24px 18px;
}

/* ─── Blog Cards ──────────────────────────────────────────── */
.blog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: rgba(255, 107, 53, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #112240, #1A2E4A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 3rem;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.blog-card a.read-more {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-card a.read-more:hover {
    gap: 8px;
}

/* ─── Map Placeholder ─────────────────────────────────────── */
.map-placeholder {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--color-muted);
    font-size: 0.9rem;
    overflow: hidden;
    position: relative;
}

.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
    filter: saturate(0.3) brightness(0.6);
}

/* ─── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-phone {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-card {
        padding: 28px;
    }

    .nav-actions .btn {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* ─── Legal / Policy pages ────────────────────────────────── */
.legal-content h2 {
    margin: 36px 0 16px;
    font-size: 1.3rem;
}

.legal-content h3 {
    margin: 24px 0 12px;
    font-size: 1.1rem;
    color: var(--color-text);
}

.legal-content p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 20px;
    list-style: disc;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--color-primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.legal-content th {
    background: var(--color-surface);
    color: var(--color-text);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.legal-content td {
    border-bottom: 1px solid var(--color-border);
    padding: 12px 16px;
    color: var(--color-muted);
}

.legal-content .effective-date {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--color-muted);
}