/* ================================================================
   AUTRIVO — PREMIUM ORANGE REDESIGN
   Full-bleed hero · Editorial type · Brand orange #F5852F
   ================================================================ */

.page-home {
    font-family: var(--font-body);
    background: #FFFFFF;
    color: var(--text-dark);
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home .ac-section-title,
.page-home .ac-hero__title,
.page-home .ac-hero__brand {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* ── Motion ── */
@keyframes acFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes acPulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 133, 47, 0.45); }
    70% { box-shadow: 0 0 0 10px rgba(245, 133, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 133, 47, 0); }
}

@keyframes acKenBurns {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

/* ── Topbar ── */
.ac-topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.55rem 0;
    letter-spacing: 0.01em;
}

.ac-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
}

.ac-topbar__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: acPulse 2.2s infinite;
    flex-shrink: 0;
}

.ac-topbar__link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.15rem;
}

.ac-topbar__link:hover { color: #fff; }

/* ── Header ── */
.ac-header {
    background: #fff !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid rgba(14, 35, 63, 0.06) !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.65rem 0;
}

.ac-header.scrolled,
.header.ac-header.scrolled {
    background: #fff !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(14, 35, 63, 0.06) !important;
}

.ac-header__shell {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0.55rem 0 !important;
    box-shadow: none;
}

.ac-header .logo-icon { margin-top: 0; }
.ac-header .logo-icon img { width: 150px; height: auto; }

.ac-header__cta {
    margin-left: 1rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent) !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 20px rgba(245, 133, 47, 0.32) !important;
    font-family: var(--font-display) !important;
    letter-spacing: -0.02em;
}

.ac-header__cta:hover {
    box-shadow: 0 10px 28px rgba(245, 133, 47, 0.42) !important;
}

.ac-header .nav-menu {
    display: flex;
    align-items: center;
}

.ac-header .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-dark);
    position: relative;
}

.ac-header .nav-link.active,
.ac-header .nav-link:hover {
    color: var(--primary-dark);
}

/* ── Shared section type ── */
.ac-section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
}

.ac-section-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ac-section-desc {
    font-size: 1.0625rem;
    color: var(--text-gray);
    max-width: 520px;
    line-height: 1.7;
}

.ac-section-head {
    text-align: center;
    margin-bottom: 3.75rem;
}

.ac-section-head .ac-section-desc { margin: 0 auto; }
.ac-section-head--light .ac-section-title { color: #fff; }
.ac-section-head--light .ac-section-label { color: var(--accent-light); }

/* ── HERO: Full-bleed ── */
.ac-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: 3rem 0 3.5rem;
    overflow: hidden;
    color: #fff;
}

.ac-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ac-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    animation: acKenBurns 18s ease-out forwards;
    will-change: transform;
}

.ac-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 16, 30, 0.94) 0%, rgba(10, 22, 40, 0.82) 38%, rgba(10, 22, 40, 0.45) 100%),
        linear-gradient(0deg, rgba(8, 16, 30, 0.85) 0%, rgba(8, 16, 30, 0.2) 55%, transparent 100%);
}

.ac-hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.ac-hero__copy {
    max-width: 600px;
    animation: acFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ac-hero__brand {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #FF9A4A !important;
    margin-bottom: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ac-hero__title {
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    text-shadow: none;
}

.ac-hero__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.65;
    margin-bottom: 1.85rem;
    max-width: 420px;
    font-weight: 400;
}

/* Registration form — clean professional */
.ac-plate-form {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    max-width: 520px;
    animation: acFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.ac-plate-form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-gray);
    margin-bottom: 0.7rem;
}

.ac-plate-form__row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.ac-plate-input-wrap {
    flex: 1;
    display: flex;
    align-items: stretch;
    border: 1.5px solid rgba(14, 35, 63, 0.14);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    min-width: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ac-plate-input-wrap:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 133, 47, 0.15);
}

.ac-plate-input__flag {
    background: transparent;
    color: var(--text-gray);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0 0.15rem 0 1rem;
    display: flex;
    align-items: center;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    position: relative;
}

.ac-plate-input__flag::after {
    content: '';
    width: 1px;
    height: 1.1rem;
    background: rgba(14, 35, 63, 0.12);
    margin-left: 0.75rem;
}

.ac-plate-input {
    flex: 1;
    border: none !important;
    background: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: var(--navy-dark) !important;
    padding: 0.9rem 1rem 0.9rem 0.75rem !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-width: 0;
}

.ac-plate-input:focus {
    outline: none;
    transform: none !important;
}

.ac-plate-input::placeholder {
    color: rgba(14, 35, 63, 0.28) !important;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.ac-plate-form__btn {
    border-radius: 10px !important;
    padding: 0.9rem 1.4rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9375rem !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    white-space: nowrap;
    background: var(--primary-color) !important;
    background-image: none !important;
    box-shadow: none !important;
    letter-spacing: 0;
}

.ac-plate-form__btn:hover {
    background: var(--primary-dark) !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.ac-plate-form__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

.ac-plate-form__meta span {
    position: relative;
    padding-left: 0.85rem;
}

.ac-plate-form__meta span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translateY(-50%);
}

/* ── TRUST STRIP ── */
.ac-trust {
    background: var(--navy-dark);
    padding: 1.5rem 0;
    border-top: 3px solid var(--primary-color);
}

.ac-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ac-trust__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: #fff;
    padding: 0.35rem 1.25rem;
    position: relative;
}

.ac-trust__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.12);
}

.ac-trust__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245, 133, 47, 0.15);
    color: var(--primary-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem;
    box-sizing: border-box;
}

.ac-trust__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #ffffff;
    line-height: 1.25;
}

.ac-trust__item span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 0.1rem;
}

/* ── FEATURES ── */
.ac-bento {
    padding: 6rem 0;
    background: #fff;
}

.ac-bento__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.ac-bento__card {
    background: #fff;
    border: 1px solid rgba(14, 35, 63, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.ac-bento__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(14, 35, 63, 0.07);
    border-color: rgba(245, 133, 47, 0.35);
}

.ac-bento__card--hero {
    grid-row: span 2;
    background: var(--navy-dark);
    color: #fff;
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.ac-bento__card--hero::after {
    content: '';
    position: absolute;
    right: -40%;
    bottom: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(245, 133, 47, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.ac-bento__card--hero h3,
.ac-bento__card.ac-bento__card--hero h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.ac-bento__card--hero p,
.ac-bento__card.ac-bento__card--hero p {
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 1.35rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.ac-bento__card--hero .ac-bento__card-icon {
    background: rgba(245, 133, 47, 0.22);
    color: #FF9A4A;
    position: relative;
    z-index: 1;
}

.ac-bento__card--hero .ac-bento__list {
    position: relative;
    z-index: 1;
}

.ac-bento__card--hero .ac-bento__list li {
    color: rgba(255, 255, 255, 0.92) !important;
}

.ac-bento__card--wide { grid-column: span 2; }

.ac-bento__card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.ac-bento__card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.ac-bento__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(245, 133, 47, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ac-bento__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
}

.ac-bento__list li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    padding-left: 1.15rem;
    position: relative;
    font-weight: 500;
}

.ac-bento__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
}

.ac-bento__stat {
    margin-top: 1.1rem;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
}

.ac-bento__stat small {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    font-family: var(--font-body);
    letter-spacing: 0;
}

.ac-bento__wide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ac-bento__sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ac-bento__sources span {
    background: #fff;
    border: 1px solid rgba(14, 35, 63, 0.1);
    border-radius: 8px;
    padding: 0.4rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy-dark);
}

/* ── PROCESS ── */
.ac-process {
    padding: 6rem 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.ac-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 50% at 80% 20%, rgba(245, 133, 47, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.ac-process__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.ac-process__track::before {
    content: '';
    position: absolute;
    top: 1.35rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 133, 47, 0.45), transparent);
}

.ac-process__step {
    text-align: left;
    padding: 0 0.5rem;
    position: relative;
}

.ac-process__num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.04em;
}

.ac-process__content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.55rem;
    letter-spacing: -0.02em;
}

.ac-process__content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

/* ── PRICING ── */
.ac-pricing {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8F6F4 0%, #fff 55%);
}

.ac-pricing__card {
    max-width: 840px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(14, 35, 63, 0.08);
    box-shadow: 0 28px 70px rgba(14, 35, 63, 0.1);
}

.ac-pricing__top {
    background: var(--navy-dark);
    padding: 2.5rem;
    position: relative;
    text-align: center;
}

.ac-pricing__top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(245, 133, 47, 0.22) 0%, transparent 55%);
    pointer-events: none;
}

.ac-pricing__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    z-index: 1;
}

.ac-pricing__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
    margin-bottom: 1.75rem;
    position: relative;
}

.ac-pricing__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 0.35rem;
}

.ac-pricing__name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
    letter-spacing: -0.03em;
}

.ac-pricing__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.ac-pricing__price { text-align: right; flex-shrink: 0; }

.ac-pricing__currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
    vertical-align: top;
}

.ac-pricing__amount {
    font-family: var(--font-display);
    font-size: 4.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.ac-pricing__period {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.ac-pricing__cta {
    width: 100%;
    padding: 1.05rem 2rem;
    background: var(--primary-color);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 28px rgba(245, 133, 47, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    margin-bottom: 0.75rem;
    position: relative;
}

.ac-pricing__cta svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

.ac-pricing__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(245, 133, 47, 0.5);
}

.ac-pricing__ghost {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8125rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: inherit;
    position: relative;
}

.ac-pricing__ghost:hover { color: rgba(255, 255, 255, 0.8); }

.ac-pricing__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    padding: 1.5rem 2rem;
}

.ac-pricing__feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-dark);
    padding: 0.625rem 0;
}

.ac-pricing__feat svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.ac-pricing__delivery {
    background: rgba(245, 133, 47, 0.08);
    border-top: 1px solid rgba(245, 133, 47, 0.15);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ── WHY US ── */
.ac-why {
    padding: 6rem 0;
    background: #fff;
}

.ac-why__layout {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 4rem;
    align-items: start;
}

.ac-why__intro .ac-section-desc { margin-bottom: 2rem; }

.ac-why__btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px !important;
    padding: 0.9rem 1.7rem !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    background: var(--primary-color) !important;
    background-image: none !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(245, 133, 47, 0.32) !important;
    border: none !important;
}

.ac-why__btn svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

.ac-why__btn:hover {
    background: var(--primary-dark) !important;
    color: #ffffff !important;
}

.ac-why__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.ac-why__item {
    display: flex;
    gap: 0.95rem;
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(14, 35, 63, 0.05);
    border-left: 3px solid var(--primary-color);
    transition: box-shadow var(--transition-fast);
}

.ac-why__item:hover {
    box-shadow: 0 10px 28px rgba(14, 35, 63, 0.07);
}

.ac-why__item-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(245, 133, 47, 0.12);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ac-why__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.ac-why__item p {
    font-size: 0.8125rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin: 0;
}

/* ── REVIEWS ── */
.ac-reviews {
    padding: 6rem 0;
    background: var(--bg-light);
}

.ac-reviews__layout {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1.15rem;
    margin-bottom: 1.75rem;
}

.ac-reviews__featured {
    background: var(--navy-dark);
    border-radius: 16px;
    padding: 2.5rem;
    color: #fff;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.ac-reviews__featured::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(245, 133, 47, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.ac-reviews__featured p {
    font-size: 1.3rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    font-style: normal;
    flex: 1;
    margin: 1.25rem 0;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    position: relative;
}

.ac-reviews__featured footer {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    position: relative;
}

.ac-reviews__featured footer strong {
    display: block;
    font-size: 0.9375rem;
}

.ac-reviews__featured footer span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.ac-reviews__stack {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.ac-reviews__card {
    background: #fff;
    border: 1px solid rgba(14, 35, 63, 0.07);
    border-radius: 14px;
    padding: 1.5rem;
    margin: 0;
    flex: 1;
}

.ac-reviews__card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin: 0.75rem 0;
    font-style: normal;
}

.ac-reviews__card footer strong {
    font-size: 0.875rem;
    color: var(--navy-dark);
    display: block;
}

.ac-reviews__card footer span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.ac-reviews__stars {
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.ac-reviews__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.ac-reviews__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border: 1px solid rgba(14, 35, 63, 0.07);
    border-radius: 14px;
    padding: 1.75rem;
}

.ac-reviews__stats div { text-align: center; }

.ac-reviews__stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
}

.ac-reviews__stats span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── FAQ ── */
.ac-faq {
    padding: 6rem 0 7rem;
    background: #fff;
}

.ac-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 4rem;
    align-items: start;
}

.ac-faq__intro .ac-section-desc a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 133, 47, 0.4);
}

.ac-faq__intro .ac-section-desc a:hover {
    border-bottom-color: var(--primary-color);
}

.ac-faq__list { margin: 0; }

.ac-faq__item {
    border: 1px solid rgba(14, 35, 63, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 0.65rem !important;
    overflow: hidden;
    background: var(--bg-light);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.ac-faq__item .faq-question {
    padding: 1.15rem 1.25rem !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

.ac-faq__item.active {
    border-color: rgba(245, 133, 47, 0.35) !important;
    background: #fff;
}

.ac-faq__item.active .faq-question { color: var(--primary-dark); }

.ac-faq__item .faq-icon {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

.ac-faq__item .faq-answer { padding: 0 1.25rem !important; }
.ac-faq__item.active .faq-answer { padding: 0 1.25rem 1.15rem !important; }
.ac-faq__item .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-gray);
}

/* ── FOOTER CTA + FOOTER ── */
.ac-footer-cta {
    background: var(--gradient-accent);
    padding: 2.75rem 0;
}

.ac-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ac-footer-cta__text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
    letter-spacing: -0.03em;
}

.ac-footer-cta__text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.ac-footer-cta__btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--navy-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.95rem 1.7rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-fast);
}

.ac-footer-cta__btn:hover { transform: translateY(-2px); }

.ac-footer {
    padding: 4.25rem 0 2rem !important;
    background: var(--ink) !important;
}

.ac-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.ac-footer .footer-brand img {
    filter: none;
    width: 150px;
    height: auto;
}

.ac-footer .footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-top: 1rem;
    max-width: 300px;
}

.ac-footer .footer-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.1rem;
}

.ac-footer .footer-links {
    list-style: none;
}

.ac-footer .footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.3rem 0;
    transition: color var(--transition-fast);
}

.ac-footer .footer-links a:hover { color: var(--primary-light); }

.ac-footer .footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.ac-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.ac-footer__badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
}

.ac-newsletter .newsletter-input {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
    border-radius: 8px 0 0 8px !important;
}

.ac-newsletter .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.ac-newsletter .btn-newsletter {
    border-radius: 0 8px 8px 0 !important;
    background: var(--primary-color) !important;
    font-weight: 700 !important;
    font-family: var(--font-display) !important;
}

.ac-footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.ac-footer__bottom p {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.8125rem;
}

.ac-footer__note {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
    margin: 0;
}

.ac-scroll-top {
    background: var(--navy-dark) !important;
    border: 2px solid rgba(245, 133, 47, 0.45) !important;
    color: #fff !important;
    border-radius: 10px !important;
}

.ac-scroll-top:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .ac-hero {
        min-height: auto;
        padding: 3rem 0 3.25rem;
        align-items: center;
    }

    .ac-bento__grid { grid-template-columns: 1fr 1fr; }
    .ac-bento__card--hero { grid-row: span 1; grid-column: span 2; }
    .ac-bento__card--wide { grid-column: span 2; }
    .ac-process__track { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
    .ac-process__track::before { display: none; }
    .ac-pricing__features { grid-template-columns: repeat(2, 1fr); }
    .ac-why__layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .ac-reviews__layout { grid-template-columns: 1fr; }
    .ac-faq__layout { grid-template-columns: 1fr; gap: 2rem; }
    .ac-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .ac-topbar__inner { font-size: 0.72rem; gap: 0.5rem; }

    .ac-header .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .ac-header__cta {
        margin: 1rem 0 0 !important;
        justify-content: center;
    }

    .ac-hero {
        padding: 2.5rem 0 2.75rem;
        min-height: auto;
    }

    .ac-hero__title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .ac-plate-form__row { flex-direction: column; }

    .ac-plate-form__btn {
        justify-content: center;
        width: 100%;
    }

    .ac-trust__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .ac-trust__item {
        justify-content: flex-start;
        padding: 0.25rem 0.5rem;
    }

    .ac-trust__item::after {
        display: none;
    }

    .ac-bento { padding: 4rem 0; }
    .ac-bento__grid { grid-template-columns: 1fr; }
    .ac-bento__card--hero,
    .ac-bento__card--wide { grid-column: span 1; }
    .ac-bento__wide-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ac-process { padding: 4rem 0; }
    .ac-process__track { grid-template-columns: 1fr; gap: 2rem; }

    .ac-pricing { padding: 4rem 0; }
    .ac-pricing__top { padding: 1.75rem; }
    .ac-pricing__top-inner {
        flex-direction: column;
        text-align: center;
    }
    .ac-pricing__price { text-align: center; }
    .ac-pricing__features {
        grid-template-columns: 1fr;
        padding: 1.15rem;
    }
    .ac-pricing__badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .ac-why,
    .ac-reviews,
    .ac-faq { padding: 4rem 0; }

    .ac-why__cards { grid-template-columns: 1fr; }
    .ac-reviews__stats { grid-template-columns: 1fr 1fr; }
    .ac-reviews__featured { min-height: auto; padding: 1.75rem; }
    .ac-reviews__featured p { font-size: 1.1rem; }

    .ac-footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }

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

@media (prefers-reduced-motion: reduce) {
    .ac-hero__img { animation: none; }
    .ac-hero__copy,
    .ac-plate-form { animation: none; }
    .ac-topbar__pulse { animation: none; }
}
