/* =============================================
   Instantour Homepage Styles
   File: Content/css/homepage.css
   ============================================= */

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

:root {
    --green: #2ecc8e;
    --green-dark: #1a9e6a;
    --green-light: #e8faf3;
    --green-mid: #c2f0da;
    --text: #0d1f17; /* darkened from #1a2e24 */
    --text-mid: #1e3d2a; /* darkened from #3d5a4a */
    --text-light: #3a5e4a; /* darkened from #6b8f7a */
    --border: #d4eee0;
    --bg: #ffffff;
    --bg2: #f5fdf8;
    --bg3: #edf9f2;
    --shadow: 0 4px 24px rgba(46, 204, 142, 0.10);
    --shadow-lg: 0 12px 48px rgba(46, 204, 142, 0.15);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── BOOTSTRAP OVERRIDES ──
   Bootstrap's container-fluid adds padding that fights our full-width sections.
   Scope overrides to .it-* elements only so other pages are unaffected.
*/
.it-hero,
.it-proof-bar,
.it-cta-band,
.it-footer {
    width: 100%;
    max-width: 100%;
    padding-left: 64px;
    padding-right: 64px;
}

    .it-hero * {
        box-sizing: border-box;
    }

    /* Prevent Bootstrap from shrinking our font sizes */
    .it-hero h1,
    .it-section-title,
    .it-cta-band h2 {
        font-family: 'Nunito', sans-serif !important;
    }

/* ── NAV ── */
nav.it-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border) !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 40px !important;
    gap: 16px !important;
    visibility: visible !important;
}

.it-nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.it-logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #2ecc8e;
    text-decoration: none;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
    white-space: nowrap;
}

.it-logo-img {
    display: none;
}

.it-logo-name {
    display: inline;
    font-size: 22px;
    font-weight: 800;
}

.it-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .it-nav-links a {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-mid);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 8px;
        transition: background 0.2s, color 0.2s;
        white-space: nowrap;
    }

        .it-nav-links a:hover {
            background: var(--bg3);
            color: var(--green-dark);
        }

.it-nav-right-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.it-nav-help {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

    .it-nav-help:hover {
        background: var(--bg3);
        color: var(--green-dark);
    }

.it-nav-user {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

    .it-nav-user:hover {
        background: var(--bg3);
        color: var(--green-dark);
    }

.it-nav-login {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

    .it-nav-login:hover {
        background: var(--bg3);
        color: var(--green-dark);
    }

.it-nav-register {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

    .it-nav-register:hover {
        background: var(--green-dark) !important;
        color: #fff !important;
    }

.it-dropdown-menu {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 6px;
    min-width: 180px;
}

.it-dropdown-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    border-radius: 6px;
    padding: 8px 12px;
}

    .it-dropdown-item:hover {
        background: var(--bg3);
        color: var(--green-dark);
    }

.it-logout-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

    .it-logout-btn:hover {
        color: #fff;
    }

/* Mobile hamburger */
.it-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

    .it-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-mid);
        border-radius: 2px;
        transition: all 0.2s;
    }

/* Mobile drawer */
.it-mobile-drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 199;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
}

    .it-mobile-drawer a {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-mid);
        text-decoration: none;
        padding: 10px 12px;
        border-radius: 8px;
        display: block;
        transition: background 0.2s, color 0.2s;
    }

        .it-mobile-drawer a:hover {
            background: var(--bg3);
            color: var(--green-dark);
        }

.it-mobile-logout {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
    width: 100%;
    transition: background 0.2s, color 0.2s;
}

    .it-mobile-logout:hover {
        background: var(--bg3);
        color: var(--green-dark);
    }

.it-mobile-drawer.open {
    display: flex;
}

/* ── HERO ── */
.it-hero {
    padding: 75px 64px 40px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 60%, var(--bg3) 100%);
    position: relative;
    overflow: hidden;
}

/* Inner wrapper constrains content to max 1300px centered */
.it-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.it-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(46, 204, 142, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.it-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.it-hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: itBlink 2s ease-in-out infinite;
}

@keyframes itBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.it-hero h1 {
    font-size: clamp(42px, 5vw, 64px) !important;
    font-weight: 800 !important;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 16px;
}

    .it-hero h1 .it-accent {
        color: var(--green-dark);
    }

.it-hero-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

    .it-hero-sub strong {
        color: var(--text);
        font-weight: 700;
    }

.it-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    align-items: center;
}

.it-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(46, 204, 142, 0.3);
}

    .it-btn-main:hover {
        background: var(--green-dark);
        transform: translateY(-2px);
    }

.it-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

    .it-btn-ghost:hover {
        border-color: var(--green);
        background: var(--green-light);
    }

.it-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-mid);
    text-decoration: none;
    border-radius: 8px;
    padding: 7px 12px;
    border: 1.5px solid var(--border);
    transition: background 0.2s, border-color 0.2s;
    font-size: 12px;
}

    .it-store-btn:hover {
        background: var(--green-light);
        border-color: var(--green);
    }

.it-store-icon {
    font-size: 14px;
    line-height: 1;
}

.it-store-text span {
    font-size: 9px;
    opacity: 0.6;
    display: block;
    line-height: 1;
}

.it-store-text strong {
    font-size: 12px;
    font-weight: 700;
}

/* ── TABLET MOCKUP ── */
.it-tablet-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: itFloatUp 0.8s ease both;
    width: 100%;
    padding: 20px 0;
}

@keyframes itFloatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.it-tablet-anim {
    animation: itFloat 4s ease-in-out infinite;
    width: 100%;
    max-width: 520px;
}

@keyframes itFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.it-tablet {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 11;
    background: #1a1a2e;
    border-radius: 18px;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 0 #c8c8c8, 0 4px 0 #b0b0b0, var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

    .it-tablet::before {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 40px;
        background: #d0d0d0;
        border-radius: 0 4px 4px 0;
    }

    .it-tablet::after {
        content: '';
        position: absolute;
        top: 60px;
        left: -7px;
        width: 4px;
        height: 60px;
        background: #d0d0d0;
        border-radius: 4px 0 0 4px;
        box-shadow: 0 70px 0 #d0d0d0;
    }

.it-tablet-camera {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a2a3e;
    border: 1px solid #444;
    z-index: 10;
}

.it-sv-screen {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 15px;
}

/* Real Street View photo fills the tablet screen */
.it-sv-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.it-sv-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 14px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.45) 100%);
}

.it-sv-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.it-sv-location-pill {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #1a2e24;
    display: flex;
    align-items: center;
    gap: 5px;
}

.it-sv-mode-pill {
    background: rgba(46, 204, 142, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}

.it-sv-stats {
    display: flex;
    gap: 8px;
    align-items: center;
}

.it-sv-stat-chip {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.it-sv-stat-val {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.it-sv-stat-lbl {
    font-size: 9px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.it-sv-pace-wrap {
    flex: 1;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 6px 10px;
}

.it-sv-pace-label {
    font-size: 9px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.it-sv-pace-bar {
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.it-sv-pace-fill {
    height: 100%;
    width: 68%;
    background: var(--green);
    border-radius: 3px;
    animation: itPaceAnim 2.5s ease-in-out infinite;
}

@keyframes itPaceAnim {
    0%, 100% {
        width: 60%;
    }

    50% {
        width: 78%;
    }
}

/* ── PROOF BAR ── */
.it-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.it-proof-item {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid var(--border);
}

    .it-proof-item:last-child {
        border-right: none;
    }

.it-proof-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--green-dark);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.it-proof-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── SECTIONS ── */
.it-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px;
}

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

.it-section-title {
    font-size: clamp(28px, 3.5vw, 44px) !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--text);
}

/* ── HOW IT WORKS ── */
.it-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.it-step-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .it-step-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
    }

.it-step-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--green-mid);
    line-height: 1;
    margin-bottom: 16px;
}

.it-step-svg {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    display: block;
}

.it-step-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.it-step-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
}

.it-step-connector {
    position: absolute;
    top: 44px;
    right: -20px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--green-dark);
    font-weight: 700;
}

/* ── MODES ── */
.it-modes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.it-mode-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

    .it-mode-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--green);
    }

/* Image wrapper — fixed height, crop to fill */
.image-wrapper {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: var(--green-light);
}

    .image-wrapper img,
    .card-img-top {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.3s;
    }

.it-mode-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Mode badge — top corner of image */
.it-mode-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.02em;
}

.it-mode-badge-tour {
    background: rgba(255,255,255,0.88);
    color: var(--green-dark);
}

.it-mode-badge-bike {
    background: rgba(26,158,106,0.88);
    color: #fff;
}

.it-mode-badge-run {
    background: rgba(46,204,142,0.88);
    color: #fff;
}

.it-mode-badge-breathe {
    background: rgba(100,180,220,0.88);
    color: #fff;
}

/* Card body */
.it-mode-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.it-mode-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text);
}

.it-mode-sub {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.it-mode-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.it-mode-cta {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}

.it-mode-card:hover .it-mode-cta {
    opacity: 1;
    transform: translateX(0);
}

/* Create Tour Banner */
.it-create-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-decoration: none;
    color: #fff;
    margin-top: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .it-create-banner:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.it-create-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.it-create-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.it-create-banner-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.it-create-banner-sub {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    max-width: 480px;
}

.it-create-banner-cta {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    background: rgba(255,255,255,0.2);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    padding: 10px 20px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.it-create-banner:hover .it-create-banner-cta {
    background: rgba(255,255,255,0.3);
}

/* ── QUICK START ── */
.it-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.it-quick-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    display: block;
}

    .it-quick-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
        border-color: var(--green);
    }

.it-quick-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.it-quick-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.it-quick-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--text);
}

.it-quick-sub {
    font-size: 12px;
    color: var(--text-light);
}

/* ── VS TABLE ── */
.it-vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.it-vs-card {
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
}

    .it-vs-card.them {
        background: var(--bg2);
    }

    .it-vs-card.us {
        background: linear-gradient(135deg, var(--green-light), var(--bg3));
        border-color: var(--green);
        box-shadow: var(--shadow);
    }

.it-vs-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.it-vs-card.them .it-vs-tag {
    color: var(--text-light);
}

.it-vs-card.us .it-vs-tag {
    color: var(--green-dark);
}

.it-vs-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.it-vs-card.them .it-vs-name {
    color: var(--text-light);
}

.it-vs-card.us .it-vs-name {
    color: var(--text);
}

.it-vs-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

    .it-vs-row:last-child {
        border: none;
    }

.it-vs-card.them .it-vs-row {
    color: var(--text-light);
}

.it-vs-card.us .it-vs-row {
    color: var(--text);
    font-weight: 600;
}

.it-tick {
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 800;
}

.it-cross {
    color: #ccc;
    font-size: 16px;
}

/* ── TESTIMONIALS ── */
.it-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.it-tcard {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.it-tcard-stars {
    color: var(--green-dark);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.it-tcard-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.it-tcard-author {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
}

/* ── CTA BAND ── */
.it-cta-band {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--bg3) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 48px;
    text-align: center;
}

    .it-cta-band h2 {
        font-size: clamp(30px, 4vw, 52px);
        font-weight: 800;
        letter-spacing: -1.5px;
        line-height: 1.05;
        margin-bottom: 12px;
        color: var(--text);
    }

        .it-cta-band h2 em {
            font-style: italic;
            color: var(--green-dark);
        }

    .it-cta-band p {
        font-size: 17px;
        color: var(--text-mid);
        margin-bottom: 32px;
        font-weight: 400;
    }

.it-email-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto 10px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

    .it-email-form input {
        flex: 1;
        border: none;
        outline: none;
        padding: 14px 18px;
        font-family: 'Nunito', sans-serif;
        font-size: 14px;
        color: var(--text);
        min-width: 0;
    }

        .it-email-form input::placeholder {
            color: var(--text-light);
        }

    .it-email-form button {
        background: var(--green);
        color: #fff;
        border: none;
        padding: 14px 22px;
        font-family: 'Nunito', sans-serif;
        font-weight: 800;
        font-size: 13px;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.2s;
    }

        .it-email-form button:hover {
            background: var(--green-dark);
        }

.it-cta-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
}

/* ── COMING SOON POPUP ── */
#itComingSoonPopup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

    #itComingSoonPopup.it-cs-show {
        opacity: 1;
    }

.it-cs-inner {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s;
}

#itComingSoonPopup.it-cs-show .it-cs-inner {
    transform: translateY(0);
}

.it-cs-x {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

    .it-cs-x:hover {
        background: var(--bg3);
        color: var(--text);
    }

.it-cs-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.it-cs-title {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.it-cs-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.it-cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(46,204,142,0.3);
}

    .it-cs-btn:hover {
        background: var(--green-dark);
        transform: translateY(-1px);
        color: #fff;
    }

.it-cta-mailto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    padding: 14px 36px;
    margin-bottom: 12px;
}

.it-cta-success {
    display: none;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 700;
    border: 1.5px solid var(--green);
    border-radius: 10px;
    padding: 14px 20px;
    max-width: 440px;
    margin: 0 auto 10px;
    background: #fff;
}

/* ── FOOTER ── */
.it-footer {
    padding: 40px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--bg);
}

.it-footer-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.it-footer-tag {
    font-size: 13px;
    color: var(--text-light);
}

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

    .it-footer-links a {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-mid);
        text-decoration: none;
        transition: color 0.2s;
    }

        .it-footer-links a:hover {
            color: var(--green-dark);
        }

/* ── LARGE SCREENS (27"+ monitors) ── */
@media (min-width: 1600px) {
    .it-hero {
        padding: 110px 80px 80px;
    }

    .it-hero-inner {
        max-width: 1400px;
        gap: 80px;
    }

    .it-hero h1 {
        font-size: 72px !important;
    }

    .it-hero-sub {
        font-size: 19px;
        max-width: 540px;
    }

    .it-tablet-anim {
        max-width: 520px;
    }

    .it-tablet {
        max-width: 520px;
    }

    .it-section {
        max-width: 1300px;
        padding: 100px 80px;
    }

    nav.it-nav {
        padding: 0 80px !important;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
    .it-nav {
        padding: 0 20px;
    }

    .it-nav-main-links {
        display: none;
    }

    .it-nav-right-links {
        display: none;
    }

    .it-hamburger {
        display: flex;
    }

    .it-hero {
        padding: 72px 24px 32px;
    }

    .it-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .it-hero-badge {
        margin-bottom: 14px;
    }

    .it-hero h1 {
        font-size: 36px !important;
        margin-bottom: 12px;
    }

    .it-hero-sub {
        font-size: 15px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .it-hero-btns {
        justify-content: center;
    }

    .it-hero-sub {
        max-width: 100%;
    }

    .it-hero-btns {
        justify-content: center;
    }

    .it-tablet-wrap {
        display: none;
    }

    .it-proof-bar {
        flex-wrap: wrap;
    }

    .it-proof-item {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .it-section {
        padding: 60px 20px;
    }

    .it-steps-grid, .it-testi-grid {
        grid-template-columns: 1fr;
    }

    .it-modes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .it-create-banner {
        flex-direction: column;
        text-align: center;
    }

    .it-create-banner-left {
        flex-direction: column;
        text-align: center;
    }

    .it-quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .it-vs-grid {
        grid-template-columns: 1fr;
    }

    .it-footer {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }

    .it-footer-links {
        justify-content: center;
    }
}
