/* Oznur Lojistik - Premium Public Styles */

/* ===== Variables ===== */
:root {
    --oz-primary: #1b3a6b;
    --oz-primary-light: #24508a;
    --oz-primary-dark: #0e2240;
    --oz-accent: #e8700a;
    --oz-accent-light: #f59e3b;
    --oz-accent-glow: rgba(232, 112, 10, 0.35);
    --oz-blue: #4a8fd4;
    --oz-dark: #0a1628;
    --oz-text: #475569;
    --oz-text-light: #94a3b8;
    --oz-gray-bg: #f8fafc;
    --oz-border: rgba(148, 163, 184, 0.15);
    --oz-white: #ffffff;
    --oz-success: #22c55e;
    --oz-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --oz-shadow: 0 4px 24px rgba(27, 58, 107, 0.06);
    --oz-shadow-lg: 0 12px 40px rgba(27, 58, 107, 0.1);
    --oz-shadow-xl: 0 20px 60px rgba(27, 58, 107, 0.15);
    --oz-radius: 16px;
    --oz-radius-lg: 24px;
    --oz-radius-xl: 32px;
    --oz-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --oz-transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Base ===== */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--oz-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--oz-white);
}

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ===== Brand Logo ===== */
.oz-logo {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.oz-logo:hover {
    opacity: 0.85;
}

.oz-logo-footer {
    height: 36px;
}

/* ===== Navbar ===== */
.oz-navbar {
    padding: 1rem 0;
    transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.oz-navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(9, 31, 58, 0.97) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.oz-navbar .nav-link {
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color var(--oz-transition);
    position: relative;
    letter-spacing: 0.2px;
}

.oz-navbar .nav-link:hover,
.oz-navbar .nav-link.active {
    color: #fff !important;
}

.oz-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--oz-accent), var(--oz-accent-light));
    border-radius: 2px;
    transition: width var(--oz-transition);
    transform: translateX(-50%);
}

.oz-navbar .nav-link:hover::after,
.oz-navbar .nav-link.active::after {
    width: 60%;
}

.oz-nav-cta {
    background: linear-gradient(135deg, var(--oz-accent), #c85d00);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 112, 10, 0.3);
}

.oz-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 112, 10, 0.45);
    color: #fff !important;
}

/* ===== Hero Section ===== */
.oz-hero {
    position: relative;
    background: linear-gradient(145deg, #060d18 0%, var(--oz-primary-dark) 30%, var(--oz-primary) 70%, var(--oz-primary-light) 100%);
    overflow: hidden;
    min-height: 100vh;
}

.oz-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.oz-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.oz-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 112, 10, 0.4), transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.oz-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 93, 0, 0.3), transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -3s;
}

.oz-hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 112, 10, 0.25), transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.oz-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.oz-hero-content {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 2;
}

.oz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.oz-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--oz-success);
    box-shadow: 0 0 10px var(--oz-success);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.oz-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.oz-hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--oz-accent-light), var(--oz-accent), var(--oz-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 4px;
}

.oz-hero-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 2rem;
}

.oz-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.oz-btn-primary {
    background: linear-gradient(135deg, var(--oz-accent), #c85d00);
    color: #fff !important;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    transition: all var(--oz-transition);
    box-shadow: 0 6px 25px rgba(232, 112, 10, 0.35);
    position: relative;
    overflow: hidden;
}

.oz-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.oz-btn-primary:hover::before {
    transform: translateX(100%);
}

.oz-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(232, 112, 10, 0.5);
    color: #fff !important;
}

.oz-btn-ghost {
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-weight: 600;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    transition: all var(--oz-transition);
    background: transparent;
}

.oz-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
    transform: translateY(-2px);
}

.oz-hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.oz-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 500;
}

.oz-hero-trust-item i {
    color: var(--oz-accent-light);
    font-size: 0.9rem;
}

.oz-hero-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual (Right Side) */
.oz-hero-visual {
    position: relative;
    height: 460px;
    z-index: 2;
}

.oz-hero-glass-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--oz-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.oz-hero-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, transparent, rgba(232, 112, 10, 0.1), transparent 30%);
    animation: glassRotate 6s linear infinite;
}

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

.oz-hero-glass-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.oz-hero-glass-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--oz-accent), #c85d00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(232, 112, 10, 0.4);
}

.oz-hero-glass-stat {
    display: flex;
    align-items: baseline;
}

.oz-hero-glass-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.oz-hero-glass-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oz-accent-light);
    margin-left: 2px;
}

.oz-hero-glass-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.oz-hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--oz-radius);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: floatY 4s ease-in-out infinite;
}

.oz-hero-float-card i { font-size: 1.3rem; }

.oz-hero-float-1 {
    top: 15%;
    right: -10px;
    animation-delay: 0s;
}

.oz-hero-float-2 {
    bottom: 15%;
    left: -10px;
    animation-delay: -2s;
}

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

.oz-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.oz-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== Stats Section ===== */
.oz-stats {
    background: var(--oz-gray-bg);
    padding: 3rem 0;
    border-bottom: 1px solid var(--oz-border);
}

.oz-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.oz-stats-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.5rem;
}

.oz-stats-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--oz-border), transparent);
    flex-shrink: 0;
}

.oz-stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 112, 10, 0.08), rgba(232, 112, 10, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--oz-accent);
    flex-shrink: 0;
}

.oz-stats-data {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.oz-stats-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--oz-primary);
    line-height: 1.2;
}

.oz-stats-suffix {
    font-size: 1rem;
    font-weight: 700;
    color: var(--oz-accent);
    margin-left: 1px;
}

.oz-stats-label {
    width: 100%;
    font-size: 0.78rem;
    color: var(--oz-text-light);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== Section Common ===== */
.oz-section {
    padding: 6rem 0;
}

.oz-section-alt {
    background: var(--oz-gray-bg);
}

.oz-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232, 112, 10, 0.08), rgba(232, 112, 10, 0.15));
    color: var(--oz-accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(232, 112, 10, 0.15);
    margin-bottom: 0.75rem;
}

.oz-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--oz-primary-dark);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.oz-gradient-text {
    background: linear-gradient(135deg, var(--oz-accent), var(--oz-primary), var(--oz-accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.oz-section-subtitle {
    color: var(--oz-text-light);
    font-size: 1.05rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.oz-section-desc {
    color: var(--oz-text);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

/* ===== About Section ===== */
.oz-about-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.oz-about-card-featured {
    position: relative;
    background: linear-gradient(145deg, var(--oz-primary), var(--oz-primary-light));
    border-radius: var(--oz-radius-lg);
    padding: 2.5rem 2rem;
    color: #fff;
    overflow: hidden;
}

.oz-about-card-featured h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.oz-about-card-featured p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.oz-about-card-icon-lg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.oz-about-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(232, 112, 10, 0.25);
    filter: blur(60px);
    bottom: -40px;
    right: -40px;
}

.oz-about-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.oz-about-card-mini {
    background: var(--oz-white);
    border-radius: var(--oz-radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    border: 1px solid var(--oz-border);
    transition: all var(--oz-transition);
    box-shadow: var(--oz-shadow-xs);
}

.oz-about-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: var(--oz-shadow-lg);
    border-color: rgba(232, 112, 10, 0.2);
}

.oz-about-card-mini i {
    font-size: 1.4rem;
    color: var(--oz-accent);
}

.oz-about-card-mini span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--oz-primary-dark);
}

.oz-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.oz-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oz-about-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(232, 112, 10, 0.1), rgba(232, 112, 10, 0.18));
    color: var(--oz-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.oz-about-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--oz-primary-dark);
}

/* ===== Services Section ===== */
.oz-service-card {
    position: relative;
    background: var(--oz-white);
    border-radius: var(--oz-radius-lg);
    padding: 2rem;
    border: 1px solid var(--oz-border);
    transition: all var(--oz-transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.oz-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--oz-shadow-xl);
    border-color: rgba(232, 112, 10, 0.2);
}

.oz-service-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(232, 112, 10, 0.03), transparent 20%);
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: shineRotate 8s linear infinite;
    pointer-events: none;
}

.oz-service-card:hover .oz-service-card-shine {
    opacity: 1;
}

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

.oz-service-card-highlight {
    border-color: rgba(232, 112, 10, 0.2);
    box-shadow: 0 4px 20px rgba(232, 112, 10, 0.06);
}

.oz-service-badge-popular {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--oz-accent), #c85d00);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(232, 112, 10, 0.3);
}

.oz-service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.oz-service-icon-wrap {
    flex-shrink: 0;
}

.oz-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--oz-primary), var(--oz-primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(15, 52, 96, 0.2);
    transition: all var(--oz-transition);
}

.oz-service-card:hover .oz-service-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 25px rgba(15, 52, 96, 0.3);
}

.oz-service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--oz-primary-dark);
    margin: 0;
}

.oz-service-subtitle {
    font-size: 0.82rem;
    color: var(--oz-text-light);
}

.oz-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.oz-service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    color: var(--oz-text);
    border-bottom: 1px solid var(--oz-border);
}

.oz-service-list li:last-child {
    border-bottom: none;
}

.oz-service-check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.18));
    color: var(--oz-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.oz-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--oz-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all var(--oz-transition);
    padding: 0.5rem 0;
}

.oz-service-cta:hover {
    color: #c85d00;
    gap: 10px;
}

/* ===== Why Us Section ===== */
.oz-why-card {
    background: var(--oz-white);
    border-radius: var(--oz-radius-lg);
    border: 1px solid var(--oz-border);
    transition: all var(--oz-transition);
    overflow: hidden;
    height: 100%;
}

.oz-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--oz-shadow-xl);
    border-color: rgba(232, 112, 10, 0.2);
}

.oz-why-card-inner {
    padding: 2rem;
    text-align: center;
}

.oz-why-icon-wrap {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.oz-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.06), rgba(232, 112, 10, 0.12));
    color: var(--oz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--oz-transition-bounce);
    position: relative;
    z-index: 1;
}

.oz-why-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    border: 2px dashed rgba(232, 112, 10, 0.15);
    transition: all var(--oz-transition);
    opacity: 0;
}

.oz-why-card:hover .oz-why-icon {
    background: linear-gradient(135deg, var(--oz-primary), var(--oz-primary-light));
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(15, 52, 96, 0.25);
}

.oz-why-card:hover .oz-why-icon-ring {
    opacity: 1;
    animation: ringPulse 1.5s ease-in-out infinite;
}

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

.oz-why-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--oz-primary-dark);
    margin-bottom: 0.6rem;
}

.oz-why-desc {
    color: var(--oz-text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA Section ===== */
.oz-cta {
    padding: 5rem 0;
    background: linear-gradient(145deg, var(--oz-primary-dark), var(--oz-primary), var(--oz-primary-light));
    position: relative;
    overflow: hidden;
}

.oz-cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.oz-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.oz-cta-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(232, 112, 10, 0.2);
    top: -100px;
    right: -50px;
}

.oz-cta-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(200, 93, 0, 0.15);
    bottom: -80px;
    left: 10%;
}

.oz-cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.oz-cta-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
}

.oz-btn-white {
    background: #fff;
    color: var(--oz-primary) !important;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    transition: all var(--oz-transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.oz-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    color: var(--oz-primary) !important;
}

/* ===== Contact Section ===== */
.oz-contact-card {
    background: var(--oz-white);
    border-radius: var(--oz-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--oz-border);
    transition: all var(--oz-transition);
    height: 100%;
}

.oz-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--oz-shadow-xl);
    border-color: rgba(232, 112, 10, 0.2);
}

.oz-contact-card-wa:hover {
    border-color: rgba(34, 197, 94, 0.3);
}

.oz-contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.06), rgba(232, 112, 10, 0.12));
    color: var(--oz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    transition: all var(--oz-transition);
}

.oz-contact-card:hover .oz-contact-card-icon {
    background: linear-gradient(135deg, var(--oz-primary), var(--oz-primary-light));
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(15, 52, 96, 0.2);
}

.oz-contact-card-wa .oz-contact-card-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.15));
    color: var(--oz-success);
}

.oz-contact-card-wa:hover .oz-contact-card-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.oz-contact-card h5 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--oz-primary-dark);
    margin-bottom: 0.4rem;
}

.oz-contact-card a {
    color: var(--oz-text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--oz-transition);
}

.oz-contact-card a:hover {
    color: var(--oz-accent);
}

.oz-contact-card span {
    color: var(--oz-text);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ===== Footer ===== */
.oz-footer {
    background: var(--oz-dark);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.oz-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.oz-footer-brand {
    display: flex;
    align-items: center;
}

.oz-footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.oz-footer-top {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--oz-transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.oz-footer-top:hover {
    background: var(--oz-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== WhatsApp FAB ===== */
.oz-whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--oz-transition-bounce);
    animation: fabPulse 3s ease-in-out infinite;
}

.oz-whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    z-index: -1;
    animation: fabRing 3s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.oz-whatsapp-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

.oz-whatsapp-fab:hover::before {
    animation: none;
    opacity: 0;
}

.oz-whatsapp-fab-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--oz-primary-dark);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--oz-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.oz-whatsapp-fab-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--oz-primary-dark);
}

.oz-whatsapp-fab:hover .oz-whatsapp-fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .oz-hero-title { font-size: 3rem; }
    .oz-stats-item { padding: 0 1.5rem; }
}

@media (max-width: 991.98px) {
    .oz-hero-title { font-size: 2.5rem; }
    .oz-hero-content { padding: 7rem 0 5rem; }
    .oz-section { padding: 4rem 0; }
    .oz-section-title { font-size: 2rem; }

    .oz-navbar .navbar-collapse {
        background: rgba(9, 31, 58, 0.97);
        border-radius: var(--oz-radius);
        margin-top: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .oz-navbar .navbar-collapse .navbar-nav {
        padding: 0.75rem 1rem 0.25rem;
    }

    .oz-navbar .navbar-collapse .oz-nav-cta {
        margin: 0 1rem 0.75rem;
    }

    .oz-nav-cta {
        display: inline-flex;
        margin-top: 0.5rem;
    }

    .oz-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .oz-stats-divider { display: none; }
    .oz-stats-item { padding: 0; }
}

@media (max-width: 767.98px) {
    .oz-hero { min-height: auto; }
    .oz-hero-content { padding: 7rem 0 4rem; }

    .oz-hero-title {
        font-size: 2rem;
        letter-spacing: -0.8px;
    }

    .oz-hero-desc { font-size: 0.95rem; }

    .oz-hero-trust {
        flex-wrap: wrap;
        justify-content: center;
    }

    .oz-section { padding: 3.5rem 0; }
    .oz-section-title { font-size: 1.65rem; }

    .oz-cta-title { font-size: 1.4rem; }

    .oz-footer-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .oz-hero-title { font-size: 1.65rem; }

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

    .oz-hero-actions .btn { width: 100%; }

    .oz-hero-trust { padding: 0.6rem 1rem; gap: 0.75rem; }

    .oz-stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    .oz-stats-item { justify-content: center; }

    .oz-about-features { grid-template-columns: 1fr; }

    .oz-whatsapp-fab {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }

    .oz-whatsapp-fab-tooltip { display: none; }
}
