@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
    --primary-color: #FF5C00;
    --primary-light: #FFF1E9;
    --primary-dark: #E65000;
    --text-color: #111111;
    --text-secondary: #555555;
    --background: #FFFFFF;
    --background-light: #F9FAFB;
    --background-dark: #1D1D1D;
    --border-color: #E5E5E5;
    --radius: 12px;
    --button-radius: 50px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --header-height: 70px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    background-color: var(--background);
    padding-top: var(--header-height);
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; }
h1 { font-size: 3rem;   margin-bottom: 0.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 1rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

section { padding: 70px 0; }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--button-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-outline:hover {
    background-color: var(--primary-light);
}

.btn-dark {
    background-color: var(--background-dark);
    color: #fff;
}
.btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
}

.logo-mark {
    width: 38px; height: 38px;
    background-color: var(--primary-color);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 92, 0, 0.25);
}

/* Desktop Nav */
.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: color 0.2s;
}
.main-nav a:hover { color: var(--primary-color); }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px; height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.99);
    padding: 20px;
    flex-direction: column;
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul { padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--border-color); }
.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary-color); }
.mobile-cta { margin-top: 24px; }

body.menu-open { overflow: hidden; }

/* ── Hero ── */
.hero {
    background-color: var(--background);
    padding: 60px 0 0;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 92, 0, 0.3);
    background: var(#FFFFFF);
    border-radius: var(--button-radius);
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge .pulse {
    width: 7px; height: 7px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.6); }
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.08;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--primary-color);
}

.hero-content p {
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero mockup */
.hero-visual {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
    background: #f3f4f6;
}

.mockup-bar {
    background: #e9eaec;
    border-bottom: 1px solid var(--border-color);
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.mockup-bar .url {
    margin-left: 10px;
    flex: 1;
    background: #fff;
    border-radius: 6px;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    color: #999;
    max-width: 280px;
    border: 1px solid var(--border-color);
}

.mockup-content {
    display: grid;
    grid-template-columns: 155px 1fr;
    min-height: 280px;
    background: #fff;
}

.mockup-sidebar {
    background: #f9fafb;
    border-right: 1px solid var(--border-color);
    padding: 18px 0;
}

.mock-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.mock-logo-icon {
    width: 20px; height: 20px;
    background: var(--primary-color);
    border-radius: 5px;
    flex-shrink: 0;
}

.mock-logo-text {
    width: 55px; height: 7px;
    background: #ddd;
    border-radius: 99px;
}

.mock-nav-item {
    height: 7px;
    border-radius: 99px;
    background: #e5e7eb;
    margin: 10px 14px;
}

.mock-nav-item.active {
    background: rgba(255, 92, 0, 0.25);
}

.mockup-main {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-card {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: 58px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mock-card-val {
    width: 48px; height: 9px;
    background: #ccc;
    border-radius: 99px;
}

.mock-card-val.orange { background: rgba(255, 92, 0, 0.35); }

.mock-card-lbl {
    width: 65px; height: 6px;
    background: #e5e7eb;
    border-radius: 99px;
}

.mock-table {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
}

.mock-row {
    height: 26px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
}
.mock-row:last-child { border-bottom: none; }

.mock-cell {
    height: 6px;
    border-radius: 99px;
    background: #e0e0e0;
}
.mock-cell.short  { width: 36px; }
.mock-cell.mid    { width: 75px; }
.mock-cell.long   { width: 105px; }
.mock-cell.accent { background: rgba(255, 92, 0, 0.35); width: 48px; }

/* ── Features ── */
.features {
    padding: 80px 0;
    background-color: var(--background-light);
}

.features .section-header p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background-color: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 32px 28px;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 92, 0, 0.25);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Stats Strip ── */
.stats-strip {
    background-color: var(--background-dark);
    padding: 64px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
    max-width: 100%;
}

.stat-item .value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* ── CTA Banner ── */
.cta-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

.cta-box {
    max-width: 640px;
    margin: 0 auto;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 56px 44px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-color);
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
    color: var(--text-color);
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background-color: var(--background-dark);
    color: #fff;
    padding: 50px 0 28px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1rem;
}

.footer-logo .mark {
    width: 30px; height: 30px;
    background: var(--primary-color);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--primary-color); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

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

.social-links a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    text-decoration: none;
}
.social-links a:hover { color: var(--primary-color); }

/* Coming Soon Banner */
.coming-soon-banner {
    display: inline-block;
    background-color: var(--background-dark);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 12px 32px;
    border-radius: var(--button-radius);
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.12);
    animation: fadeUp 0.4s ease 0.05s both;
}


/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge    { animation: fadeUp 0.4s ease 0.1s both; }
.hero-content h1  { animation: fadeUp 0.4s ease 0.2s both; }
.hero-content > p { animation: fadeUp 0.4s ease 0.3s both; }
.hero-actions  { animation: fadeUp 0.4s ease 0.4s both; }
.hero-visual   { animation: fadeUp 0.5s ease 0.5s both; }

/* ── Responsive ── */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-nav      { display: flex; }
    body.menu-open   { overflow: hidden; }

    section { padding: 50px 0; }
    .hero   { padding: 40px 0 0; }
    .hero-content h1 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: 1fr 1fr; padding: 44px 20px; }
    .cta-box { padding: 36px 24px; }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-nav ul { justify-content: center; }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .mockup-sidebar { display: none; }
    .mockup-content { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.5rem; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .stat-item .value { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
}