:root {
    --bg: #07111f;
    --bg-deep: #040914;
    --surface: rgba(12, 24, 42, 0.72);
    --surface-strong: rgba(10, 19, 35, 0.92);
    --surface-light: #edf4fb;
    --surface-soft: #f6f9fd;
    --text: #eff7ff;
    --text-dark: #112034;
    --muted: #9ab0c9;
    --muted-dark: #5d6d82;
    --line: rgba(160, 210, 255, 0.16);
    --line-dark: rgba(20, 52, 84, 0.12);
    --cyan: #7eefff;
    --cyan-strong: #55d6f5;
    --violet: #aa92ff;
    --silver: #dbe8f6;
    --shadow: 0 28px 80px rgba(1, 8, 20, 0.34);
    --shadow-soft: 0 18px 48px rgba(7, 18, 33, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
    --transition: 280ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans Georgian", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(86, 164, 255, 0.16), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(170, 146, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #08101a 45%, #091726 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

.site-shell {
    position: relative;
    isolation: isolate;
}

.ambient {
    position: fixed;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.55;
}

.ambient-one {
    top: 12%;
    left: -6rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(126, 239, 255, 0.24), transparent 70%);
}

.ambient-two {
    top: 40%;
    right: -5rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(170, 146, 255, 0.22), transparent 70%);
}

.ambient-three {
    bottom: 8%;
    left: 22%;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
}

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

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

.section-light {
    background:
        linear-gradient(180deg, rgba(244, 248, 252, 0.98), rgba(233, 241, 249, 0.98));
    color: #34383d
    
}

.section-light::before,
.section-light::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 122, 168, 0.32), transparent);
}

.section-light::before {
    top: 0;
}

.section-light::after {
    bottom: 0;
}

.glass-card {
    background: linear-gradient(180deg, rgba(15, 28, 48, 0.9), rgba(9, 20, 37, 0.74));
    border: 1px solid rgba(153, 217, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.section-light .glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(239, 246, 252, 0.88));
    border-color: rgba(91, 129, 171, 0.14);
    box-shadow: var(--shadow-soft);
}

.section-light .metric-label,
.section-light .metric-card span:not(.metric-value),
.section-light .section-heading p,
.section-light .info-card p,
.section-light .step-card p {
    color: var(--muted-dark);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    transition: padding var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 13, 24, 0.74);
    border-bottom: 1px solid rgba(160, 210, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 32px rgba(0, 8, 18, 0.24);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, var(--cyan) 45%, rgba(126, 239, 255, 0.2) 100%);
    box-shadow: 0 0 24px rgba(126, 239, 255, 0.6);
}

.brand-text {
    font-family: "Noto Serif Georgian", serif;
    font-size: 1.12rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(160, 210, 255, 0.12);
    border-radius: 999px;
    background: rgba(8, 17, 31, 0.35);
    backdrop-filter: blur(12px);
}

.nav-link {
    position: relative;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--muted);
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(126, 239, 255, 0.12);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(9, 18, 33, 0.74);
    border: 1px solid rgba(160, 210, 255, 0.14);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

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

.button-primary {
    color: #082033;
    background: linear-gradient(135deg, #f8fdff 0%, #8cecff 60%, #64d5ff 100%);
    box-shadow: 0 18px 34px rgba(95, 218, 245, 0.28);
}

.button-primary:hover {
    box-shadow: 0 24px 40px rgba(95, 218, 245, 0.34);
}

.button-secondary,
.button-outline {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(160, 210, 255, 0.18);
}

.button-secondary:hover,
.button-outline:hover {
    border-color: rgba(126, 239, 255, 0.34);
    box-shadow: 0 12px 28px rgba(10, 23, 39, 0.3);
}

.button-small {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.94rem;
}

.hero {
    padding-top: 56px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 48px;
    align-items: center;
}

.hero-copy {
    order: 1;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan);
}

.eyebrow-dot,
.section-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(126, 239, 255, 0.65);
}

.hero h1,
.section-heading h2,
.product-copy h2,
.audience-copy h2,
.app-copy h2,
.cta-panel h2 {
    margin: 22px 0 18px;
    font-family: "Noto Serif Georgian", serif;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero h1 {
    font-size: clamp(2.9rem, 6vw, 5.2rem);
    max-width: 12ch;
}

.hero-text,
.section-heading p,
.product-copy p,
.audience-copy p,
.app-copy p,
.cta-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 62ch;
}

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

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.feature-pill {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(160, 210, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--silver);
    font-size: 0.95rem;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.trust-card {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(160, 210, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.trust-card strong,
.signal-card strong,
.solution-item strong,
.audience-card strong,
.app-benefit strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.trust-card span,
.signal-card span,
.solution-item p,
.audience-card span,
.app-benefit span,
.metric-label,
.why-card p,
.info-card p,
.step-card p,
.footer p,
.footer-links a,
.footer-links span {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.96rem;
}

.hero-visual {
    position: relative;
    order: 2;
}

.visual-panel {
    position: relative;
    padding: 26px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 560px;
}

.visual-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(126, 239, 255, 0.08), transparent 40%),
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.11), transparent 26%);
    pointer-events: none;
}

.visual-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.86rem;
    color: var(--silver);
}

.product-stage {
    position: relative;
    height: 420px;
    margin-top: 26px;
    display: grid;
    place-items: center;
}

.product-stage-inner {
    position: relative;
    width: min(100%, 540px);
    height: 100%;
    display: grid;
    place-items: center;
    will-change: transform;
}

.product-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.orb-cyan {
    width: 320px;
    height: 320px;
    left: 10%;
    top: 10%;
    background: radial-gradient(circle, rgba(126, 239, 255, 0.34), transparent 68%);
}

.orb-violet {
    width: 280px;
    height: 280px;
    right: 6%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(170, 146, 255, 0.3), transparent 70%);
}

.product-image-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    padding: 18px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(160, 210, 255, 0.14);
    box-shadow: 0 28px 80px rgba(1, 8, 20, 0.42);
    backdrop-filter: blur(18px);
    animation: heroFloat 6.8s ease-in-out infinite;
}

.product-image-shell::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(126, 239, 255, 0.42), rgba(255, 255, 255, 0.08), rgba(170, 146, 255, 0.34));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    pointer-events: none;
}

.product-image-frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(126, 239, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(6, 14, 26, 0.98), rgba(11, 20, 34, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-image-shell:hover .product-image-frame {
    transform: translateY(-4px);
    border-color: rgba(126, 239, 255, 0.24);
    box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.08), 0 24px 48px rgba(4, 12, 26, 0.36);
}

.hero-product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.01);
}

.floating-tag {
    position: absolute;
    z-index: 3;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(160, 210, 255, 0.18);
    background: rgba(7, 16, 29, 0.7);
    box-shadow: 0 14px 28px rgba(2, 10, 20, 0.24);
    backdrop-filter: blur(14px);
    color: var(--text);
    font-size: 0.92rem;
    white-space: nowrap;
}

.tag-top-right {
    top: 18px;
    right: 0;
}

.tag-left {
    left: -4px;
    top: 42%;
}

.tag-bottom-left {
    left: 22px;
    bottom: 28px;
}

.tag-bottom-right {
    right: 8px;
    bottom: 72px;
}

.band-device {
    position: relative;
    width: min(100%, 410px);
    height: 170px;
    display: grid;
    place-items: center;
}

.band-shell {
    position: absolute;
    width: 100%;
    height: 82px;
    border-radius: 999px;
    border: 1px solid rgba(161, 212, 255, 0.14);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(170, 146, 255, 0.16), rgba(126, 239, 255, 0.06));
    box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.05), 0 26px 60px rgba(4, 10, 24, 0.46);
}

.band-shell::before,
.band-shell::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid rgba(130, 194, 255, 0.14);
    transform: translateY(-50%);
}

.band-shell::before {
    left: -10px;
}

.band-shell::after {
    right: -10px;
}

.band-core {
    width: 170px;
    height: 110px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(249, 253, 255, 0.82), rgba(124, 231, 255, 0.34));
    border: 1px solid rgba(242, 250, 255, 0.34);
    box-shadow: 0 18px 40px rgba(6, 12, 28, 0.46), inset 0 1px 18px rgba(255, 255, 255, 0.34);
}

.sensor {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(126, 239, 255, 0.8);
    transform: translateY(-50%);
}

.sensor-a {
    left: 28%;
}

.sensor-b {
    left: 42%;
}

.sensor-c {
    right: 42%;
}

.sensor-d {
    right: 28%;
}

.wave-display {
    margin-top: 8px;
    height: 220px;
}

.wave-display svg {
    width: 100%;
    height: 100%;
}

.wave-base,
.wave-primary,
.wave-secondary {
    fill: none;
    stroke-linecap: round;
}

.wave-base {
    stroke: rgba(126, 239, 255, 0.12);
    stroke-width: 12;
}

.wave-primary {
    stroke: url(#waveGradient);
    stroke-width: 7;
    stroke-dasharray: 18 12;
    animation: dash 10s linear infinite;
}

.wave-secondary {
    stroke: rgba(170, 146, 255, 0.34);
    stroke-width: 4;
    stroke-dasharray: 10 10;
    animation: dash 13s linear infinite reverse;
}

.signal-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.signal-card,
.solution-item,
.metric-card,
.why-card,
.team-card,
.benefit-card,
.testimonial-card,
.screen-card,
.app-benefit,
.audience-card {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(160, 210, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.signal-card:hover,
.solution-item:hover,
.metric-card:hover,
.why-card:hover,
.team-card:hover,
.benefit-card:hover,
.testimonial-card:hover,
.screen-card:hover,
.app-benefit:hover,
.audience-card:hover,
.info-card:hover,
.step-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(126, 239, 255, 0.28);
    box-shadow: 0 18px 42px rgba(3, 12, 25, 0.22);
}

.signal-label,
.pricing-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.product-copy h2,
.audience-copy h2,
.app-copy h2,
.cta-panel h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.problem-grid,
.steps-grid,
.why-grid,
.benefits-grid,
.testimonials-grid,
.team-grid {
    display: grid;
    gap: 22px;
    margin-top: 42px;
}

.problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-dark);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.98));
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.icon-wrap {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(85, 214, 245, 0.16), rgba(170, 146, 255, 0.12));
    color: #1d5b84;
}

.icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.info-card h3,
.step-card h3,
.why-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.product-grid,
.comfort-grid,
.audience-grid,
.app-grid,
.market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.product-panel {
    position: relative;
    min-height: 580px;
    padding: 36px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.product-panel::before {
    content: "";
    position: absolute;
    inset: auto -10% -20% auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(126, 239, 255, 0.28), transparent 70%);
    filter: blur(14px);
}

.product-photo-stage {
    position: relative;
    min-height: 290px;
    display: grid;
    place-items: center;
}

.product-photo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.product-photo-cyan {
    width: 260px;
    height: 260px;
    left: 4%;
    top: 4%;
    background: radial-gradient(circle, rgba(126, 239, 255, 0.28), transparent 72%);
}

.product-photo-violet {
    width: 230px;
    height: 230px;
    right: 4%;
    bottom: 4%;
    background: radial-gradient(circle, rgba(170, 146, 255, 0.24), transparent 72%);
}

.product-photo-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 480px);
    padding: 16px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(160, 210, 255, 0.14);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 64px rgba(6, 14, 28, 0.3);
    animation: heroFloat 7s ease-in-out infinite;
}

.product-photo-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(10, 20, 36, 0.94), rgba(8, 16, 29, 0.94));
    box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-photo-shell:hover .product-photo-frame {
    transform: translateY(-4px);
    border-color: rgba(126, 239, 255, 0.26);
    box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.08), 0 26px 52px rgba(3, 12, 24, 0.34);
}

.product-photo-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-band {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    min-height: 220px;
}

.product-strap {
    height: 70px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(160, 210, 255, 0.12);
}

.product-center {
    width: 172px;
    height: 122px;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, rgba(250, 253, 255, 0.9), rgba(121, 218, 255, 0.36));
    border: 1px solid rgba(245, 250, 255, 0.34);
    box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.26);
}

.product-center span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(20, 60, 88, 0.84);
}

.product-points {
    position: relative;
    min-height: 250px;
    margin-top: 40px;
}

.point {
    position: absolute;
    max-width: 220px;
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(160, 210, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.point strong {
    display: block;
    margin-bottom: 8px;
}

.point span {
    color: var(--muted);
    line-height: 1.7;
}

.point-one {
    top: 8px;
    right: 0;
}

.point-two {
    left: 0;
    top: 110px;
}

.point-three {
    right: 24px;
    bottom: 10px;
}

.solution-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.comfort-grid {
    align-items: center;
}

.comfort-points {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.comfort-point {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 52, 84, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.comfort-point:hover {
    transform: translateY(-5px);
    border-color: rgba(85, 214, 245, 0.24);
    box-shadow: 0 18px 36px rgba(35, 57, 89, 0.14);
}

.comfort-point strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.comfort-point p {
    margin: 0;
    color: var(--muted-dark);
    line-height: 1.74;
}

.comfort-panel {
    position: relative;
    padding: 26px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 640px;
}

.comfort-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.orb-cyan-soft {
    width: 260px;
    height: 260px;
    top: 8%;
    left: 4%;
    background: radial-gradient(circle, rgba(126, 239, 255, 0.24), transparent 70%);
}

.orb-violet-soft {
    width: 240px;
    height: 240px;
    right: 2%;
    bottom: 6%;
    background: radial-gradient(circle, rgba(170, 146, 255, 0.22), transparent 72%);
}

.comfort-image-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    margin: 42px auto 0;
}

.comfort-image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 252, 0.94));
    box-shadow: 0 28px 70px rgba(8, 18, 34, 0.2);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.comfort-image-shell:hover .comfort-image-frame {
    transform: translateY(-4px);
    border-color: rgba(126, 239, 255, 0.26);
    box-shadow: 0 34px 82px rgba(8, 18, 34, 0.24);
}

.comfort-image {
    display: block;
    width: 100%;
    height: auto;
}

.comfort-badge {
    position: absolute;
    z-index: 3;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(20, 52, 84, 0.12);
    color: var(--text-dark);
    box-shadow: 0 14px 32px rgba(18, 35, 60, 0.12);
    backdrop-filter: blur(10px);
    font-size: 0.92rem;
    font-weight: 600;
}

.badge-top {
    top: 34px;
    right: 28px;
}

.badge-bottom {
    left: 32px;
    bottom: 30px;
}

.solution-item p {
    margin: 0;
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.step-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(85, 214, 245, 0.9), rgba(170, 146, 255, 0.8));
}

.step-number {
    display: inline-block;
    margin-bottom: 16px;
    color: #3c6a8f;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.audience-list,
.app-benefits {
    display: grid;
    gap: 16px;
}

.team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 248, 253, 0.98));
    border: 1px solid rgba(20, 52, 84, 0.1);
    box-shadow: var(--shadow-soft);
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(126, 239, 255, 0.9), rgba(170, 146, 255, 0.8));
    opacity: 0.75;
}

.team-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.avatar {
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #082033;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 14px rgba(255, 255, 255, 0.32), 0 18px 32px rgba(19, 36, 62, 0.14);
}

.avatar::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.avatar span {
    position: relative;
    z-index: 1;
}

.avatar-elene {
    background: linear-gradient(145deg, #f6fbff, #9be9ff 58%, #abc0ff);
}

.avatar-mariam {
    background: linear-gradient(145deg, #ffffff, #d1efff 50%, #cab9ff);
}

.avatar-natali {
    background: linear-gradient(145deg, #f8fdff, #9de5ff 52%, #94b7ff);
}

.avatar-nini {
    background: linear-gradient(145deg, #f7fbff, #b4f3ff 45%, #c3b0ff);
}

.avatar-sofia {
    background: linear-gradient(145deg, #ffffff, #d7efff 52%, #aed7ff);
}

.avatar-saba {
    background: linear-gradient(145deg, #f9fdff, #8ee9ff 48%, #cfb3ff);
}

.social-pill {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #23476d;
    font-size: 0.94rem;
    font-weight: 700;
    border: 1px solid rgba(21, 53, 83, 0.1);
    background: rgba(255, 255, 255, 0.84);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.social-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(85, 214, 245, 0.38);
    box-shadow: 0 12px 24px rgba(57, 93, 138, 0.14);
}

.team-card h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.team-role {
    margin: 8px 0 10px;
    color: #2f658d;
    font-weight: 600;
}

.team-bio {
    margin: 0;
    color: var(--muted-dark);
    line-height: 1.72;
}

.benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 20px;
    color: var(--cyan);
    background: linear-gradient(145deg, rgba(126, 239, 255, 0.14), rgba(170, 146, 255, 0.12));
    border: 1px solid rgba(160, 210, 255, 0.12);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.benefit-card h3,
.testimonial-meta strong {
    margin: 0 0 10px;
    font-size: 1.14rem;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.audience-section {
    overflow: hidden;
}

.audience-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.metrics-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-xl);
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
}

.metric-value {
    display: block;
    margin-bottom: 10px;
    font-family: "Noto Serif Georgian", serif;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1;
}

.market-chart {
    padding: 26px;
    border-radius: var(--radius-xl);
}

.chart-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    color: var(--text-dark);
}

.chart-head span {
    color: var(--muted-dark);
    font-size: 0.94rem;
}

.bar-group {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.bar-group span {
    color: var(--text-dark);
    font-weight: 600;
}

.bar-track {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: rgba(24, 63, 94, 0.1);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #7eefff, #86bcff, #aa92ff);
    transform-origin: left center;
    animation: grow 1.6s ease forwards;
}

.bar-one {
    width: 52%;
}

.bar-two {
    width: 74%;
}

.bar-three {
    width: 88%;
}

.pricing-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(20, 52, 84, 0.12);
}

.pricing-box strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.why-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.why-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.why-card h3 {
    color: var(--text);
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    padding: 28px;
    min-height: 100%;
}

.section-light .testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 253, 0.98));
    border-color: rgba(20, 52, 84, 0.1);
    box-shadow: var(--shadow-soft);
}

.testimonial-quote {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.04rem;
    line-height: 1.9;
}

.testimonial-meta {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(20, 52, 84, 0.12);
}

.testimonial-meta strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-meta span {
    color: var(--muted-dark);
    font-size: 0.94rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

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

.faq-item {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 210, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(126, 239, 255, 0.28);
    box-shadow: 0 18px 42px rgba(3, 12, 25, 0.2);
}

.faq-item.active {
    border-color: rgba(126, 239, 255, 0.24);
    box-shadow: 0 22px 46px rgba(3, 12, 25, 0.22);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--text);
    text-align: left;
    font-weight: 600;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--cyan);
    transform: translate(-50%, -50%);
    transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 320ms ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 24px 0;
    color: var(--muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer-inner {
    padding-bottom: 24px;
}

.app-grid {
    align-items: center;
}

.phone-wrap {
    display: flex;
    justify-content: center;
}

.phone-frame {
    position: relative;
    width: min(100%, 360px);
    padding: 16px;
    border-radius: 40px;
}

.phone-notch {
    width: 42%;
    height: 28px;
    margin: 0 auto 18px;
    border-radius: 0 0 18px 18px;
    background: rgba(7, 15, 28, 0.85);
}

.phone-screen {
    padding: 22px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(126, 239, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(10, 20, 36, 0.98), rgba(8, 14, 27, 0.98));
}

.screen-top span,
.screen-score span,
.screen-card span,
.footer-links strong {
    display: block;
    color: var(--muted);
}

.screen-top strong,
.screen-score strong,
.screen-card strong {
    display: block;
    margin-top: 6px;
}

.screen-score {
    margin-top: 20px;
    padding: 20px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.screen-score strong {
    font-family: "Noto Serif Georgian", serif;
    font-size: 3.8rem;
    line-height: 1;
}

.screen-score small {
    color: var(--muted);
    display: inline-block;
    margin-top: 10px;
    line-height: 1.6;
}

.mini-chart {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    height: 116px;
    margin-top: 24px;
}

.mini-bar {
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, rgba(126, 239, 255, 0.95), rgba(170, 146, 255, 0.35));
    animation: breathe 4s infinite ease-in-out;
}

.m1 {
    height: 44%;
    animation-delay: -0.4s;
}

.m2 {
    height: 68%;
    animation-delay: -1s;
}

.m3 {
    height: 82%;
    animation-delay: -0.8s;
}

.m4 {
    height: 64%;
    animation-delay: -1.2s;
}

.m5 {
    height: 90%;
    animation-delay: -1.5s;
}

.m6 {
    height: 58%;
    animation-delay: -0.6s;
}

.screen-cards {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.screen-card {
    background: rgba(255, 255, 255, 0.05);
}

.screen-card.wide strong {
    font-size: 0.98rem;
    line-height: 1.6;
}

.final-cta {
    padding-top: 96px;
    padding-bottom: 120px;
}

.cta-panel {
    padding: 52px;
    border-radius: 36px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(126, 239, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(11, 24, 42, 0.96), rgba(7, 15, 28, 0.96));
    border: 1px solid rgba(160, 210, 255, 0.16);
    box-shadow: var(--shadow);
}

.cta-panel p {
    margin-inline: auto;
}

.cta-panel .hero-actions {
    justify-content: center;
}

.footer {
    padding: 0 0 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(160, 210, 255, 0.12);
    background: rgba(8, 17, 31, 0.68);
    backdrop-filter: blur(16px);
}

.footer-logo {
    margin-bottom: 14px;
}

.footer p {
    max-width: 38ch;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links strong {
    color: var(--text);
    margin-bottom: 2px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(8, 17, 31, 0.82);
    border: 1px solid rgba(160, 210, 255, 0.16);
    color: var(--text);
    box-shadow: 0 18px 28px rgba(2, 10, 20, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
    z-index: 25;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--delay, 0ms);
}

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

.reveal.zoom-in {
    transform: translateY(20px) scale(0.96);
}

.reveal.slide-in {
    transform: translateX(-32px);
}

.reveal.slide-in.is-visible {
    transform: translateX(0);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.98);
        opacity: 0.46;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes dash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -160;
    }
}

@keyframes grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.86;
    }

    50% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

@media (max-width: 1180px) {

    .hero-grid,
    .product-grid,
    .comfort-grid,
    .audience-grid,
    .app-grid,
    .market-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 24px;
    }

    .hero-copy {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .product-stage {
        height: 460px;
    }

    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

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

@media (max-width: 920px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 90px 0;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 14px;
        right: 14px;
        display: grid;
        padding: 16px;
        border-radius: 24px;
        background: rgba(7, 15, 28, 0.94);
        border: 1px solid rgba(160, 210, 255, 0.12);
        box-shadow: 0 24px 40px rgba(4, 10, 24, 0.36);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
    }

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

    .nav-actions .button-outline {
        display: none;
    }

    .hero-trust,
    .metrics-panel,
    .pricing-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .visual-panel,
    .comfort-panel,
    .product-panel,
    .cta-panel {
        padding: 28px;
    }

    .floating-tag {
        font-size: 0.88rem;
    }

    .tag-left {
        left: 8px;
    }
}

@media (max-width: 680px) {
    .hero h1 {
        max-width: none;
    }

    .problem-grid,
    .steps-grid,
    .why-grid,
    .signal-notes,
    .team-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .button,
    .button-small {
        width: 100%;
    }

    .visual-panel {
        min-height: auto;
    }

    .comfort-panel {
        min-height: auto;
    }

    .product-stage {
        height: auto;
        min-height: 0;
    }

    .product-panel {
        min-height: auto;
    }

    .product-photo-stage {
        min-height: 0;
    }

    .product-photo-shell {
        width: 100%;
        padding: 12px;
        border-radius: 24px;
    }

    .product-photo-frame {
        border-radius: 18px;
    }

    .comfort-image-shell {
        margin-top: 20px;
    }

    .comfort-badge {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 14px;
    }

    .product-band {
        grid-template-columns: 1fr;
    }

    .product-strap {
        display: none;
    }

    .product-center {
        margin: 0 auto;
    }

    .product-points {
        display: grid;
        gap: 14px;
        min-height: auto;
    }

    .point {
        position: static;
        max-width: none;
    }

    .phone-frame {
        width: 100%;
    }

    .product-stage-inner {
        width: 100%;
        gap: 12px;
    }

    .product-image-shell {
        width: 100%;
        padding: 14px;
        border-radius: 28px;
    }

    .product-image-frame {
        border-radius: 22px;
    }

    .floating-tag {
        position: static;
        white-space: normal;
        width: 100%;
        text-align: center;
    }

    .cta-panel {
        text-align: left;
    }

    .cta-panel .hero-actions {
        justify-content: flex-start;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer-inner {
        padding-inline: 20px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

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