/* Common styles for the ERE EKO TECH SOLUTIONS LTD website. */

:root {
    --ink: #10243e;
    --ink-soft: #31435d;
    --aqua: #18c7b8;
    --aqua-dark: #0e9f93;
    --mint: #dffcf1;
    --mint-strong: #bdf4df;
    --gold: #f6c84c;
    --green: #2dbe7e;
    --pearl: #fbfff9;
    --paper: #ffffff;
    --line: rgba(16, 36, 62, 0.12);
    --muted: #66758a;
    --shadow-sm: 0 12px 30px rgba(16, 36, 62, 0.08);
    --shadow-md: 0 24px 60px rgba(16, 36, 62, 0.12);
    --shadow-lg: 0 36px 90px rgba(16, 36, 62, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #fbfff9 0%, #f7fffb 34%, #ffffff 100%);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(24, 199, 184, 0.45);
    outline-offset: 3px;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(24, 199, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 199, 184, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 70%);
    z-index: -2;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(16, 36, 62, 0.08);
    background: rgba(251, 255, 249, 0.84);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mint), #ffffff);
    object-fit: contain;
    padding: 5px;
}

.brand-logo.is-missing {
    padding: 0;
}

.brand-logo.is-missing::after {
    content: "logo.png";
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    white-space: nowrap;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
}

.brand-domain {
    color: var(--muted);
    font-size: 0.72rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.nav-link {
    color: var(--ink-soft);
    font-size: 0.93rem;
    font-weight: 700;
    transition: color 180ms ease;
}

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

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.lang-btn {
    min-width: 42px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink-soft);
    padding: 7px 10px;
    font-size: 0.82rem;
    font-weight: 800;
}

.lang-btn.active {
    background: var(--ink);
    color: #ffffff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    padding: 18px 0 24px;
    display: grid;
    gap: 14px;
}

.mobile-menu .nav-link {
    padding: 10px 0;
    font-size: 1rem;
}

.hero {
    position: relative;
    padding: 82px 0 68px;
}

.hero::before,
.section-flow::before {
    content: "";
    position: absolute;
    pointer-events: none;
    width: 920px;
    height: 420px;
    border: 2px solid rgba(24, 199, 184, 0.16);
    border-left-color: transparent;
    border-bottom-color: rgba(246, 200, 76, 0.32);
    border-radius: 50%;
    transform: rotate(-10deg);
    z-index: -1;
}

.hero::before {
    top: 80px;
    right: -360px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border: 1px solid rgba(45, 190, 126, 0.26);
    border-radius: 999px;
    background: rgba(223, 252, 241, 0.8);
    color: #126b4b;
    padding: 8px 13px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow i {
    color: var(--green);
}

.hero-title {
    margin: 22px 0 0;
    color: var(--ink);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(2.7rem, 4.6vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.text-aqua {
    color: var(--aqua-dark);
}

.hero-copy {
    max-width: 640px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 13px 22px;
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
    background: var(--ink);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(16, 36, 62, 0.2);
}

.btn-primary:hover {
    background: #173455;
}

.btn-secondary {
    border-color: rgba(24, 199, 184, 0.32);
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
}

.btn-secondary:hover {
    background: var(--mint);
}

.hero-note {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.note-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(16, 36, 62, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
}

.media-card {
    position: relative;
    border: 1px solid rgba(24, 199, 184, 0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(223, 252, 241, 0.86), rgba(255, 255, 255, 0.96) 48%, rgba(246, 200, 76, 0.18));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-media {
    min-height: unset;
    height: auto;
    padding: 16px;
}

.media-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: calc(var(--radius-lg) - 6px);
    pointer-events: none;
    z-index: 1;
}

.flow-line {
    position: absolute;
    left: -8%;
    right: -8%;
    top: 24%;
    height: 160px;
    border-top: 3px solid rgba(24, 199, 184, 0.26);
    border-bottom: 3px solid rgba(246, 200, 76, 0.34);
    border-radius: 50%;
    transform: rotate(-9deg);
}

.asset-frame {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background:
            linear-gradient(135deg, rgba(16, 36, 62, 0.08), transparent),
            repeating-linear-gradient(135deg, rgba(16, 36, 62, 0.05) 0 1px, transparent 1px 16px);
}

.asset-frame img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 220ms ease;
}

.asset-frame.has-image img {
    opacity: 1;
}

.asset-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px dashed rgba(16, 36, 62, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink-soft);
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 900;
}

.asset-frame.has-image .asset-label {
    opacity: 0;
}

.floating-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    padding: 14px 16px;
}

.floating-card strong {
    display: block;
    color: var(--ink);
    font-size: 0.96rem;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-float-one {
    left: -18px;
    bottom: 44px;
}

.hero-float-two {
    right: -12px;
    top: 54px;
}

.trust-strip {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.trust-band {
    padding: 0 0 80px;
}

.trust-band .trust-strip {
    margin-top: 0;
}

.trust-item,
.value-card,
.feature-card,
.product-card,
.step-card,
.calculator-card,
.help-card,
.company-card {
    border: 1px solid rgba(16, 36, 62, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.trust-item {
    min-height: 110px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-item i,
.icon-box {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--mint), rgba(246, 200, 76, 0.18));
    color: var(--aqua-dark);
    font-size: 1.35rem;
}

.trust-item strong,
.value-card h3,
.feature-card h3,
.product-card h3,
.step-card h3,
.help-card h3 {
    display: block;
    color: var(--ink);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.15;
}

.trust-item span {
    display: block;
    color: var(--muted);
    margin-top: 4px;
    font-size: 0.91rem;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(223, 252, 241, 0.45), rgba(255, 255, 255, 0.72));
}

.section-flow {
    position: relative;
}

.section-flow::before {
    left: -430px;
    top: 70px;
    transform: rotate(13deg);
}

.section-header {
    max-width: 730px;
    margin-bottom: 42px;
}

.section-header.centered {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--aqua-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.section-copy {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
}

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

.value-card,
.feature-card,
.product-card,
.step-card,
.help-card {
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.value-card:hover,
.feature-card:hover,
.step-card:hover,
.help-card:hover {
    transform: translateY(-5px);
    border-color: rgba(24, 199, 184, 0.25);
    box-shadow: var(--shadow-md);
}

.value-card h3,
.feature-card h3,
.product-card h3,
.step-card h3,
.help-card h3 {
    margin: 18px 0 0;
    font-size: 1.22rem;
}

.value-card p,
.feature-card p,
.product-card p,
.step-card p,
.help-card p,
.company-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 28px;
    align-items: stretch;
}

.product-card.featured {
    background:
        linear-gradient(135deg, #ffffff, rgba(223, 252, 241, 0.72));
    padding: 34px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 36, 62, 0.1);
    color: var(--ink-soft);
    padding: 8px 11px;
    font-size: 0.86rem;
    font-weight: 800;
}

.mini-panel {
    border-radius: 12px;
    background: var(--ink);
    color: #ffffff;
    padding: 22px;
}

.mini-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.step-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aqua), var(--gold));
}

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

.app-preview-section {
    padding-top: 58px;
}

.preview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.preview-head .section-header {
    margin-bottom: 0;
}

.carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(16, 36, 62, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    background: var(--ink);
    color: #ffffff;
}

.phone-carousel {
    max-width: 100%;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(223, 252, 241, 0.7), rgba(255, 255, 255, 0.88) 52%, rgba(246, 200, 76, 0.16));
    border: 1px solid rgba(16, 36, 62, 0.08);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.phone-track {
    position: relative;
    min-height: clamp(600px, 62vw, 800px);
    overflow: hidden;
    perspective: 1200px;
}

.preview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 34px;
    align-items: start;
}

.phone-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: end;
}

.phone-frame {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(300px, 30vw, 380px);
    aspect-ratio: 9 / 18;
    min-height: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.58);
    transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 320ms ease, filter 320ms ease, z-index 320ms ease;
    border-radius: 24px;
    border: 1px solid rgba(16, 36, 62, 0.13);
    background: linear-gradient(180deg, #ffffff, rgba(223, 252, 241, 0.5));
    box-shadow: var(--shadow-md);
    padding: 10px;
    filter: saturate(0.85) blur(0.2px);
    pointer-events: none;
    cursor: pointer;
}

.phone-frame.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 5;
    filter: none;
    pointer-events: auto;
}

.phone-frame.is-prev {
    opacity: 0.9;
    transform: translate(calc(-50% - min(18vw, 220px)), -50%) scale(0.8) rotateY(8deg);
    z-index: 4;
    pointer-events: auto;
}

.phone-frame.is-next {
    opacity: 0.9;
    transform: translate(calc(-50% + min(18vw, 220px)), -50%) scale(0.8) rotateY(-8deg);
    z-index: 4;
    pointer-events: auto;
}

.phone-frame.is-far-prev {
    opacity: 0.46;
    transform: translate(calc(-50% - min(34vw, 420px)), -50%) scale(0.62) rotateY(14deg);
    z-index: 2;
}

.phone-frame.is-far-next {
    opacity: 0.46;
    transform: translate(calc(-50% + min(34vw, 420px)), -50%) scale(0.62) rotateY(-14deg);
    z-index: 2;
}

.phone-frame .asset-frame {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 18px;
    background: #ffffff;
}

.phone-frame .asset-frame img {
    object-fit: contain;
    object-position: center;
}

.calculator-card {
    padding: 26px;
    background:
        linear-gradient(160deg, rgba(16, 36, 62, 0.98), rgba(19, 70, 88, 0.95));
    color: #ffffff;
}

.calculator-card h3 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: 1.55rem;
    line-height: 1.1;
}

.calculator-card p,
.calc-note {
    color: rgba(255, 255, 255, 0.7);
}

.calc-field {
    margin-top: 22px;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 9px;
    font-size: 0.92rem;
    font-weight: 800;
}

.range-input {
    width: 100%;
    accent-color: var(--gold);
}

.calc-select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0 12px;
}

.calc-select option {
    color: var(--ink);
}

.calc-number {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0 12px;
}

.calc-result {
    margin-top: 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px;
}

.calc-result span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calc-result strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: 2.25rem;
    line-height: 1;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.company-band {
    padding-top: 0;
}

.company-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(223, 252, 241, 0.92), rgba(255, 255, 255, 0.94) 55%, rgba(246, 200, 76, 0.2));
}

.company-card h2 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1;
}

.company-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 11px 14px;
    color: var(--ink);
    font-weight: 900;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
    padding: 38px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.footer-brand {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.footer-links a {
    color: #ffffff;
    font-weight: 800;
}

.copyright {
    margin: 6px 0 0;
    font-size: 0.9rem;
}

[data-aos="fade-up"] {
    transform: translate3d(0, 56px, 0);
}

[data-aos="fade-left"] {
    transform: translate3d(72px, 0, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-72px, 0, 0);
}

[data-aos].aos-animate {
    transform: translate3d(0, 0, 0);
}

.page-hero {
    position: relative;
    padding: 86px 0 72px;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    right: -260px;
    top: 40px;
    width: 760px;
    height: 360px;
    border-radius: 50%;
    border: 2px solid rgba(24, 199, 184, 0.16);
    border-bottom-color: rgba(246, 200, 76, 0.32);
    transform: rotate(-12deg);
    pointer-events: none;
}

.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 42px;
    align-items: center;
}

.page-title {
    margin: 18px 0 0;
    color: var(--ink);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.page-card {
    min-width: 0;
    height: 100%;
    border: 1px solid rgba(16, 36, 62, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    padding: 26px;
    overflow-wrap: anywhere;
    display: flex;
    flex-direction: column;
}

.page-card.emphasis {
    background: linear-gradient(135deg, rgba(223, 252, 241, 0.86), #ffffff 58%, rgba(246, 200, 76, 0.2));
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    align-items: stretch;
}

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

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

.list-clean {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 16px;
}

.list-clean li {
    display: flex;
    gap: 10px;
    color: var(--ink-soft);
    line-height: 1.75;
}

.list-clean i {
    color: var(--green);
    flex: 0 0 auto;
    margin-top: 4px;
}

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

.faq-item {
    border: 1px solid rgba(16, 36, 62, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.faq-item h3 {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: 1.12rem;
}

.faq-item p {
    margin: 10px 0 0;
    color: var(--muted);
}

.calc-page-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.result-tile {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
    padding: 16px;
}

.result-tile span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-tile strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 14px;
    }

    .nav-link {
        font-size: 0.86rem;
    }

    .page-hero-grid,
    .product-layout,
    .preview-layout,
    .split-grid,
    .calc-page-layout {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: unset;
        height: auto;
        padding: 16px;
    }
}

@media (max-width: 880px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 60px;
    }

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

    .trust-strip,
    .value-grid,
    .step-row,
    .feature-grid,
    .help-grid,
    .content-grid,
    .content-grid.two {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .phone-carousel {
        padding: 18px 16px;
    }

    .phone-track {
        gap: 14px;
        padding-bottom: 28px;
    }

    .phone-row {
        grid-template-columns: repeat(3, minmax(130px, 1fr));
        overflow-x: auto;
        padding: 8px 8px 42px;
        scroll-snap-type: x mandatory;
    }

    .phone-frame {
        scroll-snap-align: center;
        min-width: 150px;
    }

    .company-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

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

    .nav-wrap {
        min-height: 70px;
    }

    .brand-name {
        max-width: 190px;
        white-space: normal;
    }

    .brand-domain {
        display: none;
    }

    .hero {
        padding: 44px 0 58px;
    }

    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translate3d(0, 48px, 0) !important;
    }

    [data-aos].aos-animate {
        transform: translate3d(0, 0, 0) !important;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10.8vw, 3rem);
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-media {
        min-height: unset;
        height: auto;
        padding: 16px;
    }

    .floating-card {
        position: absolute;
        max-width: 150px;
        padding: 10px 11px;
        margin-top: 0;
    }

    .hero-float-one {
        left: 10px;
        bottom: 10px;
    }

    .hero-float-two {
        right: 10px;
        top: 10px;
    }

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

    .floating-card span {
        font-size: 0.72rem;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 34px;
    }

    .trust-band {
        padding-bottom: 56px;
    }

    .trust-band .trust-strip {
        margin-top: 0;
    }

    .value-grid,
    .step-row,
    .feature-grid,
    .help-grid,
    .content-grid,
    .content-grid.two,
    .result-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 150px;
        padding: 16px 14px;
        flex-direction: column;
    }

    .trust-item i,
    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.18rem;
    }

    .section {
        padding: 72px 0;
    }

    .page-hero {
        padding: 58px 0 54px;
    }

    .app-preview-section {
        padding-top: 42px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .product-card.featured,
    .company-card {
        padding: 24px;
    }

    .phone-carousel {
        border-radius: 20px;
        padding: 14px 10px;
        margin-inline: -2px;
    }

    .phone-track {
        min-height: 640px;
    }

    .phone-track .phone-frame,
    .phone-frame {
        width: min(78vw, 320px);
    }

    .phone-track .phone-frame .asset-frame,
    .phone-frame .asset-frame {
        min-height: 0;
    }

    .phone-row {
        grid-template-columns: repeat(5, minmax(150px, 1fr));
    }

    .phone-frame.is-prev {
        transform: translate(calc(-50% - 36vw), -50%) scale(0.74) rotateY(8deg);
    }

    .phone-frame.is-next {
        transform: translate(calc(-50% + 36vw), -50%) scale(0.74) rotateY(-8deg);
    }

    .phone-frame.is-far-prev {
        transform: translate(calc(-50% - 66vw), -50%) scale(0.58) rotateY(14deg);
    }

    .phone-frame.is-far-next {
        transform: translate(calc(-50% + 66vw), -50%) scale(0.58) rotateY(-14deg);
    }

    .company-contact {
        width: 100%;
        justify-content: center;
        overflow-wrap: anywhere;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
