/* ========================================
   RINVOX — Field Operations CRM
   Brand Colors from rinvox.com
   ======================================== */

:root {
    /* Brand Colors */
    --teal-primary: #108978;
    --teal-dark: #006356;
    --teal-light: #2aa895;
    --teal-bg: #f1fdfa;
    --teal-bg-soft: #f7fffd;
    --gold: #FDB500;
    --gold-light: #ffe066;
    --gold-dark: #d49a00;

    /* Neutrals */
    --dark: #1a1a2e;
    --dark-text: #2d3436;
    --gray-700: #353535;
    --gray-600: #555;
    --gray-400: #999;
    --gray-300: #ccc;
    --gray-200: #e8e8e8;
    --gray-100: #f5f5f5;
    --white: #ffffff;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-teal: 0 8px 30px rgba(16,137,120,0.25);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-primary);
    color: var(--white);
    border-color: var(--teal-primary);
}
.btn--primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.btn--outline {
    background: transparent;
    color: var(--teal-primary);
    border-color: var(--teal-primary);
}
.btn--outline:hover {
    background: var(--teal-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--dark-text);
    border-color: transparent;
    padding-left: 0;
}
.btn--ghost:hover { color: var(--teal-primary); }

.btn--white {
    background: var(--white);
    color: var(--teal-primary);
    border-color: var(--white);
    font-weight: 700;
}
.btn--white:hover {
    background: var(--teal-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo-img {
    height: 36px;
}

.nav__menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
    position: relative;
}
.nav__link:hover,
.nav__link.active {
    color: var(--teal-primary);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-primary);
    transition: width 0.3s;
}
.nav__link:hover::after { width: 100%; }

.nav__actions {
    display: flex;
    gap: 12px;
}
.nav__actions .btn { padding: 8px 20px; font-size: 0.85rem; }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-text);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--teal-bg-soft) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    top: 0;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(16,137,120,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(16,137,120,0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-primary);
    margin-bottom: 24px;
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.hero__stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
}
.hero__stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Phone mockup */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__phone {
    position: relative;
    z-index: 2;
}

.hero__phone-frame {
    width: 300px;
    background: #000;
    border-radius: 36px;
    padding: 8px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.hero__phone-screen {
    border-radius: 28px;
    overflow: hidden;
}

.hero__phone-screenshot {
    width: 100%;
    display: block;
}

/* Old phone mockup CSS removed — now using screenshot images */

/* Floating badges */
.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark-text);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}
.hero__float--chat { top: 15%; right: 0; animation-delay: 0s; }
.hero__float--chat svg { stroke: var(--teal-primary); }
.hero__float--gps { bottom: 25%; left: -10px; animation-delay: 2s; }
.hero__float--gps svg { stroke: var(--gold); }
.hero__float--schedule { bottom: 5%; right: 10px; animation-delay: 4s; }
.hero__float--schedule svg { stroke: var(--teal-primary); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   TRUSTED BY
   ======================================== */
.trusted {
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trusted__label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 24px;
}
.trusted__logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trusted__logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16,137,120,0.08);
    color: var(--teal-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FEATURES
   ======================================== */
.features {
    padding: var(--section-pad) 0;
}

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

.feature-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }

.feature-card--highlight {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    border-color: transparent;
    color: var(--white);
}
.feature-card--highlight::before { display: none; }
.feature-card--highlight:hover {
    box-shadow: var(--shadow-teal);
}
.feature-card--highlight .feature-card__title { color: var(--white); }
.feature-card--highlight .feature-card__desc { color: rgba(255,255,255,0.85); }
.feature-card--highlight .feature-card__link { color: var(--gold); }
.feature-card--highlight .feature-card__icon { background: rgba(255,255,255,0.15); }
.feature-card--highlight .feature-card__icon svg { stroke: var(--white); }

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card__icon--teal { background: var(--teal-bg); }
.feature-card__icon--teal svg { stroke: var(--teal-primary); }
.feature-card__icon--gold { background: #fff8e0; }
.feature-card__icon--gold svg { stroke: var(--gold-dark); }

.feature-card__title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.feature-card__desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.feature-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal-primary);
    transition: gap 0.2s;
}
.feature-card__link:hover { color: var(--teal-dark); }

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: var(--section-pad) 0;
    background: var(--teal-bg-soft);
}

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

.step {
    text-align: center;
    position: relative;
}
.step__number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(16,137,120,0.08);
    line-height: 1;
    margin-bottom: 16px;
}
.step__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}
.step__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.step__desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253,181,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner__content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-banner__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-banner__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: var(--section-pad) 0;
}

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

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}
.testimonial-card__role {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    padding: var(--section-pad) 0;
    background: var(--teal-bg-soft);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card--popular {
    border: 2px solid var(--teal-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}
.pricing-card--popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card__name {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.pricing-card__desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pricing-card__price {
    margin-bottom: 8px;
}
.pricing-card__amount {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}
.pricing-card__period {
    font-size: 1rem;
    color: var(--gray-400);
}
.pricing-card__users {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 32px;
}
.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.pricing-card__features li:last-child { border-bottom: none; }

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: var(--section-pad) 0;
}

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

.contact__desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 32px;
}

.contact__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text);
}

.contact__form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form__group { margin-bottom: 20px; }
.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}
.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--gray-100);
    transition: all 0.2s;
}
.form__input:focus {
    outline: none;
    border-color: var(--teal-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16,137,120,0.1);
}
.form__textarea {
    min-height: 100px;
    resize: vertical;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo { height: 32px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer__tagline {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.footer__desc {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer__title {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer__links a:hover { color: var(--teal-light); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
}

/* ========================================
   PRODUCT SHOWCASE
   ======================================== */
.product-showcase { padding: 100px 0; background: var(--gray-50, #f9fafb); }
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.showcase__item--large { grid-column: span 2; }
.showcase__item--mobile { justify-self: center; max-width: 320px; }
.showcase__frame--desktop { background: #1a1a2e; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.showcase__frame-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: #2d2d44; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green { background: #28c840; }
.showcase__frame-url { margin-left: 12px; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.showcase__img { width: 100%; display: block; }
.showcase__frame--phone { background: #000; border-radius: 36px; padding: 12px; max-width: 280px; margin: 0 auto; box-shadow: 0 25px 60px rgba(0,0,0,0.2); }
.showcase__frame--phone .showcase__img { border-radius: 24px; }
.showcase__caption { margin-top: 20px; }
.showcase__caption h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark, #353535); margin-bottom: 6px; }
.showcase__caption p { font-size: 0.9rem; color: #6b7280; line-height: 1.5; }

/* Hero phone frame */
/* hero phone frame styles defined above */

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero__title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card--popular { transform: scale(1.02); }
    .pricing-card--popular:hover { transform: scale(1.02) translateY(-4px); }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }
    .showcase__grid { grid-template-columns: 1fr; }
    .showcase__item--large { grid-column: span 1; }

    .nav__menu,
    .nav__actions { display: none; }
    .nav__toggle { display: block; }

    .nav__menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__title { font-size: 2.2rem; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__cta { justify-content: center; flex-wrap: wrap; }
    .hero__stats { justify-content: center; }
    .hero__visual { display: none; }

    .features__grid,
    .steps,
    .testimonials__grid,
    .pricing__grid { grid-template-columns: 1fr; }

    .pricing-card--popular { transform: none; }
    .pricing-card--popular:hover { transform: translateY(-4px); }

    .contact__grid {
        grid-template-columns: 1fr;
    }
    .section-title { text-align: center !important; }

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

    .section-title { font-size: 1.8rem; }
    .cta-banner__title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.8rem; }
    .hero__stats { flex-wrap: wrap; gap: 16px; }
    .footer__grid { grid-template-columns: 1fr; }
}

/* ========================================
   PHONE UI (Hero)
   ======================================== */
.phone-ui { padding: 0; }
.phone-ui__header { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid #f3f4f6; }
.phone-ui__status-bar { display: flex; gap: 0; border-bottom: 1px solid #f3f4f6; }
.phone-ui__tab { flex: 1; text-align: center; padding: 10px 8px; font-size: 0.7rem; font-weight: 600; color: #9ca3af; }
.phone-ui__tab--active { color: #108978; border-bottom: 2px solid #108978; }
.phone-ui__cards { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.phone-ui__card { background: #f9fafb; border: 1px solid #f3f4f6; border-radius: 10px; padding: 12px; }

/* ========================================
   CSS DASHBOARD MOCKUP (Showcase)
   ======================================== */
.showcase-browser { max-width: 960px; margin: 0 auto 48px; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.12); border: 1px solid #e5e7eb; }
.showcase-browser__bar { display: flex; align-items: center; gap: 6px; padding: 10px 16px; background: #f9fafb; border-bottom: 1px solid #e5e7eb; }
.showcase-browser__url { margin-left: 12px; font-size: 0.72rem; color: #9ca3af; background: #fff; border: 1px solid #e5e7eb; border-radius: 6px; padding: 4px 12px; flex: 1; max-width: 300px; }
.css-dashboard { display: flex; min-height: 360px; background: #fff; }
.css-sidebar { width: 180px; border-right: 1px solid #f3f4f6; background: #fafafa; flex-shrink: 0; }
.css-sidebar__nav { padding: 12px 8px; display: flex; flex-direction: column; gap: 2px; }
.css-sidebar__item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 500; color: #6b7280; cursor: default; }
.css-sidebar__item--active { background: #e0f7f2; color: #108978; font-weight: 600; }
.css-main { flex: 1; padding: 20px; overflow: hidden; }
.css-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.css-filter { font-size: 0.7rem; padding: 5px 12px; border: 1px solid #e5e7eb; border-radius: 6px; color: #6b7280; background: #fff; }
.css-columns { display: flex; gap: 16px; }
.css-column { flex: 1; min-width: 0; }
.css-column__header { font-size: 0.8rem; font-weight: 700; padding: 8px 12px; border-radius: 8px; margin-bottom: 10px; }
.css-column__header--teal { background: #e0f7f2; color: #108978; }
.css-column__header--gold { background: #fff8e0; color: #b45309; }
.css-column__header--gray { background: #f3f4f6; color: #6b7280; }
.css-jobcard { background: #fff; border: 1px solid #f3f4f6; border-radius: 8px; padding: 12px; margin-bottom: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.css-jobcard--done { opacity: 0.6; }
.css-jobcard__id { font-size: 0.7rem; font-weight: 700; color: #108978; margin-bottom: 4px; }
.css-jobcard__name { font-size: 0.82rem; font-weight: 700; color: #353535; margin-bottom: 2px; }
.css-jobcard__meta { font-size: 0.7rem; color: #6b7280; margin-bottom: 4px; }
.css-jobcard__addr { font-size: 0.65rem; color: #9ca3af; }

.showcase-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.showcase-feature { text-align: center; padding: 32px 20px; border-radius: 12px; background: #fff; border: 1px solid #f3f4f6; }
.showcase-feature__icon { width: 48px; height: 48px; background: #f1fdfa; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.showcase-feature h3 { font-size: 1rem; font-weight: 700; color: #353535; margin-bottom: 8px; }
.showcase-feature p { font-size: 0.85rem; color: #6b7280; line-height: 1.5; }

@media (max-width: 768px) {
    .css-dashboard { flex-direction: column; }
    .css-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #f3f4f6; }
    .css-sidebar__nav { flex-direction: row; }
    .css-columns { flex-direction: column; }
    .showcase-features { grid-template-columns: 1fr; }
    .hero__phone-frame { width: 260px; }
}

/* ========================================
   FLOATING CALL BUTTON
   ======================================== */
.floating-call-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: var(--teal-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(16, 137, 120, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.floating-call-btn:hover {
    background: var(--teal-dark);
    box-shadow: 0 10px 32px rgba(16, 137, 120, 0.5);
    transform: scale(1.12) translateY(-2px);
}

.floating-call-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.floating-call-btn__text {
    display: none;
    position: absolute;
    right: 78px;
    background: var(--teal-primary);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.floating-call-btn__text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--teal-primary);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.floating-call-btn:hover .floating-call-btn__text {
    display: block;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet - Adjusted size */
@media (max-width: 1024px) {
    .floating-call-btn {
        width: 60px;
        height: 60px;
        bottom: 24px;
        right: 24px;
    }

    .floating-call-btn svg {
        width: 28px;
        height: 28px;
    }

    .floating-call-btn__text {
        right: 74px;
        font-size: 0.85rem;
        padding: 8px 14px;
    }
}

/* Mobile - Show phone number visible + tap to call */
@media (max-width: 768px) {
    .floating-call-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 4px 16px rgba(16, 137, 120, 0.35);
    }

    .floating-call-btn svg {
        width: 26px;
        height: 26px;
    }

    .floating-call-btn__text {
        display: block !important;
        font-size: 0.75rem;
        right: auto;
        left: -140px;
        bottom: -8px;
        padding: 6px 10px;
        background: var(--teal-primary);
        border-radius: 6px;
        animation: slideInRight 0.3s ease;
    }

    .floating-call-btn__text::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-call-btn {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
        box-shadow: 0 3px 12px rgba(16, 137, 120, 0.3);
    }

    .floating-call-btn svg {
        width: 24px;
        height: 24px;
    }

    .floating-call-btn__text {
        font-size: 0.7rem;
        left: -125px;
        bottom: -6px;
        padding: 5px 8px;
    }
}
