:root {
    --orange: #f4511e;
    --orange-dark: #d73d0c;
    --orange-soft: #fff0e9;
    --charcoal: #181818;
    --charcoal-soft: #272727;
    --ink: #222222;
    --muted: #686868;
    --cream: #fbf8f4;
    --white: #ffffff;
    --line: #e9e2dc;
    --green: #1ca66a;
    --shadow-sm: 0 12px 35px rgba(35, 25, 20, 0.08);
    --shadow-lg: 0 30px 90px rgba(35, 25, 20, 0.16);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
    line-height: 1.12;
}

h1 {
    font-size: clamp(3.25rem, 6.4vw, 6.6rem);
    letter-spacing: -0.065em;
}

h2 {
    font-size: clamp(2.35rem, 4.4vw, 4.5rem);
    letter-spacing: -0.055em;
    margin-bottom: 24px;
}

p {
    color: var(--muted);
}

code {
    background: var(--orange-soft);
    color: var(--orange-dark);
    padding: 2px 7px;
    border-radius: 7px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 112px 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 226, 220, 0.75);
    background: rgba(251, 248, 244, 0.88);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 35px rgba(35, 25, 20, 0.06);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.brand-logo-header {
    width: 114px;
    height: 114px;
    object-position: left center;
}

.brand-logo-footer {
    width: 230px;
    height: auto;
    max-height: 150px;
    object-position: left center;
}

.brand-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(244, 81, 30, 0.22);
    font-size: 1.25rem;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.1;
}

.brand-copy small {
    margin-top: 3px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.65rem;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a {
    color: #4c4c4c;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--orange);
}

.main-nav .nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--charcoal);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    font-size: 1.8rem;
}

.hero {
    position: relative;
    min-height: 820px;
    padding: 166px 0 105px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(251, 248, 244, 0.8)),
        radial-gradient(circle at 80% 20%, rgba(244, 81, 30, 0.08), transparent 35%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(244, 81, 30, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 81, 30, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, transparent, black 55%, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    width: 520px;
    height: 520px;
    right: -180px;
    top: 55px;
    background: rgba(244, 81, 30, 0.08);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -80px;
    background: rgba(244, 81, 30, 0.06);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 66px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 24px 0 28px;
}

.hero-copy h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 680px;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin: 36px 0 29px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 16px 32px rgba(244, 81, 30, 0.25);
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-light {
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--line);
}

.btn-outline {
    color: var(--charcoal);
    background: transparent;
    border: 1px solid var(--line);
}

.btn-dark {
    color: var(--white);
    background: var(--charcoal);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #555;
    font-size: 0.82rem;
}

.hero-meta i {
    margin-right: 5px;
    color: var(--orange);
}

.hero-showcase {
    position: relative;
    min-height: 570px;
}

.dashboard-window {
    position: absolute;
    inset: 20px 0 20px 15px;
    overflow: hidden;
    border: 8px solid var(--charcoal);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-topbar {
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f6f4f2;
    color: #777;
    font-size: 0.72rem;
}

.dashboard-topbar > span {
    flex: 1;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i,
.mini-window-header i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8cec7;
}

.dashboard-body {
    height: calc(100% - 48px);
    display: grid;
    grid-template-columns: 62px 1fr;
}

.dashboard-sidebar {
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: var(--charcoal);
    color: var(--white);
}

.dashboard-sidebar strong {
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 1.05rem;
}

.dashboard-sidebar span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #aaa;
}

.dashboard-sidebar span.active {
    background: var(--orange);
    color: var(--white);
}

.dashboard-content {
    padding: 24px;
    overflow: hidden;
}

.dashboard-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.dashboard-heading small,
.dashboard-heading strong {
    display: block;
}

.dashboard-heading small {
    color: #8c8c8c;
    font-size: 0.66rem;
}

.dashboard-heading strong {
    margin-top: 3px;
    font-size: 1rem;
}

.date-pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    font-size: 0.66rem;
    font-weight: 800;
}

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

.metric-cards article {
    padding: 15px;
    border: 1px solid #eee7e2;
    border-radius: 15px;
    background: #fff;
}

.metric-cards small,
.metric-cards strong,
.metric-cards span {
    display: block;
}

.metric-cards small {
    color: #8b8b8b;
    font-size: 0.62rem;
}

.metric-cards strong {
    margin: 4px 0;
    font-size: 1rem;
}

.metric-cards span {
    color: var(--green);
    font-size: 0.62rem;
}

.dashboard-panels {
    margin-top: 17px;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 14px;
}

.chart-panel,
.orders-panel {
    min-height: 210px;
    padding: 17px;
    border: 1px solid #eee7e2;
    border-radius: 16px;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-heading strong {
    font-size: 0.74rem;
}

.panel-heading small {
    color: #9a9a9a;
    font-size: 0.58rem;
}

.chart-area {
    padding-top: 24px;
}

.order-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-row:last-child {
    border-bottom: 0;
}

.order-row > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    font-size: 0.62rem;
    font-weight: 800;
}

.order-row div {
    flex: 1;
}

.order-row strong,
.order-row small {
    display: block;
}

.order-row strong {
    font-size: 0.65rem;
}

.order-row small {
    margin-top: 2px;
    color: #999;
    font-size: 0.54rem;
}

.order-row b {
    font-size: 0.62rem;
}

.floating-stat {
    position: absolute;
    z-index: 3;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(233, 226, 220, 0.85);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.floating-stat > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--orange-soft);
    color: var(--orange);
}

.floating-stat small,
.floating-stat strong {
    display: block;
}

.floating-stat small {
    color: #8a8a8a;
    font-size: 0.65rem;
}

.floating-stat strong {
    font-size: 0.82rem;
}

.stat-one {
    top: 0;
    right: -18px;
}

.stat-two {
    bottom: 0;
    left: -15px;
}

.trust-strip {
    padding: 31px 0;
    border-block: 1px solid var(--line);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 4px 28px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid i {
    color: var(--orange);
    font-size: 1.5rem;
}

.trust-grid strong,
.trust-grid small {
    display: block;
}

.trust-grid strong {
    font-size: 0.84rem;
}

.trust-grid small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.68rem;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
    padding: 26px;
}

.poster-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: #f7f2ed;
}

.poster-frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    right: -12px;
    bottom: 4px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.experience-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--orange);
    font-size: 1.2rem;
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    font-size: 0.84rem;
}

.experience-card span {
    margin-top: 2px;
    color: #bbb;
    font-size: 0.68rem;
}

.section-copy > p {
    font-size: 1.02rem;
}

.section-copy .section-kicker {
    margin-bottom: 17px;
}

.about-points {
    margin: 31px 0;
    display: grid;
    gap: 18px;
}

.about-points article {
    display: flex;
    gap: 14px;
}

.about-points article > i {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 1.1rem;
}

.about-points strong,
.about-points span {
    display: block;
}

.about-points strong {
    margin-bottom: 3px;
    font-size: 0.92rem;
}

.about-points span {
    color: var(--muted);
    font-size: 0.86rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 800;
}

.stats-section {
    padding: 55px 0;
    background: var(--orange);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
    padding: 8px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    text-align: center;
}

.stats-grid article:last-child {
    border-right: 0;
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    font-family: "Manrope", sans-serif;
    font-size: 2.35rem;
}

.stats-grid span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.77rem;
}

.features-section {
    background: var(--cream);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading .section-kicker {
    margin-bottom: 17px;
}

.section-heading p {
    max-width: 650px;
    margin-inline: auto;
    font-size: 1rem;
}

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

.feature-card {
    min-height: 275px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 81, 30, 0.32);
    box-shadow: var(--shadow-sm);
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 1.3rem;
}

.feature-number {
    color: #d7d0cb;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.feature-card h3 {
    margin: 25px 0 10px;
    font-size: 1.06rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.87rem;
}

.workflow-section {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.workflow-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(244, 81, 30, 0.14);
}

.section-kicker-light {
    color: #ff9e7e;
}

.workflow-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.workflow-heading h2 {
    margin: 17px 0 0;
}

.workflow-heading p {
    color: #b6b6b6;
}

.workflow-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.workflow-card {
    position: relative;
    min-height: 285px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-card:last-child {
    border-right: 0;
}

.workflow-card > span {
    color: #6f6f6f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.workflow-card > i {
    margin: 29px 0 25px;
    display: block;
    color: var(--orange);
    font-size: 2.1rem;
}

.workflow-card h3 {
    font-size: 1.08rem;
}

.workflow-card p {
    color: #aaa;
    font-size: 0.86rem;
}

.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}

.benefit-list {
    margin-top: 33px;
    display: grid;
    gap: 16px;
}

.benefit-list > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.benefit-list i {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--orange-soft);
    color: var(--orange);
}

.benefit-list span,
.benefit-list strong {
    display: block;
}

.benefit-list span {
    color: var(--muted);
    font-size: 0.86rem;
}

.benefit-list strong {
    margin-bottom: 2px;
    color: var(--ink);
}

.benefits-dashboard {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #faf7f4;
    box-shadow: var(--shadow-lg);
}

.mini-window-header {
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.mini-window-header > div {
    display: flex;
    gap: 5px;
}

.mini-window-header span {
    flex: 1;
    text-align: center;
    color: var(--muted);
    font-size: 0.72rem;
}

.performance-card {
    margin: 24px 0;
    padding: 24px;
    border-radius: 20px;
    background: var(--charcoal);
    color: var(--white);
}

.performance-card small,
.performance-card strong,
.performance-card span {
    display: block;
}

.performance-card small {
    color: #aaa;
    font-size: 0.7rem;
}

.performance-card strong {
    margin: 5px 0;
    font-family: "Manrope", sans-serif;
    font-size: 2.3rem;
}

.performance-card span {
    color: #8ee5b6;
    font-size: 0.74rem;
}

.performance-bars {
    display: grid;
    gap: 18px;
}

.performance-bars > div {
    display: grid;
    grid-template-columns: 90px 1fr 42px;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
}

.performance-bars > div > i {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9e1dc;
}

.performance-bars > div > i b {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--orange);
}

.performance-footer {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.performance-footer > div {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.performance-footer small,
.performance-footer strong {
    display: block;
}

.performance-footer small {
    color: var(--muted);
    font-size: 0.68rem;
}

.performance-footer strong {
    margin-top: 4px;
    font-size: 1.1rem;
}

.pricing-section {
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.price-card.featured {
    border: 2px solid var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
}

.popular-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-label {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.price-card h3 {
    margin: 14px 0 10px;
    font-size: 1.35rem;
}

.price-card > p {
    min-height: 72px;
    font-size: 0.86rem;
}

.plan-price {
    margin: 27px 0;
}

.plan-price strong {
    font-family: "Manrope", sans-serif;
    font-size: 2.7rem;
    letter-spacing: -0.05em;
}

.plan-price span {
    margin-left: 4px;
    color: var(--muted);
    font-size: 0.78rem;
}

.price-card ul {
    min-height: 220px;
    margin: 0 0 29px;
    padding: 0;
    display: grid;
    align-content: start;
    gap: 12px;
    list-style: none;
}

.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.84rem;
}

.price-card li i {
    margin-top: 2px;
    color: var(--orange);
}

.price-card .btn {
    width: 100%;
}

.trial-banner {
    margin-top: 44px;
    padding: 27px 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    border-radius: var(--radius-md);
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 20px 55px rgba(244, 81, 30, 0.24);
}

.trial-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.17);
    font-size: 1.5rem;
}

.trial-banner span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.trial-banner h3 {
    margin: 5px 0 2px;
    font-size: 1.3rem;
}

.trial-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.principles-section {
    background: var(--white);
}

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

.testimonial-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.testimonial-card > i {
    color: var(--orange);
    font-size: 1.9rem;
}

.testimonial-card > p {
    min-height: 126px;
    margin: 18px 0 24px;
    color: #4d4d4d;
    font-size: 0.94rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    font-size: 0.85rem;
}

.testimonial-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.7rem;
}

.faq-section {
    background: #f5f0eb;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: 90px;
}

.faq-list {
    display: grid;
    gap: 13px;
}

details {
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
}

summary {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.9rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary i {
    transition: transform 0.2s ease;
}

details[open] summary i {
    transform: rotate(45deg);
}

details p {
    margin: 0;
    padding: 0 0 20px;
    font-size: 0.86rem;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.contact-section::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -260px;
    bottom: -290px;
    border-radius: 50%;
    background: rgba(244, 81, 30, 0.15);
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 80px;
}

.contact-copy h2 {
    margin-top: 18px;
}

.contact-copy > p {
    color: #b9b9b9;
}

.contact-details {
    margin: 35px 0;
    display: grid;
    gap: 14px;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contact-details a > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--orange);
}

.contact-details small,
.contact-details strong {
    display: block;
}

.contact-details small {
    color: #8f8f8f;
    font-size: 0.65rem;
}

.contact-details strong {
    font-size: 0.84rem;
}

.contact-note {
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #aaa;
    font-size: 0.78rem;
}

.contact-note i {
    color: var(--orange);
}

.contact-form {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
}

.form-heading {
    margin-bottom: 25px;
}

.form-heading > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-heading h3 {
    margin: 7px 0 5px;
    font-size: 1.45rem;
}

.form-heading p {
    margin: 0;
    font-size: 0.78rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form label {
    margin-bottom: 15px;
    display: block;
    color: #444;
    font-size: 0.76rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    border: 1px solid #e4ddd7;
    border-radius: 13px;
    outline: none;
    color: var(--ink);
    background: #fcfbfa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(244, 81, 30, 0.7);
    box-shadow: 0 0 0 4px rgba(244, 81, 30, 0.09);
}

.contact-form textarea {
    resize: vertical;
}


.captcha-field {
    max-width: 260px;
}

.submit-btn {
    width: 100%;
    margin-top: 3px;
}

.privacy-note {
    margin-top: 13px;
    display: block;
    text-align: center;
    color: #888;
    font-size: 0.68rem;
}

.form-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    display: flex;
    gap: 9px;
    border-radius: 12px;
    font-size: 0.78rem;
}

.form-alert.success {
    color: #12643f;
    background: #e9f8f0;
    border: 1px solid #c8ead7;
}

.form-alert.error {
    color: #9b2e16;
    background: #fff0ec;
    border: 1px solid #ffd4c8;
}

.site-footer {
    padding: 75px 0 25px;
    background: #101010;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 55px;
}

.footer-brand {
    color: var(--white);
}

.footer-brand-column > p {
    max-width: 370px;
    margin: 22px 0;
    color: #8f8f8f;
    font-size: 0.84rem;
}

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

.social-links a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid #292929;
    border-radius: 12px;
    color: #aaa;
    transition: color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    color: var(--white);
    background: var(--orange);
}

.footer-grid h4 {
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) span {
    color: #8d8d8d;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-grid > div:not(:first-child) a:hover {
    color: var(--orange);
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #242424;
    color: #777;
    font-size: 0.72rem;
}

.whatsapp-float {
    position: fixed;
    right: 23px;
    bottom: 24px;
    z-index: 900;
    min-height: 50px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #1fae67;
    color: var(--white);
    box-shadow: 0 16px 38px rgba(31, 174, 103, 0.3);
    font-size: 0.78rem;
    font-weight: 800;
}

.whatsapp-float i {
    font-size: 1.15rem;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 87px;
    z-index: 900;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 13px;
    background: var(--charcoal);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .hero-grid,
    .about-grid,
    .benefits-grid,
    .contact-grid {
        gap: 50px;
    }

    .main-nav {
        gap: 18px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-window {
        inset: 35px 0 35px 0;
    }

    .hero-showcase {
        min-height: 520px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 90px 0;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 1003;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(35, 25, 20, 0.08);
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        padding: 38px 28px 45px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 23px;
        overflow-y: auto;
        visibility: hidden;
        background: rgba(255, 255, 255, 0.99);
        opacity: 0;
        transform: translateY(-14px);
        pointer-events: none;
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav > a {
        font-size: 1.4rem;
    }

    .main-nav .nav-cta {
        margin-top: 10px;
        font-size: 0.95rem;
    }

    .hero {
        padding-top: 135px;
    }

    .hero-grid,
    .about-grid,
    .benefits-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-showcase {
        min-height: 560px;
    }

    .about-grid,
    .benefits-grid,
    .faq-grid,
    .contact-grid {
        gap: 60px;
    }

    .about-visual {
        width: min(650px, 100%);
        margin: 0 auto;
    }

    .trust-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-grid > div:nth-child(-n+2) {
        padding-bottom: 18px;
    }

    .trust-grid > div:nth-child(n+3) {
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .stats-grid article:nth-child(2) {
        border-right: 0;
    }

    .stats-grid article:nth-child(-n+2) {
        padding-bottom: 24px;
    }

    .stats-grid article:nth-child(n+3) {
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .workflow-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .workflow-card:nth-child(2) {
        border-right: 0;
    }

    .workflow-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card > p,
    .price-card ul {
        min-height: 0;
    }

    .trial-banner {
        grid-template-columns: auto 1fr;
    }

    .trial-banner .btn {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4.5rem);
    }

    h2 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .navbar {
        min-height: 70px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .brand-logo-header {
        width: 142px;
        height: 52px;
    }

    .brand-logo-footer {
        width: 205px;
    }

    .hero {
        min-height: auto;
        padding: 122px 0 75px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-meta {
        display: grid;
        gap: 8px;
    }

    .hero-showcase {
        min-height: 420px;
    }

    .dashboard-window {
        inset: 15px 0 15px 0;
        border-width: 5px;
        border-radius: 20px;
        transform: none;
    }

    .dashboard-body {
        grid-template-columns: 48px 1fr;
    }

    .dashboard-content {
        padding: 14px;
    }

    .dashboard-sidebar {
        padding-inline: 6px;
    }

    .dashboard-sidebar span {
        width: 31px;
        height: 31px;
    }

    .metric-cards {
        grid-template-columns: 1fr 1fr;
    }

    .metric-cards article:last-child {
        display: none;
    }

    .dashboard-panels {
        grid-template-columns: 1fr;
    }

    .orders-panel {
        display: none;
    }

    .floating-stat {
        padding: 10px;
    }

    .stat-one {
        right: -5px;
    }

    .stat-two {
        left: -5px;
    }

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

    .trust-grid > div {
        padding: 15px 0;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .trust-grid > div:first-child {
        border-top: 0;
    }

    .about-visual {
        padding: 0;
    }

    .poster-frame {
        border-radius: 24px;
    }

    .experience-card {
        right: 8px;
        bottom: -24px;
    }

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

    .stats-grid article {
        padding-inline: 12px;
    }

    .stats-grid strong {
        font-size: 1.8rem;
    }

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

    .feature-card {
        min-height: 0;
    }

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

    .workflow-card {
        min-height: 0;
        padding-inline: 5px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .workflow-card:last-child {
        border-bottom: 0;
    }

    .benefits-dashboard,
    .contact-form,
    .price-card {
        padding: 24px;
    }

    .performance-card strong {
        font-size: 1.8rem;
    }

    .performance-bars > div {
        grid-template-columns: 75px 1fr 35px;
        gap: 8px;
    }

    .performance-footer {
        grid-template-columns: 1fr;
    }

    .trial-banner {
        padding: 24px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trial-icon {
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 50px;
        padding: 0;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
