/**
 * AutoWave marketing — single professional design system
 * Brand: #00D084 · #2563FF · #0B1F44 · #5C6A82 · #F8FAFD · #E6ECF5
 */

.aw-landing {
    --aw-green: #00D084;
    --aw-green-dark: #00b871;
    --aw-blue: #2563FF;
    --aw-navy: #0B1F44;
    --aw-muted: #5C6A82;
    --aw-bg: #F8FAFD;
    --aw-white: #FFFFFF;
    --aw-line: #E6ECF5;
    --aw-radius: 10px;
    --aw-shadow: 0 4px 24px rgba(11, 31, 68, 0.06);
    --aw-container: 1120px;
    --aw-section-y: 3.25rem;

    font-family: Inter, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--aw-muted);
    background: var(--aw-bg);
    -webkit-font-smoothing: antialiased;
}

.aw-container {
    width: 100%;
    max-width: var(--aw-container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* —— Buttons (override global for landing) —— */
.aw-landing .btn-primary {
    background: linear-gradient(180deg, #00e896 0%, var(--aw-green) 45%, var(--aw-green-dark) 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 8px rgba(0, 208, 132, 0.2);
}

.aw-landing .btn-primary:hover {
    background: var(--aw-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.25);
}

.aw-landing .btn-lg {
    font-size: 15px;
    padding: 14px 26px;
}

.aw-landing .btn-secondary-outline {
    border-radius: 8px;
    border: 1px solid var(--aw-line);
    color: var(--aw-navy);
    background: var(--aw-white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.aw-landing .btn-secondary-outline:hover {
    border-color: #c5d0e0;
    background: var(--aw-bg);
}

.aw-landing .btn-sm {
    font-size: 13px;
    padding: 9px 16px;
}

/* —— Header —— */
.aw-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--aw-line);
}

.aw-header.scrolled {
    box-shadow: var(--aw-shadow);
}

.aw-header__row {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 64px;
}

.aw-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.aw-brand__mark {
    border-radius: 8px;
}

.aw-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.aw-brand__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--aw-navy);
}

.aw-brand__tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--aw-muted);
}

.aw-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.aw-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--aw-muted);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.aw-nav .nav-link:hover,
.aw-nav .nav-link.is-active {
    color: var(--aw-navy);
}

.aw-nav .nav-link.is-active {
    border-bottom-color: var(--aw-green);
}

.aw-nav__mobile-actions {
    display: none;
}

.aw-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.aw-header__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--aw-navy);
    text-decoration: none;
    padding: 8px 10px;
}

.aw-header__link:hover {
    color: var(--aw-green-dark);
}

.aw-menu-btn {
    display: none;
}

/* —— Demo panel —— */
.aw-demo-panel.floating-form {
    border-radius: 14px;
    border: 1px solid var(--aw-line);
    box-shadow: 0 24px 60px rgba(11, 31, 68, 0.14);
}

.aw-demo-panel .form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--aw-navy);
}

.aw-demo-panel .form-desc {
    font-size: 14px;
    margin-bottom: 16px;
}

/* —— Hero —— */
.aw-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(37, 99, 255, 0.06), transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0, 208, 132, 0.07), transparent 50%),
        var(--aw-white);
    border-bottom: 1px solid var(--aw-line);
    padding-top: clamp(2rem, 4vw, 2.75rem);
    padding-bottom: 1.5rem;
}

.aw-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.aw-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--aw-green-dark);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.aw-hero__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--aw-navy);
    margin-bottom: 0.875rem;
}

.aw-hero__lead {
    font-size: 17px;
    line-height: 1.55;
    color: var(--aw-muted);
    margin-bottom: 1rem;
    max-width: 28rem;
}

.aw-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.aw-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    font-size: 15px;
    color: var(--aw-navy);
}

.aw-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aw-green);
}

.aw-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.aw-hero__meta {
    font-size: 13px;
    color: var(--aw-muted);
}

.aw-hero__media {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.aw-scene-3d {
    perspective: 1200px;
}

.aw-hero__stage {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.aw-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(48px);
}

.aw-hero__orb--green {
    width: 200px;
    height: 200px;
    top: -20px;
    right: -40px;
    background: rgba(0, 208, 132, 0.35);
}

.aw-hero__orb--blue {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: -30px;
    background: rgba(37, 99, 255, 0.28);
}

.aw-hero__illustration {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow:
        0 24px 48px rgba(11, 31, 68, 0.1),
        0 0 0 1px rgba(230, 236, 245, 0.8);
}

.aw-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--aw-line);
}

.aw-trust__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--aw-muted);
}

.aw-trust__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aw-trust__list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--aw-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--aw-bg);
    border: 1px solid var(--aw-line);
}

.aw-trust__list i {
    color: var(--aw-muted);
    font-size: 14px;
}

/* —— Sections —— */
.aw-section {
    padding: var(--aw-section-y) 0;
    background: var(--aw-white);
}

.aw-section--alt {
    background: var(--aw-bg);
}

.aw-section-head {
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.aw-section-head__title {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--aw-navy);
    margin-bottom: 0.75rem;
}

.aw-section-head__title--left {
    text-align: left;
    margin-left: 0;
}

.aw-section-head__desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--aw-muted);
    margin: 0;
}

.aw-section-head__desc--left {
    text-align: left;
}

.aw-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aw-green-dark);
    margin: 0 0 0.5rem;
}

.aw-eyebrow--center {
    text-align: center;
}

.aw-split__points {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.aw-split__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--aw-navy);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.aw-split__points i {
    color: var(--aw-green);
    margin-top: 4px;
    font-size: 12px;
}

.aw-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 12px 16px;
    background: var(--aw-navy);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.aw-skip:focus {
    left: 0;
}

/* —— Live demo —— */
.aw-demo {
    background: var(--aw-white);
    border: 1px solid var(--aw-line);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow:
        0 4px 24px rgba(11, 31, 68, 0.06),
        0 20px 40px rgba(11, 31, 68, 0.04);
    margin-bottom: 1.5rem;
    transform: translateZ(0);
}

.aw-demo__grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 1.25rem;
    align-items: start;
}

.aw-phone__label,
.aw-owner figcaption {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--aw-muted);
    margin-bottom: 12px;
}

.aw-phone,
.aw-owner {
    margin: 0;
}

/* Device */
.device--whatsapp {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.device__shell {
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 28px;
    padding: 8px;
    box-shadow:
        0 12px 40px rgba(11, 31, 68, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.device__screen {
    border-radius: 22px;
    overflow: hidden;
    height: 360px;
    background: #000;
    display: flex;
    flex-direction: column;
}

.ios-status {
    display: flex;
    justify-content: space-between;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #008069;
}

.wa-app {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
}

.wa-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #008069;
    color: #fff;
    z-index: 2;
}

.wa-topbar__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.wa-topbar__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-topbar__info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.wa-topbar__info span {
    font-size: 11px;
    opacity: 0.9;
}

.wa-wallpaper {
    position: absolute;
    inset: 0;
    top: 56px;
    background: #efeae2;
    z-index: 0;
}

.wa-thread {
    position: relative;
    z-index: 1;
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.wa-step {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.wa-step.is-visible {
    opacity: 1;
    transform: none;
}

.wa-row--out {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6px;
}

.wa-bubble {
    max-width: 88%;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.wa-bubble--out {
    background: #d9fdd3;
}

.wa-bubble--in,
.wa-bubble--status {
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wa-bubble p {
    margin: 0;
    color: #111b21;
}

.wa-bubble--status {
    border-left: 3px solid var(--aw-green);
}

.wa-reply-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin: 4px 0 8px;
    max-width: 92%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wa-reply-card__title {
    font-size: 12px;
    font-weight: 600;
    color: #008069;
    padding: 8px 12px;
    border-bottom: 1px solid #e9edef;
}

.wa-reply-row {
    width: 100%;
    display: block;
    padding: 10px 12px;
    border: none;
    border-top: 1px solid #e9edef;
    background: #fff;
    font-size: 13px;
    color: #008069;
    text-align: left;
    font-family: inherit;
}

.wa-reply-row--active {
    background: #f0fdf4;
}

.wa-typing {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 16px;
    width: fit-content;
}

.wa-typing span {
    width: 6px;
    height: 6px;
    background: #8696a0;
    border-radius: 50%;
    animation: awType 1s ease infinite;
}

.wa-typing span:nth-child(2) { animation-delay: 0.12s; }
.wa-typing span:nth-child(3) { animation-delay: 0.24s; }

@keyframes awType {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}

/* Owner panel */
.owner-panel {
    background: var(--aw-white);
    border: 1px solid var(--aw-line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(11, 31, 68, 0.1);
}

.owner-panel__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--aw-navy);
    border-bottom: none;
}

.owner-panel__header img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.owner-panel__body {
    padding: 16px;
}

.owner-panel__service {
    font-size: 16px;
    font-weight: 600;
    color: var(--aw-navy);
    margin: 0 0 4px;
}

.owner-panel__time,
.owner-panel__phone {
    font-size: 13px;
    color: var(--aw-muted);
    margin: 0 0 4px;
}

.owner-panel__actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

.owner-panel__btn {
    flex: 1;
    padding: 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--aw-line);
    cursor: pointer;
    font-family: inherit;
    background: var(--aw-white);
}

.owner-panel__btn--approve {
    background: var(--aw-green);
    border-color: var(--aw-green);
    color: #fff;
}

.owner-panel__btn--approve.is-done {
    background: var(--aw-green-dark);
}

.owner-panel__btn--decline {
    color: #b91c1c;
    border-color: #fecaca;
    background: #fef2f2;
}

/* Flow steps */
.aw-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.aw-flow__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    border: 1px solid rgba(0, 208, 132, 0.25);
    font-size: 13px;
    font-weight: 700;
    color: var(--aw-green-dark);
    margin-bottom: 12px;
}

.aw-flow__step {
    background: var(--aw-white);
    border: 1px solid var(--aw-line);
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.aw-flow__step:hover {
    border-color: rgba(0, 208, 132, 0.3);
    box-shadow: 0 12px 32px rgba(11, 31, 68, 0.06);
}

.aw-flow__step h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--aw-navy);
    margin-bottom: 6px;
}

.aw-flow__step p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Split / diagram */
.aw-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.aw-diagram-wrap {
    perspective: 900px;
}

.aw-diagram-stage {
    transform-style: preserve-3d;
    animation: aw-diagram-float 7s ease-in-out infinite;
}

@keyframes aw-diagram-float {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-3deg); }
    50% { transform: translateY(-8px) rotateX(0deg) rotateY(2deg); }
}

.aw-diagram {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(11, 31, 68, 0.1);
}

/* Features */
.aw-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.aw-feature {
    background: var(--aw-white);
    border: 1px solid var(--aw-line);
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aw-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 208, 132, 0.35);
    box-shadow: 0 16px 40px rgba(11, 31, 68, 0.08);
}

.aw-section--alt .aw-feature {
    background: var(--aw-white);
}

.aw-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ecfdf5 0%, #f0f4ff 100%);
    border: 1px solid var(--aw-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--aw-green-dark);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.08);
}

.aw-feature h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--aw-navy);
    margin-bottom: 6px;
}

.aw-feature p {
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}

/* Pricing */
.aw-landing .pricing-compact {
    padding: var(--aw-section-y) 0;
}

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

.aw-trial-bar.trial-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0f4ff 100%);
    border: 1px solid rgba(0, 208, 132, 0.2);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 14px;
    color: var(--aw-navy);
}

.aw-landing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.aw-landing .pricing-card {
    background: var(--aw-white);
    border: 1px solid var(--aw-line);
    border-radius: 14px;
    padding: 1.5rem 1.35rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.aw-landing .pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 208, 132, 0.45);
    box-shadow: 0 16px 40px rgba(11, 31, 68, 0.08);
}

.aw-landing .pricing-card.featured {
    border: 2px solid rgba(0, 208, 132, 0.5);
    box-shadow: 0 8px 32px rgba(0, 208, 132, 0.12);
    transform: none;
}

.aw-landing .pricing-card.featured:hover {
    transform: translateY(-4px);
}

.aw-landing .badge-popular {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aw-green);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.aw-landing .pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--aw-navy);
    margin: 0 0 8px;
}

.aw-landing .pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--aw-navy);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.aw-landing .pricing-card .price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--aw-muted);
}

.aw-landing .pricing-card .savings {
    font-size: 13px;
    color: var(--aw-green-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.aw-landing .pricing-card ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}

.aw-landing .pricing-card li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--aw-muted);
    border-bottom: 1px solid var(--aw-line);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.aw-landing .pricing-card li:last-child {
    border-bottom: none;
}

.aw-landing .pricing-card li i {
    color: var(--aw-green);
    margin-top: 3px;
    font-size: 12px;
}

.aw-landing .pricing-card .btn {
    margin-top: auto;
}

.aw-landing .pricing-compact {
    background: var(--aw-white);
}

/* CTA band */
.aw-cta-band {
    padding: var(--aw-section-y) 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0, 208, 132, 0.15), transparent 55%),
        radial-gradient(ellipse 50% 70% at 90% 40%, rgba(37, 99, 255, 0.2), transparent 50%),
        var(--aw-navy);
}

.aw-cta-band__inner {
    text-align: center;
}

.aw-cta-band__title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.aw-cta-band__text {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.aw-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.aw-cta-band__ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

.aw-cta-band__ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Footer */
.aw-footer {
    background: var(--aw-navy);
    color: #94a3b8;
    font-size: 14px;
}

.aw-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 180px;
    gap: 2rem;
    padding: 2.25rem 24px 1.75rem;
}

.aw-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 12px;
}

.aw-footer__brand p {
    line-height: 1.55;
    margin-bottom: 12px;
    max-width: 260px;
}

.aw-footer__email {
    color: #e2e8f0;
    text-decoration: none;
}

.aw-footer__email:hover {
    color: #fff;
}

.aw-footer__heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.aw-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aw-footer__links li {
    margin-bottom: 8px;
}

.aw-footer__links a {
    color: #94a3b8;
    text-decoration: none;
}

.aw-footer__links a:hover {
    color: #fff;
}

.aw-footer__trial {
    margin-top: 8px;
    border-color: #475569;
    color: #fff;
}

.aw-footer__trial:hover {
    background: #1e293b;
}

.aw-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.aw-footer__bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
}

.aw-footer__bar-inner a {
    color: #94a3b8;
    text-decoration: none;
}

.aw-footer__bar-inner a:hover {
    color: #fff;
}

/* Mobile bar */
.aw-landing .mobile-demo-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--aw-white);
    border-top: 1px solid var(--aw-line);
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 100;
}

.aw-landing .mobile-demo-bar__demo {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--aw-line);
    background: var(--aw-bg);
    cursor: pointer;
    font-family: inherit;
}

.aw-landing .mobile-demo-bar__trial {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(180deg, #00e896 0%, #00D084 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.25);
}

/* —— Responsive —— */
@media (max-width: 960px) {
    .aw-menu-btn {
        display: flex;
    }

    .aw-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 24px 24px;
        background: var(--aw-white);
        border-bottom: 1px solid var(--aw-line);
        box-shadow: var(--aw-shadow);
    }

    .aw-nav.active {
        display: flex;
    }

    .aw-nav .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--aw-line);
    }

    .aw-nav__mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }

    .aw-header__actions {
        display: none;
    }

    .aw-header__row {
        position: relative;
        height: 64px;
    }

    .aw-brand__tag {
        display: none;
    }

    .aw-hero__layout,
    .aw-split,
    .aw-demo__grid,
    .aw-flow,
    .aw-features {
        grid-template-columns: 1fr;
    }

    .aw-nav .nav-link.is-active {
        border-bottom-color: transparent;
        color: var(--aw-green-dark);
    }

    .aw-hero {
        padding-top: 1.75rem;
    }

    .aw-section {
        --aw-section-y: 2.5rem;
    }

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

    .aw-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .aw-landing .mobile-demo-bar {
        display: grid;
    }

    .aw-footer {
        padding-bottom: 72px;
    }
}

@media (max-width: 560px) {
    .aw-footer__grid {
        grid-template-columns: 1fr;
    }

    .aw-features {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-step {
        opacity: 1;
        transform: none;
    }

    .wa-typing span {
        animation: none;
    }

    .aw-diagram-stage {
        animation: none;
    }

    .aw-hero__stage {
        transition: none;
    }

    .aw-feature:hover {
        transform: none;
    }
}
