:root {
    --bg-color: #000000;
    --bg-secondary: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.06);
    --accent-color: #cbfb45;
    /* Lime green from MClient screenshot */
    --accent-hover: #e0fca3;
    --accent-glow: rgba(203, 251, 69, 0.3);

    --text-main: #ededed;
    --text-muted: #888888;

    --border-color: rgba(255, 255, 255, 0.1);
    --panel-border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at top right, #0a1103, var(--bg-color));
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--accent-color);
}

/* Background Effects (Subtle Grid & Glow) */
.bg-glow {
    position: fixed;
    top: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(203, 251, 69, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

/* Glass Panel Utilities */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-glow:hover {
    box-shadow: 0 8px 30px rgba(203, 251, 69, 0.5);
}

/* Header (Floating Pill matching Vercel/MClient) */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1000px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    padding: 12px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-muted);
}

.lang-selector:hover {
    color: #fff;
}

.flag-icon {
    border-radius: 2px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.login-btn:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 60px;
    text-align: center;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid var(--panel-border);
}

.badge-accent {
    background-color: rgba(203, 251, 69, 0.1);
    color: var(--accent-color);
    border-color: rgba(203, 251, 69, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 15px;
}

.platform-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tab-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 22, 18, 0.9) 0%, rgba(10, 12, 8, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-card-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(203, 251, 69, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-card-content {
    flex: 1;
    z-index: 2;
    padding-right: 20px;
}

.hero-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-card-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.hero-card-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.mockup-side-panel {
    width: 240px;
    height: 100%;
    position: absolute;
    right: -48px;
    top: -50px;
    bottom: -50px;
    background: #0d0d0d;
    border-left: 1px solid #222;
    transform: skewX(-5deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.connected-badge-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(5deg);
    animation: badge-breathe 4s ease-in-out infinite alternate;
}

@keyframes badge-breathe {
    0% {
        transform: skewX(5deg) scale(0.98);
        filter: drop-shadow(0 5px 15px rgba(203, 251, 69, 0.1));
    }

    100% {
        transform: skewX(5deg) scale(1.02);
        filter: drop-shadow(0 15px 30px rgba(203, 251, 69, 0.2));
    }
}

/* Premium Shield Animations */
.premium-shield-anim {
    transform-origin: 75px 55px;
}

.shield-outline {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-shield 2s ease-out forwards;
}

.shield-lock-body {
    opacity: 0;
    transform: translateY(10px);
    animation: lock-appear 0.5s ease-out 1.2s forwards;
}

.shield-lock-shackle {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: draw-shackle 0.5s ease-out 1.4s forwards;
}

.shield-glow-line {
    opacity: 0;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: shield-glow-pass 4s linear infinite;
    animation-delay: 2s;
}

.badge-ring {
    transform-origin: 75px 55px;
}

.badge-ring.ring-1 {
    animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.badge-ring.ring-2 {
    animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation-delay: 1.5s;
}

@keyframes draw-shield {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-shackle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes lock-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shield-glow-pass {
    0% {
        opacity: 0;
        stroke-dashoffset: 200;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        stroke-dashoffset: 0;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Features Section (Why Us) */
.features-section {
    padding: 100px 0;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-visual {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.globe-animation {
    width: 300px;
    height: 300px;
    position: relative;
    perspective: 1000px;
}

.globe-core {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(203, 251, 69, 0.4);
}

.globe-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(203, 251, 69, 0.3);
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

.globe-ring:nth-child(1) {
    transform: rotateY(0deg) rotateX(70deg);
}

.globe-ring:nth-child(2) {
    transform: rotateY(60deg) rotateX(70deg);
    animation-delay: -3s;
}

.globe-ring:nth-child(3) {
    transform: rotateY(120deg) rotateX(70deg);
    animation-delay: -6s;
}

@keyframes spin {
    to {
        transform: rotateY(360deg) rotateX(70deg);
    }
}

.features-list {
    position: relative;
    padding-left: 60px;
}

.vertical-title {
    position: absolute;
    left: 0;
    top: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.05);
    font-size: 24px;
    letter-spacing: 4px;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    padding: 16px 24px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(203, 251, 69, 0.3);
    color: var(--text-main);
    background: var(--card-bg-hover);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    padding: 30px;
    text-align: center;
    min-width: 200px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(203, 251, 69, 0.4);
    background: var(--card-bg-hover);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(203, 251, 69, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-color: rgba(203, 251, 69, 0.3);
}

.pricing-card.best-value {
    background: rgba(203, 251, 69, 0.1);
    border-color: var(--accent-color);
}

.discount-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-amount span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(203, 251, 69, 0.3);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-btn:hover {
    background: var(--card-bg-hover);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-content p {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.icon {
    transition: transform 0.3s;
    color: var(--text-muted);
}

/* Locations */
.locations-section {
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.location-item {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.location-item:hover {
    background: var(--card-bg-hover);
    transform: translateY(-2px);
    border-color: rgba(203, 251, 69, 0.3);
}

.location-item span:nth-child(2) {
    flex: 1;
    font-size: 14px;
}

.ping {
    font-size: 12px;
    font-weight: 600;
}

.ping.excellent {
    color: var(--accent-color);
}

.ping.good {
    color: #f5a623;
}

.ping.fair {
    color: #d0021b;
}

/* Reviews */
.reviews-section {
    padding: 80px 0 120px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    padding: 24px;
    transition: border-color 0.3s;
}

.review-card:hover {
    border-color: rgba(203, 251, 69, 0.3);
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-color);
    border: 1px solid var(--panel-border);
}

.review-meta h4 {
    font-size: 15px;
}

.review-meta span {
    font-size: 12px;
    color: var(--text-muted);
}

.review-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-link {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.review-link:hover {
    color: var(--accent-color);
}

/* SVG Animations */
.hover-pulse-icon:hover .svg-anim-settings {
    animation: spin 4s linear infinite;
}

.hover-pulse-icon:hover .svg-anim-bounce {
    animation: bounce 0.5s ease-in-out infinite alternate;
}

.hover-pulse-icon:hover .svg-anim-dash {
    animation: dash-move 1.5s linear infinite;
}

.hover-pulse-icon:hover .svg-anim-pulse {
    animation: svg-pulse 1s ease-in-out infinite;
}

.hover-pulse-icon:hover .svg-anim-shield {
    animation: shield-glow 1.5s ease-in-out infinite alternate;
}

.hover-pulse-icon:hover .svg-anim-heart {
    animation: heart-beat 1s ease-in-out infinite;
}

.hover-pulse-icon:hover .svg-anim-star {
    animation: star-spin 2s ease-in-out infinite;
}

.hover-pulse-icon:hover .svg-anim-eye {
    animation: eye-blink 3s linear infinite;
}

.svg-hover-anim:hover {
    transform: translateY(-3px) scale(1.05);
}

@keyframes dash-move {
    0% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(-2px);
    }
}

@keyframes svg-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 5px var(--accent-color));
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shield-glow {
    from {
        filter: drop-shadow(0 0 2px var(--accent-color));
    }

    to {
        filter: drop-shadow(0 0 10px var(--accent-color));
    }
}

@keyframes heart-beat {

    0%,
    100% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.15);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }
}

@keyframes star-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes eye-blink {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}


/* Footer */
.footer {
    border-top: 1px solid var(--panel-border);
    padding: 80px 0 40px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-left {
    max-width: 350px;
}

.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.footer-column a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-newsletter {
    padding: 24px;
    border-radius: 16px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(203, 251, 69, 0.3);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Page Titles and Content (Policy Page) */
.page-content {
    padding: 140px 0 100px;
}

/* more padding because header is fixed now */
.text-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 20px;
}

.policy-content {
    color: var(--text-muted);
}

.policy-content h2 {
    color: var(--text-main);
    font-size: 24px;
    margin: 40px 0 16px;
}

.policy-content p {
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .d-none-mobile {
        display: none;
    }

    .header {
        width: calc(100% - 32px);
        padding: 12px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

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

    .hero-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .mockup-phone {
        display: none;
    }

    .footer-container {
        flex-direction: column;
    }
}