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

:root {
    --primary: #0a2540;
    --accent: #f5a623;
    --accent2: #e8f0fe;
    --white: #ffffff;
    --light-bg: #f7f9fc;
    --mid-bg: #eef2f8;
    --text: #0a2540;
    --muted: #6b7a99;
    --border: rgba(10, 37, 64, 0.1);
    --font-display: "Poppins", sans-serif;
    --font-body: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 84px;
    background: rgba(10, 37, 64, 0.97);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 14px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 170px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    opacity: 0.88;
}

#home {
    min-height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 134px 5% 60px;
    position: relative;
    overflow: hidden;
}

#home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 50% 120%,
            rgba(245, 166, 35, 0.15) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 80% 40% at 80% -10%,
            rgba(99, 150, 255, 0.12) 0%,
            transparent 60%
        );
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
    position: relative;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #f5a623;
    border-radius: 50%;
    animation: blink 1.3s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 110px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 24px;
    position: relative;
}

.hero-headline .accent {
    color: var(--accent);
}
.hero-headline .italic {
    font-style: italic;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 40px;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
}

.btn-gold {
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition:
        transform 0.15s,
        opacity 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition:
        background 0.15s,
        border-color 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 820px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

.mockup-bar {
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-r {
    background: #ff5f57;
}
.dot-y {
    background: #ffbd2e;
}
.dot-g {
    background: #28ca42;
}

.mockup-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.auction-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    text-align: left;
}

.auction-card .player-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.auction-card .player-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.bid-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
}

.bid-amount {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
}

.bid-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.sold-badge {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.live-badge {
    background: rgba(245, 166, 35, 0.2);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.upcoming-badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.mockup-bottom {
    padding: 0 20px 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-pill {
    flex: 1;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
}

.stat-pill .val {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.stat-pill .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

section {
    padding: 90px 5%;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

#services {
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 36px 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
}

#feature1 {
    background: var(--white);
    padding: 90px 5%;
}

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

.split-grid.reverse {
    direction: rtl;
}
.split-grid.reverse > * {
    direction: ltr;
}

.check-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230A2540'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.live-panel {
    background: var(--primary);
    border-radius: 16px;
    padding: 24px;
    color: white;
    box-shadow: 0 30px 80px rgba(10, 37, 64, 0.2);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.live-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
}

.player-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.player-row:first-of-type {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.player-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a6e, #2563b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.player-info {
    flex: 1;
}
.player-nm {
    font-size: 14px;
    font-weight: 600;
    color: white;
}
.player-pos {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}
.player-bid {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

.overlay-mockup {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #111;
    box-shadow: 0 30px 80px rgba(10, 37, 64, 0.25);
}

.broadcast-bg {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a3a6e 0%, #0a2540 50%, #122040 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.broadcast-bg::after {
    content: "CRICKET LIVE";
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.broadcast-field {
    width: 80%;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.overlay-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.92);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 2px solid var(--accent);
    flex-wrap: wrap;
}

.ov-player {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: white;
}
.ov-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.ov-bid-label {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ov-bid {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
}
.ov-logo {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}

#features {
    background: var(--light-bg);
    padding: 90px 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 37, 64, 0.1);
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--mid-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feat-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.feat-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

#testimonials {
    background: var(--primary);
    padding: 90px 5%;
}

#testimonials .section-title {
    color: white;
}
#testimonials .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 28px;
}

.testi-quote {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
}

.testi-quote::before {
    content: "\201C";
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: -10px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c8811a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--primary);
}

.testi-name {
    font-size: 15px;
    font-weight: 600;
    color: white;
}
.testi-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

#prices {
    background: var(--white);
    padding: 90px 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.price-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.price-card.popular {
    border-color: var(--accent);
    border-width: 2px;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 36px;
    transform: rotate(35deg);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.price-plan {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-amount sup {
    font-size: 26px;
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
}
.price-cycle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.btn-price-primary {
    width: 100%;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn-price-primary:hover {
    opacity: 0.88;
}

.btn-price-outline {
    width: 100%;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
}

.btn-price-outline:hover {
    background: var(--light-bg);
}

#screenshots {
    background: var(--light-bg);
    padding: 90px 5%;
}

.screenshots-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.screen-card {
    background: var(--primary);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    letter-spacing: 0.05em;
}

.screen-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(245, 166, 35, 0.05) 0%,
        transparent 60%
    );
}

#team {
    background: var(--white);
    padding: 90px 5%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.team-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--muted);
}

#trusted {
    background: var(--light-bg);
    padding: 70px 5%;
    border-top: 1px solid var(--border);
}

.trusted-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.brand-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: -0.3px;
    transition: color 0.2s;
}

.brand-pill:hover {
    color: var(--primary);
}

#contact {
    background: var(--primary);
    padding: 90px 5%;
}

#contact .section-title {
    color: white;
}
#contact .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    padding-top: 8px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-title {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    font-size: 15px;
}
.info-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

footer {
    background: #071829;
    padding: 32px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 92px;
    width: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 28px;
    justify-content: center;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1100px) {
    .features-grid,
    .testi-grid,
    .pricing-grid,
    .team-grid,
    .screenshots-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-grid.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 820px) {
    nav {
        padding: 0 4%;
        height: 74px;
    }

    .nav-links {
        display: none;
    }

    .hero-headline {
        font-size: clamp(44px, 14vw, 78px);
        letter-spacing: -1px;
    }

    .nav-logo {
        gap: 0;
    }

    .nav-logo-icon {
        width: 120px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .mockup-body {
        grid-template-columns: 1fr;
    }

    .mockup-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .services-grid,
    .features-grid,
    .testi-grid,
    .pricing-grid,
    .team-grid,
    .screenshots-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .nav-logo-icon {
        width: 96px;
    }

    section,
    #feature1,
    #features,
    #testimonials,
    #prices,
    #screenshots,
    #team,
    #contact {
        padding: 72px 5%;
    }

    #home {
        padding-top: 120px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
    }

    .mockup-bottom {
        grid-template-columns: 1fr;
    }

    .footer-logo img {
        height: 72px;
    }
}
