@import url('tokens.css');
@import url('font.css');

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

body {
    background: var(--bg-color);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 30%, rgba(79, 143, 255, 0.06), transparent),
        linear-gradient(rgba(79, 143, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 143, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    color: var(--hero-text);
    overflow-x: hidden;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 124px 24px 60px;
    background: transparent;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 143, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 143, 255, 0.06) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
    pointer-events: none;
}

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

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    top: -120px;
    left: -80px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: -100px;
    right: -60px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-cyan);
    top: 40%;
    left: 60%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.05); }
}

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

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 25px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 212, 255, 0); }
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: heroFadeIn 1s ease-out 0.35s both;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: var(--hero-text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.hero-cta-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeIn 1s ease-out 0.65s both;
}

.hero-outline-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-blue);
    background: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.hero-outline-button:hover {
    background: var(--hero-card-bg);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 143, 255, 0.12);
}

.start-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(79, 143, 255, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.start-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(79, 143, 255, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.3);
}

.start-button:hover::before {
    opacity: 1;
}

.start-button:active {
    transform: translateY(0);
}

.start-button-text,
.start-button-icon {
    position: relative;
    z-index: 1;
}

.start-button-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.start-button:hover .start-button-icon {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 72px;
    animation: heroFadeIn 1s ease-out 0.8s both;
}

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

.hero-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: var(--hero-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-glow-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-cyan), var(--accent-blue), transparent);
    opacity: 0.4;
}

@media (max-width: 640px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .start-button {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .hero-outline-button {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* Digital Excellence Section */
.dex-section {
    position: relative;
    padding: 120px 24px;
    background: transparent;
}

.dex-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dex-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.dex-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hero-text-muted);
    margin-bottom: 48px;
}

.dex-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dex-service {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.dex-service:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.06);
}

.dex-service-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(79, 143, 255, 0.08);
    border-radius: 12px;
    color: var(--accent-blue);
}

.dex-service-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 4px;
    line-height: 1.3;
}

.dex-service-text p {
    font-size: 13px;
    color: var(--hero-text-muted);
    line-height: 1.5;
}

.dex-visual {
    position: relative;
}

.dex-image-wrapper {
    position: relative;
}

.dex-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08);
}

.dex-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
    animation: floatBadge 3s ease-in-out infinite;
}

.dex-float svg {
    color: var(--accent-blue);
}

.dex-float-1 {
    top: 16px;
    right: -12px;
}

.dex-float-2 {
    bottom: 24px;
    left: -12px;
    animation-delay: 1.5s;
}

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

@media (max-width: 768px) {
    .dex-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dex-section {
        padding: 80px 20px;
    }

    .dex-visual {
        order: -1;
    }

    .dex-float-1 {
        right: 8px;
    }

    .dex-float-2 {
        left: 8px;
    }
}

/* Growth Section */
.growth-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background: transparent;
    overflow: hidden;
}

.growth-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    width: 100%;
    text-align: center;
}

.growth-header {
    margin-bottom: 60px;
}

.growth-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.growth-description {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: var(--hero-text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
}

.chart-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    height: 400px;
    margin-bottom: 72px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.growth-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    animation: heroFadeIn 1s ease-out 0.8s both;
}

.growth-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.growth-stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--accent-blue);
    backdrop-filter: blur(12px);
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--hero-text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .growth-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .chart-wrapper {
        height: 300px;
        padding: 16px;
    }

    .growth-section {
        padding: 60px 20px;
    }
}
/* Tech Section */
.tech-section {
    position: relative;
    padding: 120px 24px;
    background: transparent;
}

.tech-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tech-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.tech-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--hero-text-muted);
    margin-bottom: 64px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.tech-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tech-card:nth-child(1),
.tech-card:nth-child(2),
.tech-card:nth-child(3),
.tech-card {
    grid-column: span 2;
}

.tech-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.tech-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.tech-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tech-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(79, 143, 255, 0.08);
    border-radius: 12px;
    color: var(--accent-blue);
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-blue);
}

.tech-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--input-bg);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

@media (max-width: 640px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-section {
        padding: 80px 20px;
    }

    .tech-card:nth-child(4),
    .tech-card:nth-child(5) {
        grid-column: span 1;
    }
}

/* How It Works Section */
.hiw-section {
    position: relative;
    padding: 120px 24px;
    background: transparent;
}

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

.hiw-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hiw-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--hero-text-muted);
    margin-bottom: 64px;
}

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

.hiw-step {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.hiw-step:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.06);
}

.hiw-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--accent-blue);
    color: var(--button-text);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.hiw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(79, 143, 255, 0.08);
    border-radius: 14px;
    color: var(--accent-blue);
}

.hiw-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.hiw-step p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--hero-text-muted);
}

@media (max-width: 900px) {
    .hiw-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hiw-section {
        padding: 80px 20px;
    }
}

/* Advantages Section */
.adv-section {
    position: relative;
    padding: 120px 24px;
    background: transparent;
}

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

.adv-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.adv-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--hero-text-muted);
    margin-bottom: 64px;
}

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

.adv-card {
    background: var(--card-bg);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.adv-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.06);
}

.adv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(79, 143, 255, 0.08);
    border-radius: 12px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.adv-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.adv-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--hero-text-muted);
}

@media (max-width: 768px) {
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .adv-section {
        padding: 80px 20px;
    }
}

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

/* ── Dark Mode ────────────────────────────────────────────── */
html.dark-mode .gradient-text,
html.dark-mode .hero-title-gradient {
    background: linear-gradient(135deg, #ffffff, #a1a1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html.dark-mode .hero-orb,
html.dark-mode .portfolio-hero-orb,
html.dark-mode .portfolio-stats-orb,
html.dark-mode .hero-glow-line,
html.dark-mode .portfolio-hero-glow-line {
    opacity: 0;
}

html.dark-mode body {
    background: #000000;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 30%, rgba(255, 255, 255, 0.02), transparent),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    color: #ededed;
}

/* Hero */
html.dark-mode .hero-title {
    color: #ffffff;
}

html.dark-mode .hero-description {
    color: #888888;
}

html.dark-mode .hero-badge {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #a1a1a1;
}

html.dark-mode .hero-badge-dot {
    background: #a1a1a1;
}

html.dark-mode .hero-stat-label {
    color: #888888;
}

html.dark-mode .hero-outline-button {
    color: #ededed;
    border-color: #333333;
    background: transparent;
}

html.dark-mode .hero-outline-button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #555555;
}

/* DEX Section */
html.dark-mode .dex-title {
    color: #ffffff;
}

html.dark-mode .dex-description {
    color: #888888;
}

html.dark-mode .dex-service {
    background: #111111;
    border-color: #1f1f1f;
}

html.dark-mode .dex-service:hover {
    border-color: #333333;
    box-shadow: none;
}

html.dark-mode .dex-service-icon {
    background: rgba(255, 255, 255, 0.06);
    color: #ededed;
}

html.dark-mode .dex-service-text h3 {
    color: #ffffff;
}

html.dark-mode .dex-service-text p {
    color: #888888;
}

html.dark-mode .dex-float {
    background: #111111;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.6);
    color: #ededed;
}

html.dark-mode .dex-float svg {
    color: #a1a1a1;
}

/* Growth / Chart */
html.dark-mode .growth-title {
    color: #ffffff;
}

html.dark-mode .growth-description {
    color: #888888;
}

html.dark-mode .chart-wrapper {
    background: rgba(17, 17, 17, 0.9);
    border-color: #1f1f1f;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

html.dark-mode .stat-icon {
    background: rgba(255, 255, 255, 0.04);
    border-color: #1f1f1f;
    color: #ededed;
}

html.dark-mode .stat-label {
    color: #888888;
}

/* Tech Cards */
html.dark-mode .tech-title {
    color: #ffffff;
}

html.dark-mode .tech-description {
    color: #888888;
}

html.dark-mode .tech-card {
    background: #111111;
    border-color: #1f1f1f;
    box-shadow: none;
}

html.dark-mode .tech-card:hover {
    border-color: #333333;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

html.dark-mode .tech-card-icon {
    background: rgba(255, 255, 255, 0.06);
    color: #ededed;
}

html.dark-mode .tech-card h3 {
    color: #ffffff;
}

html.dark-mode .tech-list li {
    color: #888888;
    background: #1a1a1a;
    border-color: #222222;
}

/* How It Works Steps */
html.dark-mode .hiw-title {
    color: #ffffff;
}

html.dark-mode .hiw-description {
    color: #888888;
}

html.dark-mode .hiw-step {
    background: #111111;
    border-color: #1f1f1f;
}

html.dark-mode .hiw-step:hover {
    border-color: #333333;
    box-shadow: none;
}

html.dark-mode .hiw-icon {
    background: rgba(255, 255, 255, 0.06);
    color: #ededed;
}

html.dark-mode .hiw-step h3 {
    color: #ffffff;
}

html.dark-mode .hiw-step p {
    color: #888888;
}

/* Advantages Cards */
html.dark-mode .adv-title {
    color: #ffffff;
}

html.dark-mode .adv-description {
    color: #888888;
}

html.dark-mode .adv-card {
    background: #111111;
    border-color: #1f1f1f;
}

html.dark-mode .adv-card:hover {
    border-color: #333333;
    box-shadow: none;
}

html.dark-mode .adv-icon {
    background: rgba(255, 255, 255, 0.06);
    color: #ededed;
}

html.dark-mode .adv-card h3 {
    color: #ffffff;
}

html.dark-mode .adv-card p {
    color: #888888;
}

