/* ServiceBook - Main Stylesheet */

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

:root {
    --primary: #54a7ca;
    --primary-dark: #3d8fb0;
    --primary-light: #7bbfd9;
    --primary-glow: rgba(84, 167, 202, 0.25);
    --secondary: #2d6a87;
    --secondary-glow: rgba(45, 106, 135, 0.25);
    --success: #00b086;
    --success-glow: rgba(0, 176, 134, 0.2);
    --dark: #1a1a2e;
    --text: #334155;
    --text-light: #64748b;
    --bg: #f8fafc;
    --bg-alt: #f1f5f9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Geometric Grid Background - Light */
.geo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg);
    overflow: hidden;
}

.geo-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(84, 167, 202, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 167, 202, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
}

.geo-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(84, 167, 202, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(45, 106, 135, 0.08) 0%, transparent 50%);
}

.dot-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(rgba(84, 167, 202, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.gradient-line {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(84, 167, 202, 0.2) 20%,
        rgba(84, 167, 202, 0.4) 50%,
        rgba(84, 167, 202, 0.2) 80%,
        transparent 100%);
    z-index: -1;
    opacity: 0.5;
}

/* Glass Effect - Light Mode */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.75rem 3rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    background: rgba(26, 54, 93, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7dd3fc;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

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

.nav-cta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
}

.btn-ghost:hover {
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1002;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu - Dark Glass Style */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(45, 90, 135, 0.88) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-item i {
    font-size: 1.15rem;
    width: 22px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-left-color: var(--primary-light);
}

.mobile-nav-item:hover i,
.mobile-nav-item.active i {
    color: var(--primary-light);
}

.mobile-menu-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-login-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-login-btn i {
    font-size: 1.1rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff 0%, #f0f9fc 100%);
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.mobile-cta-btn i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 30%, #3d8fb0 60%, #54a7ca 100%);
    overflow: hidden;
}

/* Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00b086 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Abstract Shapes */
.hero-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.shape-ring {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 15%;
    left: 8%;
    animation: shapeRotate 20s linear infinite;
}

.shape-ring::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #7dd3fc;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px #7dd3fc;
}

.shape-dots {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 15px 15px;
    animation: shapePulse 4s ease-in-out infinite;
}

.shape-cross {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 25%;
    animation: shapeFloat 6s ease-in-out infinite;
}

.shape-cross::before,
.shape-cross::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
}

.shape-cross::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.shape-cross::after {
    width: 3px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid rgba(255, 255, 255, 0.1);
    bottom: 35%;
    left: 12%;
    animation: shapeFloat 8s ease-in-out infinite 1s;
}

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

@keyframes shapePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Floating UI Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: cardFloat 5s ease-in-out infinite;
}

/* Customer Card */
.card-customer {
    top: 18%;
    left: 5%;
    min-width: 220px;
    animation-delay: 0s;
}

.card-customer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.card-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-customer-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.card-customer-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.card-customer-stats {
    display: flex;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.card-customer-stats div {
    text-align: center;
}

.card-customer-stats strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #7dd3fc;
}

.card-customer-stats span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SMS Card */
.card-sms {
    top: 15%;
    right: 3%;
    max-width: 200px;
    animation-delay: 1s;
}

.card-sms-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-sms-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
}

.card-sms-header span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6ee7b7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-sms-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.card-sms-content strong {
    color: #fff;
}

/* Service History Card */
.card-service {
    bottom: 22%;
    left: 6%;
    min-width: 260px;
    animation-delay: 2s;
}

.card-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.card-service-header h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-service-header h4 i {
    color: #7dd3fc;
}

.card-service-badge {
    padding: 0.25rem 0.6rem;
    background: rgba(125, 211, 252, 0.2);
    color: #7dd3fc;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-service-item:last-child {
    border-bottom: none;
}

.card-service-item-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
}

.service-dot.pending {
    background: #fbbf24;
}

.card-service-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.card-service-item small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Vehicle Plate Card */
.card-plate {
    bottom: 28%;
    right: 8%;
    animation-delay: 0.5s;
}

.card-plate-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plate-visual {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.plate-eu {
    background: #2563eb;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.2rem 0.25rem;
    border-radius: 2px;
    line-height: 1;
}

.plate-number {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: monospace;
}

.plate-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.plate-info strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
}

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

/* Hero Container */
.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.75rem;
    color: #7dd3fc;
    line-height: 1;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero h1 span {
    background: linear-gradient(135deg, #7bbfd9 0%, #54a7ca 50%, #00b086 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .typing-text::after {
    content: '|';
    -webkit-text-fill-color: #7bbfd9;
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero .btn-primary {
    background: #fff;
    color: var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
}

.hero-stat {
    text-align: center;
    flex: 1;
    max-width: 170px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Testimonials */
.hero-testimonials {
    margin-top: 3rem;
    text-align: center;
}

.hero-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.hero-testimonial-stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.hero-testimonial-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 80px;
}

.hero-testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.hero-testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.hero-testimonial-slide p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.hero-testimonial-slide span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .hero-testimonials {
        margin-top: 2rem;
    }

    .hero-testimonial-slide p {
        font-size: 1rem;
    }

    .hero-testimonial-carousel {
        min-height: 100px;
    }
}

/* Sections */
.section {
    padding: 80px 2rem;
    position: relative;
}

.section-features {
    padding: 60px 2rem;
    background: var(--bg);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: rgba(84, 167, 202, 0.1);
    border: 1px solid rgba(84, 167, 202, 0.15);
    color: var(--primary);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Carousel */
.features-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 31%;
    margin-right: 1.25rem;
}

.carousel-slide:last-child {
    margin-right: 0;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-content {
    flex: 1;
}

.feature-number {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.35rem 0.8rem;
    background: rgba(84, 167, 202, 0.1);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
}

.feature-visual {
    background: linear-gradient(135deg, #f0f9fc 0%, #e8f4f8 100%);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.feature-visual-content {
    background: #fff;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 220px;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.visual-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.visual-dot.green { background: var(--success); }
.visual-dot.orange { background: #f59e0b; }

.visual-header span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.visual-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
}

.visual-row span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.visual-row strong {
    font-size: 0.75rem;
    color: var(--dark);
}

.visual-bar {
    height: 6px;
    background: rgba(84, 167, 202, 0.15);
    border-radius: 3px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.visual-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 3px;
    width: 75%;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(84, 167, 202, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(84, 167, 202, 0.2);
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.carousel-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 2px;
    background: rgba(84, 167, 202, 0.2);
    border-radius: 2px;
    z-index: 0;
}

/* Animated progress line */
.steps-container::after {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(16.66% + 28px);
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--secondary));
    border-radius: 2px;
    z-index: 0;
    transition: width 0.8s ease;
}

.steps-container.step-1::after {
    width: 0%;
}

.steps-container.step-2::after {
    width: calc((100% - (33.32% + 56px)) / 2);
}

.steps-container.step-3::after {
    width: calc(100% - (33.32% + 56px));
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    opacity: 0.3;
    filter: grayscale(100%);
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.step.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1);
}

.step.active .step-icon {
    animation: stepPop 0.5s ease;
}

@keyframes stepPop {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 8s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stats-section .stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-section {
    background: var(--bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    flex-grow: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(84, 167, 202, 0.08) 0%, rgba(84, 167, 202, 0.02) 100%);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    margin-bottom: 1.5rem;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.pricing-amount .period {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-amount .note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.pricing-amount .price-custom {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.85rem;
}

.pricing-features li.disabled {
    color: var(--text-light);
}

.pricing-features li.disabled i {
    color: #cbd5e1;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Testimonials */
.testimonials-section {
    background: #fff;
    position: relative;
}

.testimonials-section .section-label {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.author-info h4 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    padding: 80px 2rem 30px;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 250px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-column h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .features-list {
        gap: 4rem;
    }

    .feature-row {
        gap: 2rem;
    }

    .feature-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    nav {
        left: 1rem;
        right: 1rem;
        transform: none;
        justify-content: space-between;
        padding: 0.75rem 2rem;
    }

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

    .hamburger {
        display: flex;
    }

    .floating-card {
        display: none;
    }

    .hero-shape {
        display: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row:nth-child(even) {
        direction: ltr;
    }

    .feature-visual {
        min-height: 250px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .steps-container::before,
    .steps-container::after {
        display: none;
    }

    .stats-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    /* Tablet - 2 visible carousel */
    .carousel-slide {
        width: 46%;
        margin-right: 1.25rem;
    }
}

@media (max-width: 768px) {
    .section-features {
        padding: 60px 1rem;
    }

    .features-carousel {
        padding: 0 0.5rem;
    }

    .carousel-slide {
        width: 88%;
        margin-right: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .feature-visual {
        min-height: 140px;
        padding: 1rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .carousel-nav {
        margin-top: 1.5rem;
    }

    .cta-section::before {
        width: 300px;
        height: 300px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-section .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        gap: 0.4rem;
    }
}

/* ==========================================
   Features Page Styles
   ========================================== */

.page-header {
    padding: 160px 2rem 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #54a7ca 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Feature Detail Cards */
.features-detail {
    padding: 80px 2rem;
}

.features-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.feature-detail-card:nth-child(even) {
    direction: rtl;
}

.feature-detail-card:nth-child(even) > * {
    direction: ltr;
}

.feature-detail-content {
    max-width: 480px;
}

.feature-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-detail-content > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-detail-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.95rem;
}

.feature-detail-list li i {
    color: var(--success);
    margin-top: 0.2rem;
}

.feature-detail-visual {
    background: linear-gradient(135deg, #f0f9fc 0%, #e8f4f8 100%);
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-detail-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.08;
    top: -100px;
    right: -100px;
}

.feature-detail-mockup {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
}

@media (max-width: 1024px) {
    .feature-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .feature-detail-card:nth-child(even) {
        direction: ltr;
    }

    .feature-detail-visual {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 140px 1.5rem 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .feature-detail-card {
        padding: 1.5rem;
    }

    .feature-detail-content h2 {
        font-size: 1.4rem;
    }
}

/* AADE Section */
.aade-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2942 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.aade-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(84, 167, 202, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(84, 167, 202, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.aade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.aade-text .section-label {
    background: rgba(84, 167, 202, 0.2);
    color: var(--primary-light);
}

.aade-text h2 {
    color: #fff;
    font-size: 2.2rem;
    margin: 1rem 0;
}

.aade-subtitle {
    font-size: 1.2rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.aade-law {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.aade-features {
    list-style: none;
    margin: 1.5rem 0;
}

.aade-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.aade-features li i {
    color: var(--success);
    font-size: 1.1rem;
}

.aade-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.aade-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Floating ring behind card */
.aade-visual .aade-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shapeRotate 20s linear infinite;
}

.aade-visual .aade-ring::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #7dd3fc;
    border-radius: 50%;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 25px #7dd3fc;
}

.aade-visual .aade-ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00b086;
    border-radius: 50%;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px #00b086;
}

.aade-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.aade-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aade-card-header i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.aade-card-header span {
    font-weight: 600;
    color: #fff;
}

.aade-card-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 176, 134, 0.15);
    border-radius: 8px;
}

.aade-card-status .status-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    transition: background 0.3s ease;
}

.aade-card-status .status-dot.connecting {
    background: #fbbf24;
    animation: pulse 0.8s infinite;
}

.aade-card-status .status-dot.syncing {
    background: var(--primary);
    animation: pulse 0.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.aade-card-status span {
    color: var(--success);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.aade-card-status.connecting span {
    color: #fbbf24;
}

.aade-card-status.syncing span {
    color: var(--primary-light);
}

.aade-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aade-card-row:last-child {
    border-bottom: none;
}

.aade-card-row span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.aade-card-row strong {
    color: #fff;
    font-weight: 600;
}

.aade-card-row strong.success {
    color: var(--success);
}

@media (max-width: 1024px) {
    .aade-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .aade-text h2 {
        font-size: 1.8rem;
    }

    .aade-features {
        display: inline-block;
        text-align: left;
    }

    .aade-law {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .aade-text h2 {
        font-size: 1.5rem;
    }

    .aade-subtitle {
        font-size: 1rem;
    }

    .aade-card {
        padding: 1.5rem;
    }
}

/* Brands Section */
.brands-section {
    background: var(--bg-alt);
    overflow: hidden;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(84, 167, 202, 0.1);
}

.brands-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brands-track-wrapper::before,
.brands-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-alt) 0%, transparent 100%);
}

.brands-track-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-alt) 100%);
}

.brands-track {
    display: flex;
    gap: 2rem;
    animation: scrollBrands 30s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    min-width: 160px;
}

.brand-placeholder {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    opacity: 0.5;
}

/* When you have actual logos, use this for grayscale effect */
.brand-logo img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 1.5rem 0;
    }

    .brands-track-wrapper::before,
    .brands-track-wrapper::after {
        width: 30px;
    }

    .brand-logo {
        min-width: 120px;
        padding: 0.75rem 1.5rem;
    }

    .brand-placeholder {
        font-size: 0.8rem;
    }
}

/* ==========================================
   FAQ Section Styles
   ========================================== */

.faq-section {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.75rem;
    border-radius: 16px;
}

.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.faq-item h4 i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-item p {
        padding-left: 0;
    }
}

/* ==========================================
   Contact Page Styles
   ========================================== */

.contact-section {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper {
    padding: 2.5rem;
    border-radius: 24px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.contact-info-card a:not(.btn) {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:not(.btn):hover {
    color: var(--primary-dark);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(84, 167, 202, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================
   About Page Styles
   ========================================== */

.about-section {
    background: var(--bg);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-chapter {
    margin-bottom: 3rem;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.25rem !important;
    color: var(--dark) !important;
}

.about-highlight {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    align-items: flex-start;
}

.about-highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-highlight-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.about-highlight-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.about-highlight-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.about-highlight-primary {
    background: linear-gradient(135deg, rgba(84, 167, 202, 0.1) 0%, rgba(84, 167, 202, 0.05) 100%);
    border: 1px solid rgba(84, 167, 202, 0.2);
    flex-direction: column;
    text-align: center;
}

.about-highlight-primary h3 {
    font-size: 1.5rem;
}

.about-highlight-primary p {
    font-size: 1.1rem;
}

.about-problem {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-problem h2,
.about-solution h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-problem p,
.about-solution p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.about-emphasis {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--primary-dark) !important;
    margin-top: 2rem !important;
}

.about-solution {
    margin: 3rem 0;
}

.about-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.about-benefit {
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.about-benefit i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.about-benefit p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

.about-postit {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    background: rgba(255, 235, 150, 0.3);
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.mission-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2942 100%);
    color: #fff;
}

.mission-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.mission-content .section-label {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mission-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.mission-tagline {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--primary-light) !important;
    margin-top: 2rem !important;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 1rem;
    }

    .about-highlight {
        flex-direction: column;
        padding: 1.5rem;
    }

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

    .about-problem h2,
    .about-solution h2,
    .mission-content h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Grid Layout */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-card-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.blog-card-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-date i {
    font-size: 1rem;
}

.blog-card-category {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.blog-card-category:hover {
    background: rgba(59, 130, 246, 0.2);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

.blog-card-link i {
    transition: transform 0.2s ease;
}

.blog-card-link:hover i {
    transform: translateX(2px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.blog-pagination nav {
    position: static;
    transform: none;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    gap: 0;
}

.blog-pagination .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .pagination li a,
.blog-pagination .pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.blog-pagination .pagination li a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.blog-pagination .pagination li.active span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.blog-pagination .pagination li.disabled span {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Post Single Page */
.blog-post-section {
    padding: 4rem 0;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

.blog-post-content {
    border-radius: 16px;
    overflow: hidden;
}

.blog-post-featured-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    padding: 2rem;
}

.blog-post-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 1rem;
}

.blog-post-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
}

.blog-post-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-post-body li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-post-body a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-post-body a:hover {
    text-decoration: none;
}

.blog-post-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.blog-post-body th,
.blog-post-body td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.blog-post-body th {
    background: rgba(59, 130, 246, 0.1);
    font-weight: 600;
}

.blog-post-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

.blog-post-body code {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.blog-post-body pre {
    background: var(--dark);
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Share Buttons */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    background: rgba(59, 130, 246, 0.03);
}

.blog-post-share span {
    font-weight: 500;
    color: var(--text);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
}

.share-email:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Blog Sidebar */
.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    padding: 1.5rem;
    border-radius: 16px;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.sidebar-cta h3 {
    color: #fff;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.sidebar-cta .btn-primary {
    background: #fff;
    color: var(--primary);
    width: 100%;
    justify-content: center;
}

.sidebar-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts-list li {
    border-bottom: 1px solid var(--border);
}

.related-posts-list li:last-child {
    border-bottom: none;
}

.related-posts-list a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.related-posts-list a:hover {
    transform: translateX(4px);
}

.related-post-title {
    display: block;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.related-posts-list a:hover .related-post-title {
    color: var(--primary);
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 4rem 0;
}

.blog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a2942 100%);
    color: #fff;
}

.blog-cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.blog-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.blog-cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.blog-cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 16px;
}

.blog-empty i {
    font-size: 4rem;
    color: var(--text-light);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.blog-empty h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.blog-empty p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Page Header for Posts */
.page-header-post {
    text-align: center;
}

.page-header-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Breadcrumb Styling */
.page-header-post .page-header-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.page-header-post .page-header-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-header-post .page-header-breadcrumb a:hover {
    color: #7bbfd9;
}

.page-header-post .page-header-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.page-header-post .page-header-breadcrumb > span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Post Meta Data Styling */
.page-header-post .page-header-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.page-header-post .page-header-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.page-header-post .page-header-meta span i {
    color: #7bbfd9;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-post-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }

    .blog-cta {
        flex-direction: column;
        text-align: center;
    }

    .blog-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-body {
        padding: 1.5rem;
    }

    .blog-post-share {
        flex-wrap: wrap;
        padding: 1.25rem 1.5rem;
    }

    .blog-cta {
        padding: 2rem;
    }

    .blog-cta-content h2 {
        font-size: 1.5rem;
    }

    .blog-cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .page-header-post .page-header-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .page-header-post h1 {
        font-size: 1.75rem;
    }

    .blog-post-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: 100%;
    }
}
