@charset "utf-8";
/* Modern Footer Design */
.footer-modern-is {
    width: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #181d36 50%, #23263a 100%);
    border-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-modern-is::before {
    display: none;
}

.footer-container-is {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px 30px 50px;
}

.footer-top-is {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-is {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-link-is {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-link-is:hover {
    transform: translateX(5px);
}

.footer-logo-icon-is {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo-link-is:hover .footer-logo-icon-is {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 255, 204, 0.4);
}

.footer-logo-icon-is svg {
    width: 24px;
    height: 24px;
    fill: #0a0e27;
}

.footer-logo-text-is {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description-is {
    color: #c0c0c0;
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
    margin-top: 8px;
}

.footer-risk-is {
    color: #a8a8a8;
    font-size: 13px;
    line-height: 1.6;
    max-width: 440px;
    margin-top: 4px;
}

.footer-links-grid-is {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column-is {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column-title-is {
    font-size: 18px;
    font-weight: 600;
    color: #00ffcc;
    margin-bottom: 4px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column-title-is::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00ffcc, transparent);
    border-radius: 2px;
}

.footer-links-list-is {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list-is li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links-list-is li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00ffcc;
}

.footer-links-list-is li a:hover {
    color: #00ffcc;
    padding-left: 20px;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
}

.footer-links-list-is li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom-is {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.footer-copyright-is {
    color: #a0a0a0;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}


@media (max-width: 900px) {
    .footer-container-is {
        padding: 40px 20px 25px 20px;
    }

    .footer-top-is {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-links-grid-is {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-description-is {
        max-width: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0e27;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 50px;
    background: rgba(10, 14, 39, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: #0a0e27;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: #ff8e53;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ffcc, #00ccff);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
    border-radius: 2px;
}

.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    fill: white;
}

.search-icon:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image:
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 128, 0.1) 50%, transparent 70%);
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -20px);
    }
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid rgba(0, 255, 204, 0.3);
}

.shape1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    transform: rotate(45deg);
    animation: float 15s ease-in-out infinite;
}

.shape2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    border-color: rgba(255, 0, 128, 0.3);
    animation: float 20s ease-in-out infinite reverse;
}

.shape3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    border-color: rgba(0, 204, 255, 0.3);
    transform: rotate(30deg);
    animation: float 18s ease-in-out infinite;
}

.shape4 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 5%;
    border-color: rgba(255, 0, 128, 0.25);
    transform: rotate(45deg);
    animation: float 16s ease-in-out infinite;
}

.shape5 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 12%;
    border-color: rgba(0, 255, 204, 0.25);
    transform: rotate(-30deg);
    animation: float 22s ease-in-out infinite reverse;
}

.shape6 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 8%;
    border-color: rgba(0, 204, 255, 0.25);
    transform: rotate(20deg);
    animation: float 19s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero content for single column (centered) pages */
.hero-content.hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-content.hero-centered .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.city-container {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.building {
    position: absolute;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow:
        0 0 20px rgba(0, 255, 204, 0.1),
        inset 0 0 20px rgba(0, 255, 204, 0.05);
    overflow: hidden;
}

/* Building fill effect */
.building-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    animation: pulse 3s ease-in-out infinite;
}

.building1 {
    width: 60px;
    height: 250px;
    bottom: 0;
    left: 20%;
}

.building1 .building-fill {
    height: 45%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 204, 0.6) 100%);
}

.building2 {
    width: 80px;
    height: 320px;
    bottom: 0;
    left: 35%;
}

.building2 .building-fill {
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 128, 0.6) 100%);
    animation-delay: 0.5s;
}

.building3 {
    width: 100px;
    height: 280px;
    bottom: 0;
    right: 25%;
}

.building3 .building-fill {
    height: 35%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 204, 255, 0.6) 100%);
    animation-delay: 1s;
}

.building4 {
    width: 70px;
    height: 200px;
    bottom: 0;
    right: 10%;
}

.building4 .building-fill {
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 107, 0.6) 100%);
    animation-delay: 1.5s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

/* Building windows */
.building-windows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 8px,
            rgba(255, 255, 255, 0.05) 8px,
            rgba(255, 255, 255, 0.05) 10px);
    opacity: 0.8;
}

.neon-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: scan 3s linear infinite;
}

.neon-line1 {
    width: 100px;
    top: 30%;
    left: 10%;
}

.neon-line2 {
    width: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

/* Dashboard Section */
.dashboard-section {
    padding: 80px 50px;
    background: linear-gradient(180deg, #0a0e27 0%, #0f1329 100%);
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 204, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: scan 3s linear infinite;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ffcc, #00ccff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-title {
    font-size: 14px;
    color: #c0c0c0;
    font-weight: 500;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-description {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.5;
}

.stat-chart {
    margin-top: 20px;
    height: 60px;
    position: relative;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

/* Analytics Section */
.analytics-section {
    padding: 80px 50px;
    background: linear-gradient(180deg, #0f1329 0%, #1a1f3a 100%);
}

/* Chart Cards */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    min-height: 400px;
}

/*
  IS Terms page: chart cards are used for text blocks.
  The default min-height (built for analytics charts) creates large empty space.
*/
html[lang="is"] #terms-hero + section.dashboard-section .chart-card {
    min-height: auto;
}

html[lang="is"] #terms-hero + section.dashboard-section .chart-header {
    margin-bottom: 14px;
}

.chart-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.chart-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.chart-options {
    display: flex;
    gap: 10px;
}

.chart-option {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #d0d0d0;
    font-weight: 500;
}

.chart-option:hover,
.chart-option.active {
    background: rgba(0, 255, 204, 0.1);
    border-color: rgba(0, 255, 204, 0.3);
    color: #00ffcc;
}

.chart-container {
    position: relative;
    height: 300px;
}

/* Bar Chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 20px 0;
}

.bar {
    width: 30px;
    background: linear-gradient(180deg, #00ffcc 0%, #00ccff 100%);
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bar:hover {
    transform: scaleY(1.05);
    filter: brightness(1.2);
}

.bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #b8b8b8;
    font-weight: 500;
}

.bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #00ffcc;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bar:hover .bar-value {
    opacity: 1;
}

/* Line Chart */
.line-chart {
    position: relative;
    width: 100%;
    height: 100%;
}

.line-chart-svg {
    width: 100%;
    height: 100%;
}

.chart-grid-line {
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1;
}

.chart-line {
    fill: none;
    stroke: #00ffcc;
    stroke-width: 2;
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
}

.chart-area {
    fill: url(#gradient);
    opacity: 0.3;
}

.chart-dot {
    fill: #00ffcc;
    stroke: #0a0e27;
    stroke-width: 2;
    r: 4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-dot:hover {
    r: 6;
    filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.8));
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 204, 0.3);
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #00ffcc;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #a0a0a0;
}

/* Reports Section */
.reports-section {
    padding: 80px 50px;
    background:
        linear-gradient(135deg, #1a0033 0%, #2d1b69 50%, #0f1329 100%),
        linear-gradient(90deg, transparent 49%, rgba(0, 255, 204, 0.05) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(0, 255, 204, 0.05) 50%, transparent 51%);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    position: relative;
}

.reports-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Info Cards Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00ffcc;
}

.info-card p {
    color: #c0c0c0 !important;
}

.info-value {
    font-size: 28px;
    font-weight: 700;
    color: #00ffcc;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 50px;
    background: linear-gradient(180deg, #0f1329 0%, #0a0e27 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffffff; /* Fallback for browsers that don't support gradient text */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #d0d0d0;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 204, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 255, 204, 0.3);
    background: rgba(0, 255, 204, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffcc, #00ccff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-details p {
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.4;
}


/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    gap: 0;
    list-style: none;
    z-index: 1000;
    padding: 20px;
}

.nav-links-mobile.active {
    display: flex;
}

.nav-links-mobile a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-links-mobile a:hover {
    border-left-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    color: #ff8e53;
}

.nav-links-mobile a.active {
    border-left-color: #00ffcc;
    background: rgba(0, 255, 204, 0.1);
    color: #00ffcc;
}

@media (max-width: 1200px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text {
        padding-top: 160px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text {
        padding-top: 120px;
    }

    .dashboard-section,
    .analytics-section,
    .reports-section,
    .contact-section {
        padding: 40px 20px;
    }

    /* Responsive grid adjustments for about, privacy, terms pages */
    .charts-grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .charts-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: 1fr 300px"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .chart-card[style*="position: sticky"] {
        position: relative !important;
        top: 0 !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content.hero-centered {
        grid-template-columns: 1fr !important;
    }

    .hero-visual {
        margin-top: 40px;
    }
}


/* New FAQ Design */
.faq-section-new {
    padding: 100px 50px;
    background: linear-gradient(180deg, #0a0e27 0%, #181d36 100%);
    position: relative;
    overflow: hidden;
}

/*
  IS-only: avoid a visible "seam" between the final page section and the footer.
  When a section is the last <section> on the page, blend its bottom color into
  the footer's top color (#0a0e27).
*/
html[lang="is"] section.dashboard-section:last-of-type {
    background: linear-gradient(180deg, #0f1329 0%, #0a0e27 100%) !important;
}

html[lang="is"] section.analytics-section:last-of-type {
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%) !important;
}

html[lang="is"] section.reports-section:last-of-type {
    background: linear-gradient(135deg, #1a0033 0%, #0a0e27 100%) !important;
}

html[lang="is"] section.faq-section-new:last-of-type {
    background: linear-gradient(180deg, #0a0e27 0%, #0a0e27 100%) !important;
}

html[lang="is"] footer {
    background: #0a0e27;
    margin-top: -1px;
}

.faq-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 142, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.faq-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 18px;
    color: #d0d0d0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.faq-container-new {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.faq-item-new {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.faq-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffcc, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item-new:hover {
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 8px 32px rgba(0, 255, 204, 0.1);
    transform: translateY(-2px);
}

.faq-item-new:hover::before {
    opacity: 1;
}

.faq-item-new.active {
    border-color: rgba(0, 255, 204, 0.5);
    background: rgba(0, 255, 204, 0.06);
    box-shadow: 0 8px 32px rgba(0, 255, 204, 0.15);
}

.faq-item-new.active::before {
    opacity: 1;
}

.faq-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    cursor: pointer;
}

.faq-number {
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 255, 204, 0.4);
    min-width: 50px;
    transition: color 0.3s ease;
}

.faq-item-new.active .faq-number {
    color: #00ffcc;
}

.faq-question-new {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item-new.active .faq-question-new {
    color: #00ffcc;
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 204, 0.1);
    border-radius: 50%;
    color: #00ffcc;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item-new.active .faq-icon {
    background: rgba(0, 255, 204, 0.2);
    transform: rotate(45deg);
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 30px;
}

.faq-item-new.active .faq-answer-new {
    max-height: 500px;
    opacity: 1;
    padding: 0 30px 28px 100px;
}

.faq-answer-new p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.faq-cta p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 25px;
}

.faq-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00ffcc, #00ccff);
    color: #0a0e27;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 204, 0.4);
}

@media (max-width: 900px) {
    .faq-section-new {
        padding: 60px 20px;
    }

    .faq-main-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-item-header {
        padding: 20px;
        gap: 15px;
    }

    .faq-number {
        font-size: 20px;
        min-width: 40px;
    }

    .faq-question-new {
        font-size: 16px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
    }

    .faq-item-new.active .faq-answer-new {
        padding: 0 20px 20px 75px;
    }

    .faq-answer-new p {
        font-size: 15px;
    }

    .faq-cta {
        padding: 30px 20px;
    }
}

.lang-dropdown {
    position: relative;
    min-width: 120px;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    font: 500 15px 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    padding: 8px 18px 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    transition: background 0.2s;
    position: relative;
    min-width: 120px;
}

.lang-btn:hover,
.lang-dropdown.open .lang-btn {
    background: rgba(0, 255, 204, 0.08);
}

.lang-icon {
    font-size: 1.1em;
    margin-right: 2px;
}

.lang-selected {
    font-weight: 500;
    min-width: 60px;
    text-align: left;
}

.lang-arrow {
    font-size: 0.9em;
    margin-left: 2px;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #23263a;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    min-width: 180px;
    z-index: 100;
    margin-top: 2px;
    padding: 4px 0;
    list-style: none;
    border: 1px solid #2e334a;
    max-height: 340px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.lang-menu li {
    padding: 9px 22px 9px 18px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    border: none;
    background: none;
    transition: background 0.18s, color 0.18s;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
}

.lang-menu li[aria-selected="true"] {
    background: #00ffcc22;
    color: #00ffcc;
    font-weight: 600;
    border-left: 3px solid #00ffcc;
}

.lang-menu li:hover {
    background: #2e334a;
    color: #00ffcc;
}

.lang-dropdown.open .lang-menu {
    display: block;
    animation: fadeInLang 0.18s;
}

@keyframes fadeInLang {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .lang-menu {
        left: auto;
        right: 0;
    }
}

.flag-img {
    width: 1.5em;
    height: 1.1em;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    background: #fff;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .nav-links-mobile .lang-dropdown {
        width: 100%;
        position: static;
    }

    .nav-links-mobile .lang-menu {
        position: static !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        min-width: unset !important;
        max-height: 60vh;
        overflow-y: auto;
        border-radius: 0 0 12px 12px;
        box-shadow: none;
        background: #23263a;
        margin-top: 0;
        z-index: 1002;
        display: none;
    }

    .nav-links-mobile .lang-dropdown.open .lang-menu {
        display: block;
        animation: fadeInLang 0.18s;
    }

    .nav-links-mobile .lang-btn {
        width: 100%;
        justify-content: flex-start;
        border-radius: 8px 8px 0 0;
    }
}
/* Animated Hero Visuals for Different Pages */

/* About Page - Team Visual */
.team-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.team-member {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 204, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 204, 0.3);
    animation: floatMember 3s ease-in-out infinite;
}

.team-member1 {
    animation-delay: 0s;
}

.team-member2 {
    animation-delay: 0.5s;
}

.team-member3 {
    animation-delay: 1s;
}

.member-icon {
    font-size: 36px;
    z-index: 2;
    position: relative;
}

.member-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.4) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.5), transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-line1 {
    width: 60px;
    top: 50%;
    left: calc(50% - 90px);
    transform: translateY(-50%);
}

.connection-line2 {
    width: 60px;
    top: 50%;
    right: calc(50% - 90px);
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

@keyframes floatMember {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes connectionFlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }
}

/* Contact Page - Contact Visual */
.contact-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.contact-icon {
    position: relative;
    font-size: 48px;
    animation: bounceIcon 2s ease-in-out infinite;
    z-index: 2;
}

.contact-icon1 {
    animation-delay: 0s;
}

.contact-icon2 {
    animation-delay: 0.3s;
}

.contact-icon3 {
    animation-delay: 0.6s;
}

.contact-wave {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rippleWave 2s ease-out infinite;
}

.contact-wave1 {
    animation-delay: 0s;
}

.contact-wave2 {
    animation-delay: 1s;
}

.contact-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes bounceIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rippleWave {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Privacy Page - Shield Visual */
.privacy-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.shield-icon {
    position: relative;
    font-size: 48px;
    animation: shieldRotate 4s ease-in-out infinite;
    z-index: 2;
}

.shield-icon1 {
    animation-delay: 0s;
}

.shield-icon2 {
    animation-delay: 0.4s;
}

.shield-icon3 {
    animation-delay: 0.8s;
}

.shield-ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shieldExpand 3s ease-in-out infinite;
}

.shield-ring1 {
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.shield-ring2 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.shield-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes shieldRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

@keyframes shieldExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Terms Page - Document Visual */
.terms-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.document-icon {
    position: relative;
    font-size: 48px;
    animation: documentFloat 3s ease-in-out infinite;
    z-index: 2;
}

.document-icon1 {
    animation-delay: 0s;
}

.document-icon2 {
    animation-delay: 0.4s;
}

.document-icon3 {
    animation-delay: 0.8s;
}

.document-line {
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.5), transparent);
    top: 50%;
    animation: documentLine 2s ease-in-out infinite;
}

.document-line1 {
    left: calc(50% - 100px);
    transform: translateY(-50%) rotate(-15deg);
    animation-delay: 0s;
}

.document-line2 {
    right: calc(50% - 100px);
    transform: translateY(-50%) rotate(15deg);
    animation-delay: 1s;
}

.document-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes documentFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes documentLine {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }
}

/* Cookies Page - Cookie Visual */
.cookies-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.cookie-icon {
    position: relative;
    font-size: 56px;
    animation: cookieSpin 3s ease-in-out infinite;
    z-index: 2;
}

.cookie-icon1 {
    animation-delay: 0s;
}

.cookie-icon2 {
    animation-delay: 0.3s;
}

.cookie-icon3 {
    animation-delay: 0.6s;
}

.cookie-crumb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 142, 83, 0.8);
    border-radius: 50%;
    animation: crumbFall 3s ease-in-out infinite;
}

.cookie-crumb1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.cookie-crumb2 {
    top: 30%;
    right: 35%;
    animation-delay: 1s;
}

.cookie-crumb3 {
    bottom: 25%;
    left: 40%;
    animation-delay: 2s;
}

.cookie-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 142, 83, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes cookieSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
}

@keyframes crumbFall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

/* About Page New Design Styles */
.about-mission-section {
    margin-bottom: 80px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-mission-text {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-mission-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3);
}

.about-feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.about-feature-content h4 {
    color: #00ffcc;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-feature-content p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
}

.about-values-section {
    margin-bottom: 80px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-value-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.about-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 204, 0.3);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.3;
}

.about-value-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-value-card p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
}

.about-features-section {
    margin-bottom: 80px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
}

.about-feature-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-feature-card h3 {
    color: #00ffcc;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-feature-card p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
}

.about-timeline-section {
    margin-bottom: 80px;
}

.about-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00ffcc, transparent);
}

.about-timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

.about-timeline-marker {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00ffcc;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
    border: 3px solid #0a0e27;
}

.about-timeline-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.about-timeline-content:hover {
    border-color: rgba(0, 255, 204, 0.3);
}

.about-timeline-content h4 {
    color: #00ffcc;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-timeline-content p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
}

.about-team-section {
    margin-bottom: 80px;
    text-align: center;
}

.about-team-intro {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.about-team-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.about-team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3);
}

.about-team-role {
    color: #00ffcc;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-team-card p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
}

.about-testimonials-section {
    margin-bottom: 40px;
}

.about-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-testimonial-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.about-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3);
}

.about-testimonial-text {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.about-testimonial-author {
    color: #00ffcc;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 900px) {
    .about-mission-features,
    .about-values-grid,
    .about-features-grid,
    .about-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-mission-section {
        padding: 30px 20px;
    }

    .about-section-title {
        font-size: 28px;
    }
}
