@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    --red: #E8192C;
    --red-dark: #C0131F;
    --red-light: #FF3347;
    --black: #0A0A0F;
    --dark: #111118;
    --dark-2: #1A1A24;
    --dark-3: #22222F;
    --dark-card: #16161F;
    --grey: #6B7280;
    --grey-light: #9CA3AF;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.08);
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-bg: #F4F5F7;
    --text-muted: #8B949E;
    --green: #00C896;
    --yellow: #F5A623;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.24);
    --shadow-red: 0 8px 32px rgba(232, 25, 44, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar.light-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.navbar.light-nav .nav-link {
    color: var(--dark);
}

.navbar.light-nav .nav-link:hover {
    color: var(--red);
}

.navbar.light-nav .logo-text {
    color: var(--dark);
}

.navbar.light-nav .hamburger span {
    background: var(--dark);
}

/* .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--red);
} */

.logo-icon {
    width: 100px;
    height: 60px;
    background: transparent;
    /* agar red background nahi chahiye */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ya cover */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.nav-link:hover {
    color: var(--red);
}

.nav-link.active {
    color: var(--red);
}

.nav-link svg {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown a:hover {
    background: rgba(232, 25, 44, 0.12);
    color: var(--red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-red {
    background: var(--red);
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 25, 44, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
}

.btn-outline-red:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TICKER ===== */
.ticker-bar {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
}

.ticker-label {
    flex-shrink: 0;
    background: var(--red);
    color: white;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-display);
    position: relative;
    z-index: 2;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    border-left: 12px solid var(--red);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

.ticker-track {
    display: flex;
    gap: 50px;
    animation: ticker-scroll 30s linear infinite;
    padding-left: 40px;
    white-space: nowrap;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 500;
}

.ticker-symbol {
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.85rem;
}

.ticker-price {
    color: rgba(255, 255, 255, 0.7);
}

.ticker-change.up {
    color: var(--green);
}

.ticker-change.down {
    color: var(--red-light);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--border);
    border-radius: 50%;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232, 25, 44, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 25, 44, 0.06) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 25, 44, 0.12);
    border: 1px solid rgba(232, 25, 44, 0.25);
    color: var(--red-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    width: fit-content;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--red);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.play-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
    margin-left: 2px;
}

.btn-play:hover .play-icon {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

.btn-play:hover {
    color: var(--red);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stat {}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-num span {
    color: var(--red);
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-chart-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hero-chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.chart-coin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #F7931A, #FFC152);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    font-family: var(--font-display);
}

.coin-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.coin-pair {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.chart-price {
    text-align: right;
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}

.price-change {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
}

.mini-chart {
    height: 100px;
    position: relative;
    margin-bottom: 20px;
}

.mini-chart svg {
    width: 100%;
    height: 100%;
}

.chart-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric {
    background: var(--dark-3);
    border-radius: 10px;
    padding: 12px;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.floating-cards {
    position: absolute;
    top: -20px;
    right: -20px;
}

.float-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 12px;
    animation: float 4s ease-in-out infinite;
}

.float-card:nth-child(2) {
    animation-delay: -2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.float-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.float-dot.green {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.float-dot.red {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

.float-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.float-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 5%;
}

.section-dark {
    background: var(--dark);
}

.section-dark-2 {
    background: var(--dark-2);
}

.section-light {
    background: var(--light-bg);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-title.dark {
    color: var(--white);
}

.section-title.light {
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin-top: 16px;
}

.section-subtitle.dark {
    color: rgba(255, 255, 255, 0.55);
}

.section-subtitle.light {
    color: var(--grey);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}

.about-img-placeholder {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-img-icon {
    position: relative;
    z-index: 1;
}

.about-img-icon svg {
    width: 80px;
    height: 80px;
    fill: rgba(232, 25, 44, 0.3);
}

.about-badge-card {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: var(--red);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-red);
    min-width: 160px;
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 4px;
}

.about-content {}

.about-list {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(232, 25, 44, 0.15);
    border: 1px solid rgba(232, 25, 44, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    display: flex;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    group: true;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(232, 25, 44, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 25, 44, 0.1);
    border: 1px solid rgba(232, 25, 44, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
}

.service-card:hover .service-icon {
    background: var(--red);
    border-color: var(--red);
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(232, 25, 44, 0.1), rgba(232, 25, 44, 0.05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--grey);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.offer-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offer-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.offer-item:hover {
    border-color: rgba(232, 25, 44, 0.3);
    background: rgba(232, 25, 44, 0.05);
}

.offer-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(232, 25, 44, 0.2);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.offer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.6;
}

.offer-visual {
    position: relative;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    overflow: hidden;
}

.offer-visual::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 25, 44, 0.15) 0%, transparent 70%);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(232, 25, 44, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--red);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: rgba(232, 25, 44, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--red);
}

.faq-item.active .faq-icon svg {
    stroke: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--grey);
    font-size: 0.93rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(232, 25, 44, 0.2);
    transform: translateY(-4px);
}

.quote-icon {
    color: var(--red);
    font-size: 3rem;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

.stars {
    color: #F5A623;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #8B0000 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-white {
    background: white;
    color: var(--red);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    border-color: white;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 80px 5% 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 20px 0 28px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--red);
}

/* ===== MARKETS TABLE ===== */
.markets-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.markets-table th {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.markets-table td {
    padding: 18px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.markets-table tr:last-child td {
    border-bottom: none;
}

.markets-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.market-coin-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.market-coin-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    font-family: var(--font-display);
}

.market-coin-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.market-coin-sym {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

.up-text {
    color: var(--green);
    font-weight: 600;
}

.down-text {
    color: var(--red-light);
    font-weight: 600;
}

.market-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.market-badge.up {
    background: rgba(0, 200, 150, 0.12);
    color: var(--green);
}

.market-badge.down {
    background: rgba(232, 25, 44, 0.12);
    color: var(--red-light);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 25, 44, 0.08);
    border: 1px solid rgba(232, 25, 44, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
}

.contact-label {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-value {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: var(--light-bg);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 25, 44, 0.08);
}

.form-control::placeholder {
    color: var(--grey-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-visual {
    background: var(--dark);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232, 25, 44, 0.15) 0%, transparent 70%);
}

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--white);
}

.auth-form-container {
    width: 100%;
    max-width: 420px;
}

.auth-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
    color: var(--grey-light);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-link {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

.terms-text {
    font-size: 0.8rem;
    color: var(--grey);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-avatar::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 80px;
    height: 80px;
    background: rgba(232, 25, 44, 0.08);
    border-radius: 50%;
}

.team-avatar-icon {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(232, 25, 44, 0.3);
}

.team-info {
    padding: 24px 20px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-role {
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--grey);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: var(--dark);
    padding: 160px 5% 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232, 25, 44, 0.1) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.breadcrumb .current {
    color: var(--red);
    font-size: 0.85rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    max-width: 560px;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    height: 400px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.02) 50px, rgba(255, 255, 255, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.02) 50px, rgba(255, 255, 255, 0.02) 51px);
}

.map-pin {
    position: relative;
    z-index: 1;
}

.map-pin svg {
    width: 40px;
    height: 40px;
    stroke: var(--red);
    fill: rgba(232, 25, 44, 0.1);
    stroke-width: 1.5;
}

.map-label {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--red);
    padding: 50px 5%;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.stats-strip-item {
    text-align: center;
}

.stats-strip-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-strip-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .offer-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-2);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 12px 16px;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: rgba(232, 25, 44, 0.1);
    }

    .dropdown {
        position: static;
        transform: none;
        background: var(--dark-3);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        margin-top: 4px;
    }

    .nav-item:hover .dropdown {
        transform: none;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid,
    .offer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-badge-card {
        right: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .auth-page {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        display: none;
    }

    .auth-form-side {
        padding: 40px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .section {
        padding: 70px 5%;
    }

    .logo-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
    }
}
