/* ==================================
   DINDAR WEB - DESIGN SYSTEM
   Mobile-First Responsive Approach
   ================================== */

:root {
    /* Colors - Strict Dark Theme from Mobile App */
    --bg-dark: #0a1610;
    --bg-surface: #132017;
    --bg-surface-light: #1a2e1f;

    --primary: #15803d;
    --primary-glow: rgba(21, 128, 61, 0.5);
    --primary-dark: #14532d;

    --text-main: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Gradients */
    --gradient-hero: radial-gradient(circle at 50% 0%, rgba(43, 238, 75, 0.15) 0%, rgba(10, 22, 16, 0) 70%);
    --gradient-card: linear-gradient(145deg, rgba(19, 32, 23, 0.9) 0%, rgba(19, 32, 23, 0.4) 100%);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;

    /* Fonts */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Lexend', var(--font-main);

    /* Coming Soon Colors */
    --coming-primary: #2bee4b;
    --coming-primary-glow: rgba(43, 238, 75, 0.3);

    /* Touch Target */
    --touch-target-min: 44px;
}

/* ==================================
   RESET & BASE STYLES
   ================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

ul,
ol {
    list-style: none;
}

/* ==================================
   UTILITY CLASSES
   ================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #2bee4b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 0;
    }
}

/* Margin Utilities */
.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

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

/* Visibility */
.hide-mobile {
    display: none;
}

@media (min-width: 900px) {
    .hide-mobile {
        display: block;
    }

    .show-mobile {
        display: none;
    }
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 1.2em;
    vertical-align: middle;
    display: inline-block;
}

/* ==================================
   BUTTONS
   ================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    min-height: var(--touch-target-min);
    border: none;
    text-decoration: none;
}

@media (min-width: 640px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

.btn .material-symbols-outlined {
    font-size: 1.1em;
    margin-right: 0.5rem;
}

.btn-primary {
    background: var(--coming-primary);
    color: #0a1610;
    box-shadow: 0 0 20px var(--coming-primary-glow);
    border: 1px solid transparent;
    font-weight: 600;
}

.btn-primary:hover {
    background: #25d642;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--coming-primary-glow);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

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

.btn-disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}

/* ==================================
   NAVBAR
   ================================== */

.navbar {
    height: auto;
    min-height: 70px;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(10, 22, 16, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
    .navbar {
        min-height: 80px;
        padding: 1rem 0;
    }
}

.navbar.scrolled {
    background: rgba(10, 22, 16, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--border);
}

@media (min-width: 768px) {
    .navbar.scrolled {
        padding: 0.75rem 0;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .logo {
        font-size: 1.5rem;
        gap: 0.75rem;
    }
}

.logo svg {
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(21, 128, 61, 0.5));
}

/* Desktop Navigation */
.nav-links {
    display: none;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

/* Nav Actions (Desktop) */
.nav-actions {
    display: none;
}

@media (min-width: 900px) {
    .nav-actions {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 900px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

.mobile-menu-toggle .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active .material-symbols-outlined {
    transform: rotate(90deg);
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 16, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

@media (min-width: 900px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(43, 238, 75, 0.1);
    border-color: rgba(43, 238, 75, 0.3);
    color: var(--text-main);
}

.mobile-nav-links a .material-symbols-outlined {
    color: var(--coming-primary);
}

.mobile-nav-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.mobile-nav-cta .btn {
    width: 100%;
}

/* Body scroll lock when mobile menu open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ==================================
   HERO SECTION
   ================================== */

.hero {
    padding-top: calc(70px + 3rem);
    padding-bottom: 3rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-height) + 6rem);
        padding-bottom: 6rem;
    }
}

/* Background Gradients */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120%;
    background: var(--gradient-hero);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero::after {
        height: 200px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 900px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
        text-align: left;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        gap: 5rem;
    }
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: 1.125rem;
        max-width: 90%;
    }
}

@media (min-width: 900px) {
    .hero-text p {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-text p {
        font-size: 1.25rem;
    }
}




/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(43, 238, 75, 0.15);
    border: 1px solid rgba(43, 238, 75, 0.3);
    border-radius: 50px;
    color: var(--coming-primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .coming-soon-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.coming-soon-badge .material-symbols-outlined {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.coming-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coming-primary);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

@media (min-width: 640px) {
    .coming-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

/* ==================================
   PHONE MOCKUP
   ================================== */

.hero-image {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 240px;
    height: 490px;
    background: var(--bg-surface);
    border-radius: 36px;
    border: 6px solid #2a2a2a;
    box-shadow:
        0 0 0 2px #404040,
        0 15px 30px -8px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(21, 128, 61, 0.2);
    overflow: hidden;
    position: relative;
}

@media (min-width: 640px) {
    .phone-mockup {
        width: 280px;
        height: 570px;
        border-radius: 42px;
        border-width: 7px;
    }
}

@media (min-width: 1024px) {
    .phone-mockup {
        width: 320px;
        height: 650px;
        border-radius: 48px;
        border-width: 8px;
        box-shadow:
            0 0 0 2px #404040,
            0 25px 50px -12px rgba(0, 0, 0, 0.5),
            0 0 80px rgba(21, 128, 61, 0.2);
    }
}

.phone-notch {
    width: 90px;
    height: 25px;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 20;
}

@media (min-width: 1024px) {
    .phone-notch {
        width: 120px;
        height: 30px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
}

.phone-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0a1610;
    position: relative;
}

.phone-header {
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 15px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .phone-header {
        height: 80px;
        padding: 40px 20px 10px;
    }
}

.phone-header-title {
    font-weight: bold;
    color: white;
    font-size: 14px;
}

@media (min-width: 1024px) {
    .phone-header-title {
        font-size: 16px;
    }
}

.phone-header-avatar {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

@media (min-width: 1024px) {
    .phone-header-avatar {
        width: 24px;
        height: 24px;
    }
}

.phone-content {
    padding: 15px;
}

@media (min-width: 1024px) {
    .phone-content {
        padding: 20px;
    }
}

.phone-card-primary {
    height: 80px;
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    border-radius: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .phone-card-primary {
        height: 100px;
        border-radius: 16px;
        margin-bottom: 16px;
    }
}

.phone-card-item {
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .phone-card-item {
        height: 60px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
}

/* ==================================
   NOTIFY SECTION
   ================================== */

.notify-section {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.notify-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.notify-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .notify-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

.notify-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .notify-description {
        margin-bottom: 2.5rem;
        font-size: 1.125rem;
    }
}

.notify-form {
    max-width: 100%;
}

.notify-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .notify-input-group {
        flex-direction: row;
        align-items: center;
        border-radius: 50px;
        padding: 0.5rem;
        gap: 0;
    }
}

.notify-input-group:focus-within {
    border-color: var(--coming-primary);
    box-shadow: 0 0 20px rgba(43, 238, 75, 0.2);
}

.notify-icon {
    display: none;
    padding: 0 0.75rem;
    color: var(--text-muted);
    font-size: 1.5rem !important;
}

@media (min-width: 640px) {
    .notify-icon {
        display: block;
    }
}

.notify-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-main);
    min-height: var(--touch-target-min);
}

.notify-input::placeholder {
    color: var(--text-muted);
}

.notify-input-group .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .notify-input-group .btn {
        width: auto;
    }
}

.notify-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--coming-primary);
}

.notify-success.show {
    display: flex;
}

.notify-success .material-symbols-outlined {
    font-size: 1.25rem;
}

/* ==================================
   SHOWCASE SECTION
   ================================== */

.showcase-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .showcase-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .showcase-section {
        padding: 8rem 0;
    }
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 900px) {
    .showcase-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .showcase-container {
        gap: 6rem;
    }
}

@media (min-width: 900px) {
    .showcase-container.reverse {
        direction: rtl;
    }

    .showcase-container.reverse>* {
        direction: ltr;
    }
}

.showcase-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #2bee4b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .showcase-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .showcase-text h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

.showcase-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .showcase-text p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 0.75rem;
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.4);
    max-height: calc(90vh - 80px);
    /* Max height minus header */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .showcase-image-wrapper {
        border-radius: 30px;
        padding: 1.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
}

/* Screenshot images inside wrapper */
.showcase-image-wrapper img {
    max-height: calc(90vh - 120px);
    /* Viewport height minus header and padding */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.showcase-placeholder {
    aspect-ratio: 4/3;
    background: #132017;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 238, 75, 0.2);
}

@media (min-width: 768px) {
    .showcase-placeholder {
        border-radius: 20px;
    }
}

.showcase-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(43, 238, 75, 0.15), transparent 70%);
}

.showcase-placeholder-content {
    text-align: center;
    opacity: 0.7;
    z-index: 1;
}

.showcase-placeholder-content .material-symbols-outlined {
    font-size: 3rem;
    color: #2bee4b;
    margin-bottom: 0.5rem;
    display: block;
}

@media (min-width: 768px) {
    .showcase-placeholder-content .material-symbols-outlined {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
}

.showcase-placeholder-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Feature Highlights (in Showcase) */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .feature-highlights {
        gap: 1rem;
        margin-top: 2rem;
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(43, 238, 75, 0.08);
    border: 1px solid rgba(43, 238, 75, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.highlight-item:hover {
    background: rgba(43, 238, 75, 0.12);
    border-color: rgba(43, 238, 75, 0.3);
}

.highlight-item .material-symbols-outlined {
    color: var(--coming-primary);
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .highlight-item .material-symbols-outlined {
        font-size: 1.5rem;
    }
}

/* Stats Row (in Showcase) */
.stats-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .stats-row {
        gap: 2rem;
        margin-top: 2rem;
    }
}

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

.stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2bee4b;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 1.5rem;
    }
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

.stats-divider {
    width: 1px;
    background: var(--border);
}

/* ==================================
   FEATURES SECTION
   ================================== */

.features {
    background: var(--bg-dark);
    position: relative;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .section-title {
        max-width: 700px;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        margin-bottom: 5rem;
    }
}

.section-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .section-title h2 {
        font-size: 3rem;
    }
}

.section-title p {
    color: var(--text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        padding: 2.5rem;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(43, 238, 75, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--coming-primary);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .feature-card:hover {
        transform: translateY(-8px);
    }
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(43, 238, 75, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coming-primary);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(43, 238, 75, 0.2);
}

@media (min-width: 768px) {
    .feature-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .feature-icon {
        margin-bottom: 2rem;
    }
}

.feature-icon .material-symbols-outlined {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .feature-icon .material-symbols-outlined {
        font-size: 2rem;
    }
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 1rem;
    }
}

/* ==================================
   CTA SECTION
   ================================== */

/* ==================================
   PRICING SECTION
   ================================== */

.pricing-section {
    background: linear-gradient(to bottom, var(--bg-dark), #030805);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--coming-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pricing-card-featured {
    border-color: var(--coming-primary);
    background: linear-gradient(145deg, rgba(43, 238, 75, 0.05) 0%, var(--bg-surface) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--coming-primary);
    color: #0a1610;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coming-primary);
}

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

.pricing-yearly {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

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

.pricing-features li .material-symbols-outlined {
    color: var(--coming-primary);
    font-size: 1.25rem;
}

.pricing-features li.feature-limited {
    opacity: 0.6;
}

.pricing-features li.feature-limited .material-symbols-outlined {
    color: var(--text-muted);
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
}

.pricing-description {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

.pricing-description p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}


/* ==================================
   CTA SECTION
   ================================== */

/* ==================================
   PRICING SECTION
   ================================== */

.pricing-section {
    background: linear-gradient(to bottom, var(--bg-dark), #030805);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--coming-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pricing-card-featured {
    border-color: var(--coming-primary);
    background: linear-gradient(145deg, rgba(43, 238, 75, 0.05) 0%, var(--bg-surface) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--coming-primary);
    color: #0a1610;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coming-primary);
}

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

.pricing-yearly {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

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

.pricing-features li .material-symbols-outlined {
    color: var(--coming-primary);
    font-size: 1.25rem;
}

.pricing-features li.feature-limited {
    opacity: 0.6;
}

.pricing-features li.feature-limited .material-symbols-outlined {
    color: var(--text-muted);
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
}

.pricing-description {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

.pricing-description p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}


/* ==================================
   CTA SECTION
   ================================== */

.cta-section {

    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 238, 75, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .cta-glow {
        width: 600px;
        height: 600px;
    }
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

.cta-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-description {
        margin-bottom: 3rem;
        font-size: 1.25rem;
        max-width: 600px;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.cta-buttons .btn {
    min-width: 180px;
}

@media (min-width: 768px) {
    .cta-buttons .btn {
        min-width: 200px;
    }
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .cta-note {
        margin-top: 2rem;
        font-size: 0.875rem;
    }
}

/* ==================================
   FOOTER
   ================================== */

footer {
    background: #050b08;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    footer {
        padding: 4rem 0 2rem;
    }
}

@media (min-width: 1024px) {
    footer {
        padding: 6rem 0 2rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        gap: 4rem;
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-brand .logo img {
    filter: drop-shadow(0 0 8px rgba(21, 128, 61, 0.4));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-brand p {
        max-width: 280px;
        font-size: 0.95rem;
    }
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

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

.footer-social a:hover {
    background: rgba(43, 238, 75, 0.1);
    border-color: var(--coming-primary);
    color: var(--coming-primary);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Footer Links Columns */
.footer-links h4 {
    color: var(--text-main);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .footer-links h4 {
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
    }
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links ul li {
    margin: 0;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--coming-primary);
    transform: translateX(4px);
}

/* Footer Badge */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(43, 238, 75, 0.1);
    border: 1px solid rgba(43, 238, 75, 0.2);
    border-radius: 50px;
    color: var(--coming-primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

.footer-badge .material-symbols-outlined {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-size: 0.875rem;
    }
}

.footer-bottom p {
    margin: 0;
}

.footer-tagline {
    color: var(--coming-primary);
    font-weight: 600;
}


/* ==================================
   LEGAL PAGES (Prose)
   ================================== */

.legal-page {
    padding-top: calc(70px + 2rem);
}

@media (min-width: 768px) {
    .legal-page {
        padding-top: calc(var(--header-height) + 2rem);
    }
}

/* Legal and contact pages use full container width like homepage */
.legal-page .container {
    max-width: var(--container-width);
    /* Same as homepage: 1200px */
}

/* Prose content within legal pages - centered with reasonable max-width for readability */
.prose {
    max-width: 900px;
    margin: 0 auto;
}

.prose h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .prose h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.prose h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .prose h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.prose h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .prose h3 {
        font-size: 1.25rem;
    }
}

.prose p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.prose a {
    color: var(--coming-primary);
    text-decoration: none;
    font-weight: 600;
}

.prose a:hover {
    text-decoration: underline;
}

.prose ul,
.prose ol {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.prose .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Legal Section Cards */
.legal-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

@media (min-width: 768px) {
    .legal-section {
        margin-bottom: 2rem;
        padding: 2rem;
        border-radius: var(--radius-lg);
    }
}

.legal-section h2 {
    color: var(--coming-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .legal-section h2 {
        font-size: 0.875rem;
    }
}

.legal-section p:last-child {
    margin-bottom: 0;
}

/* Info Box */
.info-box {
    padding: 1rem;
    background: rgba(43, 238, 75, 0.1);
    border: 1px solid rgba(43, 238, 75, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .info-box {
        padding: 1.5rem;
        border-radius: var(--radius-md);
        margin-top: 2rem;
    }
}

.info-box h3 {
    color: var(--coming-primary);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

@media (min-width: 768px) {
    .info-box h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

.info-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

@media (min-width: 768px) {
    .info-box p {
        font-size: 0.95rem;
    }
}

/* Contact Value Links */
.contact-value-link {
    color: var(--coming-primary);
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
}

@media (min-width: 768px) {
    .contact-value-link {
        font-size: 1.25rem;
    }
}

.contact-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .contact-description {
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }
}

/* ==================================
   ANIMATIONS
   ================================== */

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 80px rgba(43, 238, 75, 0.2),
            0 0 0 2px #404040,
            0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 100px rgba(43, 238, 75, 0.4),
            0 0 0 2px #404040,
            0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* ==================================
   MOBILE WEB VIEW STYLES (Shared)
   For pages loaded in app WebView
   ================================== */

.mobile-webview {
    padding: 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.mobile-webview h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mobile-webview .last-updated {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.mobile-webview section {
    margin-bottom: 2rem;
}

.mobile-webview h2 {
    font-size: 1.25rem;
    color: var(--coming-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.mobile-webview p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.mobile-webview ul {
    list-style: disc;
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.mobile-webview li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.mobile-webview strong {
    color: var(--text-main);
}

.mobile-webview a {
    color: var(--coming-primary);
}

/* Contact specific mobile styles */
.mobile-webview .contact-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.mobile-webview .contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--coming-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-webview .contact-value {
    font-size: 1.125rem;
    color: var(--text-main);
    font-weight: 500;
}

.mobile-webview .response-time {
    padding: 1rem;
    background: rgba(43, 238, 75, 0.1);
    border: 1px solid rgba(43, 238, 75, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
}

.mobile-webview .response-time-label {
    color: var(--coming-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.mobile-webview .response-time-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================================
   CONTACT FORM STYLES
   ================================== */

.contact-page {
    max-width: 700px;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-label .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--coming-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--coming-primary);
    box-shadow: 0 0 0 3px rgba(43, 238, 75, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

/* Dark theme for select options */
.form-select option {
    background-color: #132017;
    color: #ffffff;
    padding: 0.75rem;
}

.form-select option:hover,
.form-select option:focus,
.form-select option:checked {
    background-color: #1a2e1f;
    color: #2bee4b;
}

.form-select option:disabled {
    color: rgba(255, 255, 255, 0.4);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 1.5rem !important;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (min-width: 640px) {
    .btn-submit {
        width: auto;
        min-width: 200px;
    }
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(10, 22, 16, 0.3);
    border-top-color: #0a1610;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.form-message .material-symbols-outlined {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-message h3 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
}

.form-message p {
    margin: 0;
    font-size: 0.9rem;
}

.form-success {
    background: rgba(43, 238, 75, 0.1);
    border: 1px solid rgba(43, 238, 75, 0.3);
}

.form-success .material-symbols-outlined {
    color: var(--coming-primary);
}

.form-success h3 {
    color: var(--coming-primary);
}

.form-success p {
    color: var(--text-secondary);
}

.form-error-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-error-box .material-symbols-outlined {
    color: #ef4444;
}

.form-error-box h3 {
    color: #ef4444;
}

.form-error-box p {
    color: var(--text-secondary);
}

/* reCAPTCHA Notice */
.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 1rem 0;
    line-height: 1.5;
}

.recaptcha-notice a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.recaptcha-notice a:hover {
    color: var(--coming-primary);
}

/* Utility */
.mt-4 {
    margin-top: 2rem;
}

.mockup-height {
    object-fit: contain !important;
}

/* ==================================
   BLOG PAGES
   ================================== */

/* Blog Hero */
.blog-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    text-align: center;
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: var(--gradient-hero);
    pointer-events: none;
}

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

.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary);
    transition: color 0.3s ease;
}

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

.breadcrumb .material-symbols-outlined {
    font-size: 1rem;
}

.category-hero {
    padding-bottom: 40px;
}

.category-hero .blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Layout */
.blog-list-section {
    padding: 60px 0 100px;
}

/* Blog categories bar (above grid) */
.blog-categories-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    background: rgba(21, 128, 61, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.category-pill .material-symbols-outlined {
    font-size: 1.125rem;
}

/* Blog Grid - 3 columns */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Card */
.blog-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-link {
    display: block;
    height: 100%;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.blog-category {
    padding: 0.25rem 0.75rem;
    background: rgba(21, 128, 61, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 500;
}

.blog-date {
    color: var(--text-muted);
}

.blog-card h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-author .material-symbols-outlined {
    font-size: 1.125rem;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.blog-read-more .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more .material-symbols-outlined {
    transform: translateX(4px);
}

/* No Blogs */
.no-blogs {
    text-align: center;
    padding: 4rem 2rem;
}

.no-blogs .material-symbols-outlined {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-blogs p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.sidebar-widget h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.category-list li a:hover,
.category-list li a.active {
    background: rgba(21, 128, 61, 0.1);
    color: var(--primary);
}

.category-list .material-symbols-outlined {
    font-size: 1.25rem;
}

.sidebar-about {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.1) 0%, rgba(21, 128, 61, 0.05) 100%);
}

.sidebar-about p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.pagination-btn:hover:not(.pagination-disabled) {
    background: var(--bg-surface-light);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

.pagination-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: var(--bg-surface-light);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-muted);
}

/* ==================================
   BLOG DETAIL PAGE
   ================================== */

.blog-detail-hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.blog-detail-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail {
    padding-bottom: 100px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: -80px;
    position: relative;
}

@media (min-width: 1024px) {
    .blog-detail-layout {
        grid-template-columns: 1fr 320px;
    }
}

.blog-detail-content {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-height: 600px;
}

@media (min-width: 768px) {
    .blog-detail-content {
        padding: 3rem;
    }
}

.blog-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--coming-primary);
}

.blog-breadcrumb .material-symbols-outlined {
    font-size: 1rem;
}

.blog-category-badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: rgba(21, 128, 61, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-detail-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.blog-meta-item .material-symbols-outlined {
    font-size: 1.125rem;
}

/* Article Content */
.blog-article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-article-content>*:not(:last-child) {
    margin-bottom: 1.5rem;
}

.blog-article-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.blog-article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.blog-article-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-article-content a:hover {
    color: var(--coming-primary);
}

.blog-article-content ul,
.blog-article-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-article-content ul {
    list-style: disc;
}

.blog-article-content ol {
    list-style: decimal;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.blog-article-content blockquote {
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(21, 128, 61, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    font-style: italic;
    color: var(--text-secondary);
}

.blog-article-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.blog-article-content code {
    padding: 0.25rem 0.5rem;
    background: var(--bg-dark);
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.blog-article-content pre {
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-article-content pre code {
    padding: 0;
    background: none;
}

/* Blog Tags */
.blog-tags {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.tags-label .material-symbols-outlined {
    font-size: 1.25rem;
}

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

.tag-item {
    padding: 0.5rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

/* Share Buttons */
.blog-share {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.05) 0%, rgba(21, 128, 61, 0.02) 100%);
    border-radius: var(--radius-md);
}

.blog-share h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    min-height: var(--touch-target-min);
}

.share-btn svg {
    flex-shrink: 0;
}

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

.share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.share-twitter {
    background: #000000;
    color: white;
    border-color: #000000;
}

.share-twitter:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.share-linkedin {
    background: #0a66c2;
    color: white;
    border-color: #0a66c2;
}

.share-linkedin:hover {
    background: #095196;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}

.share-whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.share-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Related Blogs */
.related-blogs {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.related-blogs h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.related-blogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .related-blogs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-blog-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.related-blog-card a {
    display: block;
}

.related-blog-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

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

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

.related-blog-content {
    padding: 1.25rem;
}

.related-blog-content h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-blog-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Blog Detail Sidebar */
.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .blog-detail-sidebar {
        position: sticky;
        top: calc(var(--header-height) + 20px);
        align-self: start;
    }
}

.btn-back-to-blog {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-back-to-blog:hover {
    background: var(--coming-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-back-to-blog .material-symbols-outlined {
    font-size: 1.25rem;
}

.sidebar-author {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.1) 0%, rgba(21, 128, 61, 0.05) 100%);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--primary);
}

.author-name {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.category-widget-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(21, 128, 61, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-widget-link:hover {
    background: rgba(21, 128, 61, 0.15);
}

.category-widget-link .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-detail-hero {
        height: 250px;
    }

    .blog-detail-layout {
        margin-top: -40px;
    }

    .share-buttons {
        grid-template-columns: 1fr;
    }
}

/* ==================================
   HOMEPAGE LATEST BLOGS SECTION
   ================================== */

.latest-blogs-section {
    background: linear-gradient(to bottom, var(--bg-dark), #030805);
}

.latest-blogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .latest-blogs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.latest-blog-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.latest-blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.latest-blog-link {
    display: block;
    height: 100%;
}

.latest-blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.latest-blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.latest-blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.latest-blog-date .material-symbols-outlined {
    font-size: 1rem;
}

.latest-blog-content h3 {
    font-size: 1.125rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-main);
}

.latest-blog-excerpt {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: auto;
}

.latest-blog-read-more .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.latest-blog-card:hover .latest-blog-read-more .material-symbols-outlined {
    transform: translateX(4px);
}

.latest-blogs-cta {
    display: flex;
    justify-content: center;
}

.latest-blogs-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.latest-blogs-cta .btn .material-symbols-outlined {
    font-size: 1.25rem;
}