:root {
    /* Light Mode (Default) */
    --bg-color: #ffffff;
    --bg-secondary: #f9f9fa;
    --text-main: #18181b;
    /* Zinc 900 */
    --text-muted: #52525b;
    /* Zinc 600 */
    --primary: #18181b;
    /* Black for primary buttons */
    --primary-text: #ffffff;
    --accent-pink: #ec4899;
    --accent-pink-soft: #fce7f3;
    /* Pink 100 */
    --card-bg: #ffffff;
    --card-border: #e4e4e7;
    /* Zinc 200 */
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);

    /* Toggle Button Colors */
    --toggle-bg: #e4e4e7;
    --toggle-icon: #18181b;
}

/* Dark Mode Variables */
body.dark-mode {
    --bg-color: #09090b;
    /* Zinc 950 */
    --bg-secondary: #18181b;
    /* Zinc 900 */
    --text-main: #f4f4f5;
    /* Zinc 100 */
    --text-muted: #a1a1aa;
    /* Zinc 400 */
    --primary: #f4f4f5;
    /* Zinc 100 */
    --primary-text: #09090b;
    /* Zinc 950 */
    --accent-pink: #f472b6;
    /* Pink 400 - slightly lighter for dark mode */
    --accent-pink-soft: rgba(236, 72, 153, 0.2);
    --card-bg: #18181b;
    /* Zinc 900 */
    --card-border: #27272a;
    /* Zinc 800 */
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.5);

    --toggle-bg: #27272a;
    --toggle-icon: #f4f4f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.btn-sm:hover {
    background: var(--text-main);
    color: #fff;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-text);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-pink-soft);
    color: #9d174d;
    /* Darker pink for text ratio */
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 64px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a:not(.btn) {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav a:not(.btn):hover {
    color: var(--text-main);
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    cursor: pointer;
    padding: 8px 0;
}

.lang-current {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.lang-dropdown:hover .lang-current {
    color: var(--text-main);
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.lang-dropdown:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 80px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    padding: 8px;
    z-index: 200;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown:hover .lang-arrow,
.lang-dropdown.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu a {
    display: block !important;
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
}

.lang-menu a:hover {
    background: var(--bg-secondary);
    color: var(--text-main);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--card-border);
    cursor: pointer;
    padding: 8px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background-color: var(--bg-secondary);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Hero Split Layout */
.hero-split {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    /* Medical Feel: Subtle Cross/Grid Pattern */
    background-color: var(--bg-color);
    background-image:
        radial-gradient(var(--card-border) 1px, transparent 1px),
        radial-gradient(var(--card-border) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-split-container {
        grid-template-columns: 1.2fr 1fr;
        /* Text gets slightly more space */
        min-height: 80vh;
        /* Full viewport height feeling */
    }
}

.hero-text-col {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-text-col {
        text-align: left;
    }
}

/* Enhanced Background Glow */
.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.hero-split h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-main);
    background: linear-gradient(135deg, var(--text-main) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media (min-width: 768px) {
    .hero-split h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-split h1 {
        font-size: 4.5rem;
    }
}

/* Hero Lead */
.hero-lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.5;
}

@media (min-width: 992px) {
    .hero-lead {
        font-size: 1.5rem;
    }
}

/* Hero Sub */
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* CTA Container */
.hero-cta {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

/* Hero Links Section */
.hero-links {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.hero-links a {
    text-decoration: none;
    border-bottom: 1px dotted var(--text-muted);
    transition: all 0.2s;
    opacity: 0.85;
}

.hero-links a:hover {
    opacity: 1;
    border-bottom-style: solid;
    color: var(--text-main);
}

.hero-links .separator {
    opacity: 0.3;
}

/* Hero Image Column & Angled SVG */
.mobile-hero-img {
    display: none;
}

.hero-img-col {
    position: relative;
    /* Height handled by image */
}

.hero-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* Clean rounded corners for the main image block */
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* The Polygon Overlay (White triangle to cut the image angle) */
.hero-svg-overlay {
    position: absolute;
    top: 0;
    left: -1px;
    /* Overlap slightly to avoid gap */
    height: 100%;
    width: 80px;
    /* Width of the cut */
    color: var(--bg-color);
    /* Matches background */
    z-index: 10;
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 992px) {
    .hero-svg-overlay {
        display: block;
    }

    /* On desktop, image can break out of container slightly if we want, or just fill column */
    .hero-img-col {
        transform: perspective(1000px) rotateY(-2deg);
        transition: transform 0.5s ease;
    }

    .hero-img-col:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* Dark Mode Adjustments */
body.dark-mode .hero-split h1 {
    background: linear-gradient(135deg, #fff 30%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-mode .hero-bg-glow {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

body.dark-mode .hero-links {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .hero-svg-overlay {
    color: var(--bg-color);
    /* Auto-matches dark bg */
}

/* Preview Section */
.preview-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #fff, #fdf4f9);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--toggle-bg);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--toggle-icon);
    margin-left: 16px;
}

.theme-toggle:hover {
    transform: rotate(15deg) scale(1.1);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Specific Dark Mode Overrides */
body.dark-mode .header {
    background: rgba(9, 9, 11, 0.9);
    border-bottom: 1px solid var(--card-border);
}

body.dark-mode .preview-section {
    background: linear-gradient(to bottom, #09090b, #120810);
}

body.dark-mode .coming-soon {
    background: linear-gradient(to bottom, #09090b, #120810);
}

body.dark-mode .why-card,
body.dark-mode .testimonials {
    background: var(--bg-secondary);
    border-color: var(--card-border);
}

body.dark-mode .lang-menu {
    background: var(--card-bg);
    border-color: var(--card-border);
}

body.dark-mode .lang-menu a:hover {
    background: var(--bg-secondary);
}

body.dark-mode .preview-card:hover::after {
    background: rgba(9, 9, 11, 0.9);
    color: var(--text-main);
}

body.dark-mode .plan-card.pink {
    background: #380816;
    /* Dark pink background */
    border-color: #831843;
}

body.dark-mode .plan-card.pink h3 {
    color: #fce7f3;
    /* Light pink text */
}

body.dark-mode .white-plan-btn {
    border-color: var(--text-main);
    color: var(--text-main);
}

body.dark-mode .form-control {
    background: var(--bg-secondary);
    border-color: var(--card-border);
    color: var(--text-main);
}

body.dark-mode .form-control:focus {
    border-color: var(--accent-pink);
    background: var(--card-bg);
}

body.dark-mode .why-list li {
    color: var(--text-muted);
}

body.dark-mode .testimonials {
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

body.dark-mode .showcase-card {
    background: var(--card-bg);
    border-color: var(--card-border);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.preview-item {
    text-align: center;
}

.preview-header {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.preview-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.preview-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.preview-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--card-border);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.12);
}

.preview-card:hover::after {
    content: '🔍 View Full';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    opacity: 0;
    animation: fadeIn 0.2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-label {
    margin-top: 16px;
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Pricing Card (Hero Feature) */
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.price-header {
    margin-bottom: 32px;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

.amount {
    font-size: 4rem;
    font-weight: 400;
    /* Regular weight for serif */
    line-height: 1;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.period {
    color: var(--text-muted);
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.option.highlight {
    background: #fff0f7;
    /* Very light pink */
    border-color: rgba(236, 72, 153, 0.2);
}

.option-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.option.highlight .option-label {
    color: #9d174d;
    font-weight: 500;
}

.option-value {
    font-weight: 600;
    color: var(--text-main);
}

.bonus {
    color: #db2777;
    /* Pink 600 */
    font-size: 0.85rem;
    margin-left: 6px;
}

.try-text {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-color);
}

/* Highlight Feature Card */
/* Highlight Feature Card */
.highlight-feature-card {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    border: 1px solid #3f3f46;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #db2777;
}

.highlight-content {
    max-width: 800px;
}

.highlight-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #db2777;
    color: #fff;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.highlight-feature-card h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.highlight-text {
    font-size: 1.25rem;
    color: #a1a1aa;
    /* Zinc 400 */
    margin-bottom: 40px;
    line-height: 1.6;
}

.highlight-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #e4e4e7;
    /* Zinc 200 */
    background: rgba(255, 255, 255, 0.05);
    /* Glass-like effect */
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid #3f3f46;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.highlight-list .check-icon {
    color: #ec4899;
    /* Lighter pink for dark bg */
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .highlight-feature-card {
        padding: 40px 24px;
        text-align: left;
    }

    .highlight-feature-card::before {
        width: 100%;
        height: 6px;
    }

    .highlight-feature-card h2 {
        font-size: 2rem;
    }

    .highlight-list {
        flex-direction: column;
        gap: 16px;
    }

    .highlight-list li {
        width: 100%;
        justify-content: flex-start;
    }
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
    margin-bottom: 60px;
}

.feature-category h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-main);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-list .icon {
    color: var(--accent-pink);
    font-weight: bold;
    flex-shrink: 0;
    width: 24px;
}

.feature-list .text strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--text-main);
}

.feature-list .text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.full-width-feature {
    margin-top: 60px;
    padding: 60px 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.full-width-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-main);
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mini-feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mini-feature .icon {
    font-size: 1.5rem;
    color: var(--accent-pink);
}

.mini-feature strong {
    color: var(--text-main);
}

/* Coming Soon */
.coming-soon {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #f4f4f5);
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.coming-soon p {
    color: var(--text-muted);
    margin-bottom: 60px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.roadmap-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.roadmap-item:hover {
    border-color: #d4d4d8;
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.roadmap-item .arrow {
    color: var(--accent-pink);
}

.roadmap-item span {
    color: var(--text-main);
    font-weight: 500;
}

.fine-print {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Why Us */
.why-us {
    padding: 80px 0 160px;
    background: var(--bg-color);
}

.why-card {
    background: #fdf2f8;
    /* Very light pink background */
    border: 1px solid #fbcfe8;
    border-radius: 32px;
    padding: 60px;
    text-align: center;
}

.why-card h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #831843;
}

.why-list {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 50px;
}

.why-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: #374151;
    /* Gray 700 */
}

.why-list .check {
    color: #fff;
    background: #ec4899;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.cta-container {
    margin-top: 40px;
}

/* Testimonial / Showcase Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
    /* Very light pink background */
    text-align: center;
}

.showcase-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    margin: 40px auto 0;
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.1);
}

.testimonial-quote {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 32px;
    font-style: italic;
}

.client-info {
    margin-bottom: 40px;
}

.client-name {
    display: block;
    font-weight: 700;
    color: #db2777;
    /* Pink 600 */
    font-size: 1.1rem;
}

.client-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.live-link-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.live-badge {
    background: #10b981;
    /* Green 500 */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-secondary);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-branding {
    color: var(--text-muted);
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 0.85rem;
}

.footer-branding:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
    background: none;
    -webkit-text-fill-color: initial;
}

.section-header p {
    color: var(--text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    /* Increased gap for better separation */
    align-items: stretch;
    /* Cards same height */
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 24px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.plan-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-main);
    line-height: 1;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 4px;
    color: var(--text-muted);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 32px;
}

.feature-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-style: italic;
}

.plan-features ul li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.plan-features ul li strong {
    color: var(--text-main);
    font-weight: 600;
}

.plan-features .check {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    display: inline-block;
}

/* Plan Variants */

/* White Plan */
.plan-card.white {
    border-color: var(--card-border);
}

.plan-card.white .check {
    color: var(--text-muted);
}


/* General Feature Text Styles */
.plan-features ul li .feature-text {
    display: flex;
    flex-direction: column;
}

.plan-features ul li strong {
    color: var(--text-main);
    font-weight: 600;
}

.plan-features ul li .description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 2px;
}

.plan-card.white .btn-outline {
    border: 1px solid var(--text-main);
    color: var(--text-main);
    width: 100%;
    background: transparent;
    padding: 12px;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s;
}

.plan-card.white .btn-outline:hover {
    background: var(--text-main);
    color: #fff;
}

/* Pink Plan */
.plan-card.pink {
    background: #fff8fc;
    /* Rose 50 */
    border: 1px solid #fecdd3;
    /* Rose 200 */
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);
    /* Pink shadow */
}

.plan-card.pink h3 {
    color: #be185d;
    /* Pink 700 */
}

.plan-card.pink .check {
    color: #db2777;
    /* Use pink for heart icon too if needed */
}

.plan-card.pink .btn-primary {
    background: #db2777;
    /* Pink 600 */
    color: #fff;
    width: 100%;
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.25);
    border: none;
}

.plan-card.pink .btn-primary:hover {
    background: #be185d;
    /* Pink 700 */
}

.badge-pop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #db2777;
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(219, 39, 119, 0.3);
}

/* Black Plan (Maintains Dark Theme for Impact) */
.plan-card.black {
    background: #09090b;
    /* Zinc 950 */
    border: 1px solid #27272a;
    color: #fff;
}

.plan-card.black .plan-header h3 {
    color: #fff;
    background: none;
    -webkit-text-fill-color: initial;
}

.plan-card.black .plan-subtitle,
.plan-card.black .plan-price .currency,
.plan-card.black .plan-price .period,
.plan-card.black .custom-note,
.plan-card.black .feature-intro,
.plan-card.black .plan-features ul li {
    color: #a1a1aa;
    /* Zinc 400 */
}

.plan-card.black .plan-features ul li strong {
    color: #fff;
}

.plan-card.black .plan-price {
    color: #fff;
}

.plan-card.black .check {
    color: #fff;
    /* or gold? prompts says 'Black' */
}

.plan-card.black .btn-dark {
    width: 100%;
    background: transparent;
    border: 1px solid #52525b;
    color: #d4d4d8;
    padding: 12px;
    border-radius: 100px;
    text-align: center;
    transition: all 0.3s;
}

.plan-card.black .btn-dark:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Inquiry / Contact Section */
.inquiry-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.inquiry-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.email-cta-container {
    margin-top: 40px;
}

.email-cta {
    font-size: 2rem;
    font-weight: 700;
    color: #db2777;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.email-cta:hover {
    color: #be185d;
    border-bottom-color: #be185d;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.initial-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 24px;
    }

    .grid-2-col,
    .grid-4-col {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 16px;
    }

    .nav>a {
        display: none;
    }

    .why-card {
        padding: 32px 20px;
    }
}

/* Inquiry Form */
.inquiry-container {
    max-width: 800px !important;
}

.form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--card-border);
    margin-top: 40px;
    text-align: left;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: var(--bg-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    background: #fff;
    box-shadow: 0 0 0 4px var(--accent-pink-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a1a1aa;
}

.form-footer {
    margin-top: 8px;
    text-align: center;
}

.btn-block {
    width: 100%;
    display: block;
    border: none;
}

.form-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 24px;
    }
}

/* Dedicated IT Support Section */
.it-support-section {
    padding: 100px 0;
    background: #18181b;
    /* Dark background for contrast */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.it-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.it-text h2 {
    font-size: 3rem;
    margin: 24px 0;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #a1a1aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.it-text p {
    font-size: 1.25rem;
    color: #a1a1aa;
    /* Zinc 400 */
    margin-bottom: 40px;
    line-height: 1.6;
}

.it-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.it-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.it-features .icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.it-features span {
    color: #d4d4d8;
    /* Zinc 300 */
    font-size: 0.95rem;
}

.it-features strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

/* IT Visual Animation */
.it-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.it-card-stack {
    position: relative;
    width: 300px;
    height: 200px;
}

.it-card {
    background: #27272a;
    /* Zinc 800 */
    border: 1px solid #3f3f46;
    /* Zinc 700 */
    border-radius: 16px;
    padding: 16px 24px;
    position: absolute;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #e4e4e7;
    transition: transform 0.4s ease;
}

.it-card:hover {
    transform: translateY(-10px) !important;
    border-color: #52525b;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 1;
}

.card-2 {
    top: 40px;
    left: 20px;
    transform: rotate(2deg);
    z-index: 2;
    background: #3f3f46;
    /* Slightly lighter */
}

.card-3 {
    top: 80px;
    left: 10px;
    transform: rotate(-2deg);
    z-index: 3;
    background: #18181b;
    /* Darkest */
    border: 1px solid #52525b;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.green {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.status-dot.blue {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

.status-dot.purple {
    background: #a855f7;
    box-shadow: 0 0 10px #a855f7;
}

@media (max-width: 768px) {
    .it-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .it-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .it-text h2 {
        font-size: 2.25rem;
    }

    .it-visual {
        height: 300px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    border-top: 1px solid var(--card-border);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px 24px;
    background: var(--card-bg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #d4d4d8;
    box-shadow: var(--shadow-soft);
}

.faq-item[open] {
    background: var(--bg-secondary);
    border-color: var(--card-border);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}

.faq-item .icon {
    font-size: 1.5rem;
    color: var(--accent-pink);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] .icon {
    transform: rotate(45deg);
}

.faq-item .faq-content {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    animation: fadeIn 0.3s ease;
}

/* =========================================
   Slider Preview Section Styles
   ========================================= */

/* New viewport container for the slider to avoid conflict with global .container */
.slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background-color: #000;
    color: #fff;
    margin: 40px auto;
    max-width: 1400px;
    height: 600px;
}

@media only screen and (max-width: 1000px) {
    .slider-viewport {
        border-radius: 0;
        height: 80vh;
    }
}

/* =========================================
   Mobile Optimization & Responsive Fixes
   ========================================= */

@media (max-width: 768px) {

    /* 1. Header & Navigation */
    .header-container {
        padding: 0 16px;
    }

    .nav {
        display: none;
        /* Hide desktop nav */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--card-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
    }

    body.dark-mode .nav {
        background: rgba(9, 9, 11, 0.98);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        display: flex;
        animation: fadeInDown 0.3s ease;
    }

    /* Header Actions Wrapper */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .mobile-menu-btn {
        display: block;
        /* Show hamburger */
        margin-left: 8px;
        /* Extra space from tools */
    }

    /* 2. Hero Section */
    .hero-split {
        padding-top: 160px;
        text-align: center;
    }

    .hero-img-col {
        display: none !important;
        /* Hide original desktop image on mobile */
    }

    .mobile-hero-img {
        display: block !important;
        margin: 24px 0 40px;
        /* Spacing between text and CTA */
        width: 100%;
    }

    .hero-split h1 {
        font-size: 2.5rem;
    }

    .hero-links {
        flex-direction: column;
        gap: 8px;
        background: none;
        border: none;
        backdrop-filter: none;
    }

    .hero-links .separator {
        display: none;
    }

    /* 3. Grids */
    .grid-2-col,
    .grid-4-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* 4. Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.popular {
        transform: scale(1);
        /* Remove any default scale */
    }

    /* 5. Footer */
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Menu Button - Default Hidden */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 8px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider {
    display: flex;
    width: 400%;
    /* 4 slides = 400% */
    height: 100%;
    transition: all .25s ease-in;
    transform: translateX(0);
}

.slider .box {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 650px) {
    .slider .box {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }
}

.slider .bg {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    width: 55%;
    transform: skewX(7deg);
    position: absolute;
    height: 100%;
    left: -10%;
    padding-left: 20rem;
    transform-origin: 0 100%;
}

@media only screen and (max-width: 800px) {
    .slider .bg {
        width: 65%;
    }
}

@media only screen and (max-width: 650px) {
    .slider .bg {
        width: 100%;
        left: 0;
        bottom: 0;
        height: 54%;
        transform: skewX(0deg);
        padding-left: 2rem;
    }
}

.slider .bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: inherit;
    pointer-events: none;
    transform: skewX(10deg);
}

@media only screen and (max-width: 650px) {
    .slider .bg::before {
        width: 120%;
        bottom: 0;
        transform: skewX(0deg);
    }
}

.slider .details {
    padding: 5rem;
    padding-left: 6rem;
    z-index: 100;
    grid-column: 1 / span 1;
    grid-row: 1 / -1;
}

@media only screen and (max-width: 650px) {
    .slider .details {
        grid-row: 2 / span 1;
        grid-column: 1 / -1;
        text-align: center;
        padding: 1.5rem;
        transform: translateY(-4rem);
        /* Move higher to clear 2x2 nav */
    }
}

.slider .details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.slider .details p {
    display: inline-block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    margin-right: 2rem;
    line-height: 1.6;
}

@media only screen and (max-width: 800px) {
    .slider .details p {
        margin-right: 0;
        margin-bottom: 1.5rem;
        /* Reduce space to pull button up */
    }
}

.slider .details button {
    padding: 1rem 3rem;
    color: #fff;
    border-radius: 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
}

.slider .details button:hover {
    opacity: .8;
    background: rgba(255, 255, 255, 0.3);
}

/* Slide Colors - Medical / Simple Theme */
.slider .box1 {
    background-color: #0f172a;
    /* Slate 900 - Deep Medical/Tech */
}

.slider .box1 .illustration .inner {
    background-color: #334155;
}

.slider .box1 button {
    background-color: #3b82f6;
    /* Blue 500 */
}

.slider .box2 {
    background-color: #1e3a8a;
    /* Blue 900 - Classic Medical Blue */
}

.slider .box2 .illustration .inner {
    background-color: #1d4ed8;
}

.slider .box2 button {
    background-color: #60a5fa;
    /* Blue 400 */
}

.slider .box3 {
    background-color: #0f766e;
    /* Teal 700 - Modern Medical */
}

.slider .box3 .illustration .inner {
    background-color: #14b8a6;
}

.slider .box3 button {
    background-color: #2dd4bf;
    /* Teal 400 */
}

.slider .box4 {
    background-color: #0369a1;
    /* Sky 700 - Clean/Hygienic */
}

.slider .box4 .illustration .inner {
    background-color: #0ea5e9;
}

.slider .box4 button {
    background-color: #38bdf8;
    /* Sky 400 */
}

.slider .illustration {
    grid-column: 2 / -1;
    grid-row: 1 / -1;
    justify-self: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 650px) {
    .slider .illustration {
        grid-row: 1 / span 1;
        grid-column: 1 / -1;
    }
}

.slider .illustration .inner {
    height: 300px;
    width: 450px;
    border-radius: 1rem;
    position: relative;
    transform: skewX(-5deg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 800px) {
    .slider .illustration .inner {
        height: 200px;
        width: 300px;
    }
}

.slider .illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(5deg) scale(1.1);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slider .illustration img:hover {
    opacity: 0.9;
}

/* Navigation */
.slider-prev,
.slider-next,
.slider-trail {
    z-index: 100;
    position: absolute;
}

.slider-prev,
.slider-next {
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    opacity: .4;
    transition: all .3s ease;
    fill: #fff;
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 1;
}

.slider-prev {
    top: 50%;
    left: 2%;
    transform: translateY(-50%) rotate(180deg);
}

.slider-next {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
}

.slider-trail {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
}

@media only screen and (max-width: 650px) {
    .slider-trail {
        width: 95%;
        bottom: 2%;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .slider-trail div {
        padding: 8px 4px;
        font-size: 0.9rem;
    }
}

.slider-trail div {
    padding: 1rem;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    opacity: .5;
    transition: all 0.3s ease;
}

.slider-trail div:hover {
    opacity: .8;
}

.slider-trail div.active {
    opacity: 1 !important;
    border-top-color: #fff;
}