@import url("variables.css");

.headline {
    font-size:clamp(2.2rem,4.5vw,4rem);
    font-weight:700;
    letter-spacing:-0.035em;
    line-height:1.08;
}

.subhead {
    font-size:clamp(1.5rem,2.5vw,2.2rem);
    font-weight:600;
    letter-spacing:-0.02em;
    line-height:1.2;
}

.sec {
    padding:7rem 0;
    position:relative;
    overflow:hidden;
}

.sec-header {
    text-align:center;
    margin-bottom:4rem;
}

.sec-header p {
    max-width:560px;
    margin:1.25rem auto 0;
    font-size:1.1rem;
    color:var(--muted);
}

.chip-blue {
    background: rgb(0 255 136 / 12%);
    border-color: rgb(0 255 136 / 47%);
    color: var(--accent);
}

.chip-purple {
    background: rgb(15 219 118 / 15%);
    border-color: rgb(12 228 122 / 41%);
    color: #15e67b;
}

.btn-primary:hover {
    background:var(--accent);
    transform:translateY(-3px);
    box-shadow:0 0 40px rgba(0,255,136,0.5);
}

.g4 {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:1.5rem;
}

.og {
    background:radial-gradient(circle,rgba(0,255,136,0.16) 0%,transparent 70%);
}

.ob {
    background:radial-gradient(circle,rgba(0,212,255,0.12) 0%,transparent 70%);
}

.op {
    background:radial-gradient(circle,rgba(123,92,255,0.1) 0%,transparent 70%);
}

.div {
    height:1px;
    background:linear-gradient(90deg,transparent,var(--border),transparent);
}

#hero {
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:9rem 2rem 6rem;
    position:relative;
    overflow:hidden;
}

.hero-bg {
    position:absolute;
    inset:0;
    z-index:0;
    background:
    linear-gradient(to bottom, rgba(6,6,8,0.6) 0%, rgba(6,6,8,0.3) 40%, rgba(6,6,8,0.7) 80%, rgba(6,6,8,1) 100%),
    url('../../assets/images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-bg::after {
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,255,136,0.08) 0%, transparent 70%);
}

#hero-canvas {
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
}

.hero-inner {
    position:relative;
    z-index:3;
    max-width:900px;
    margin:0 auto;
}

.hero-tagline {
    font-size:1.2rem;
    color:rgba(255,255,255,0.65);
    max-width:620px;
    margin:1.75rem auto 2.75rem;
    line-height:1.8;
}

.hero-ctas {
    display:flex;
    gap:1rem;
    justify-content:center;
    flex-wrap:wrap;
}

.hero-device-float {
    position:absolute;
    right:3%;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
    width:480px;
    animation:float 6s ease-in-out infinite;
    filter:drop-shadow(0 0 60px rgba(0,255,136,0.4));
}

.hero-device-float img {
    width:100%;
    border-radius:16px;
    opacity:0.95;
}

.hero-device-glow {
    position:absolute;
    bottom:-40px;
    left:50%;
    transform:translateX(-50%);
    width:200px;
    height:40px;
    background:rgba(0,255,136,0.4);
    filter:blur(30px);
    border-radius:50%;
}

.hero-stats {
    display:flex;
    gap:2.5rem;
    justify-content:center;
    margin-top:3.5rem;
    flex-wrap:wrap;
    position:relative;
    z-index:3;
    padding:2rem 2.5rem;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:20px;
    backdrop-filter:blur(10px);
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.hero-stat-val {
    font-size:2.4rem;
    font-weight:800;
    letter-spacing:-0.04em;
}

.hero-stat-val span {
    color:var(--accent);
}

.hero-stat-label {
    font-size:0.8rem;
    color:var(--muted);
    margin-top:0.2rem;
    letter-spacing:0.04em;
}

.scroll-hint {
    position:absolute;
    bottom:2rem;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.4rem;
    font-size:0.7rem;
    letter-spacing:0.15em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.35);
    z-index:3;
    cursor:pointer;
    text-decoration:none;
    transition:color 0.3s;
    animation:bounce 2s ease-in-out infinite;
}

.scroll-hint:hover {
    color:rgba(0,255,136,0.8);
}

.scroll-hint svg {
    opacity:0.5;
    transition:opacity 0.3s;
}

.scroll-hint:hover svg {
    opacity:1;
}

.spotlight-wrap {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    min-height:600px;
    border:1px solid var(--border);
    border-radius:28px;
    overflow:hidden;
}

.spotlight-img {
    position:relative;
    overflow:hidden;
    background:#0a0a10;
}

.spotlight-img img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
    filter:brightness(0.85) saturate(1.1);
}

.spotlight-img:hover img {
    transform:scale(1.04);
}

.spotlight-img-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(0,255,136,0.06),transparent);
    pointer-events:none;
}

.spotlight-content {
    padding:4rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:var(--surface);
}

.spec-list {
    display:flex;
    flex-direction:column;
    gap:1rem;
    margin-top:2rem;
}

.spec-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0.85rem 1.25rem;
    background:rgba(255,255,255,0.03);
    border:1px solid var(--border);
    border-radius:12px;
    font-size:0.9rem;
}

.spec-key {
    color:var(--muted);
}

.spec-val {
    font-weight:700;
    color:var(--accent);
}

.gallery-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:300px 300px;
    gap:1rem;
    border-radius:24px;
    overflow:hidden;
}

.gallery-item {
    position:relative;
    overflow:hidden;
    cursor:pointer;
    background:#0d0d12;
}

.gallery-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.5s ease,filter 0.5s ease;
    filter:brightness(0.8) saturate(1.2);
}

.gallery-item:hover img {
    transform:scale(1.06);
    filter:brightness(1) saturate(1.3);
}

.gallery-item-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,transparent 50%);
    display:flex;
    align-items:flex-end;
    padding:1.5rem;
    opacity:0;
    transition:opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity:1;
}

.gallery-item-label {
    font-size:0.85rem;
    font-weight:700;
    color:#fff;
}

.gallery-item:first-child {
    grid-row:1/3;
}

.gallery-item:nth-child(4) {
    grid-column:2/4;
}

.video-hero {
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:#0a0a10;
    border:1px solid var(--border);
    aspect-ratio:16/9;
    cursor:pointer;
}

.video-hero-thumb {
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.6);
    transition:filter 0.3s;
}

.video-hero:hover .video-hero-thumb {
    filter:brightness(0.75);
}

.video-play-btn {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(0,255,136,0.15);
    border:2px solid rgba(0,255,136,0.5);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s;
    backdrop-filter:blur(10px);
}

.video-hero:hover .video-play-btn {
    background:rgba(0,255,136,0.3);
    transform:translate(-50%,-50%) scale(1.1);
    box-shadow:0 0 40px rgba(0,255,136,0.4);
}

.video-play-btn svg {
    color:var(--accent);
    margin-left:4px;
}

.video-label {
    position:absolute;
    bottom:1.5rem;
    left:1.5rem;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
    border:1px solid var(--border);
    border-radius:100px;
    padding:0.5rem 1.25rem;
    font-size:0.8rem;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:0.5rem;
}

.video-label-dot {
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--red);
    animation:blink 1.5s ease-in-out infinite;
}

.video-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
    margin-top:1.5rem;
}

.video-thumb {
    position:relative;
    border-radius:14px;
    overflow:hidden;
    background:#0a0a10;
    border:1px solid var(--border);
    aspect-ratio:16/9;
    cursor:pointer;
    transition:border-color 0.3s,transform 0.3s;
}

.video-thumb:hover {
    border-color:rgba(0,255,136,0.3);
    transform:translateY(-4px);
}

.video-thumb img {
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.65);
    transition:filter 0.3s;
}

.video-thumb:hover img {
    filter:brightness(0.85);
}

.video-thumb-play {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(0,0,0,0.6);
    border:1px solid rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s;
}

.video-thumb:hover .video-thumb-play {
    background:rgba(0,255,136,0.2);
    border-color:var(--accent);
}

.video-thumb-title {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:0.75rem;
    background:linear-gradient(to top,rgba(0,0,0,0.8),transparent);
    font-size:0.75rem;
    font-weight:600;
}

.video-modal {
    display:none;
    position:fixed;
    inset:0;
    z-index:1000;
    background:rgba(0,0,0,0.9);
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(10px);
}

.video-modal.open {
    display:flex;
}

.video-modal-inner {
    position:relative;
    width:90%;
    max-width:900px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--border);
}

.video-modal-close {
    position:absolute;
    top:1rem;
    right:1rem;
    z-index:10;
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(0,0,0,0.7);
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:var(--muted);
    font-size:1.2rem;
    transition:all 0.2s;
}

.video-modal-close:hover {
    background:rgba(255,255,255,0.1);
    color:#fff;
}

.video-modal iframe {
    width:100%;
    aspect-ratio:16/9;
    display:block;
    border:none;
}

.video-modal-placeholder {
    width:100%;
    aspect-ratio:16/9;
    background:linear-gradient(135deg,#0d0d18,#111120);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:1rem;
    color:var(--muted);
    font-size:1rem;
}

.video-modal-placeholder svg {
    color:var(--accent);
    opacity:0.5;
}

.device-viewer {
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:28px;
    padding:3rem;
    display:flex;
    gap:3rem;
    align-items:center;
}

.device-viewer-stage {
    flex:1;
    min-height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.dv-img {
    width:100%;
    max-width:400px;
    border-radius:16px;
    transition:all 0.5s cubic-bezier(0.16,1,0.3,1);
    filter:drop-shadow(0 20px 60px rgba(0,255,136,0.2));
    cursor:grab;
    user-select:none;
}

.dv-img:active {
    cursor:grabbing;
}

.dv-glow {
    position:absolute;
    bottom:-30px;
    left:50%;
    transform:translateX(-50%);
    width:60%;
    height:30px;
    background:rgba(0,255,136,0.3);
    filter:blur(25px);
    border-radius:50%;
}

.device-viewer-tabs {
    display:flex;
    flex-direction:column;
    gap:0.75rem;
    min-width:220px;
}

.dv-tab {
    padding:1rem 1.5rem;
    border-radius:14px;
    border:1px solid var(--border);
    background:transparent;
    cursor:pointer;
    transition:all 0.3s;
    text-align:left;
}

.dv-tab:hover {
    background:var(--surface2);
    border-color:var(--border2);
}

.dv-tab.active {
    background:var(--accent-dim);
    border-color:rgba(0,255,136,0.3);
}

.dv-tab-name {
    font-size:0.95rem;
    font-weight:700;
    color:var(--text);
    margin-bottom:0.2rem;
}

.dv-tab-desc {
    font-size:0.8rem;
    color:var(--muted);
}

.dv-tab.active .dv-tab-name {
    color:var(--accent);
}

.about-split {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:5rem;
    align-items:center;
}

.about-visual {
    background:linear-gradient(135deg,rgba(0,255,136,0.04),rgba(0,212,255,0.04));
    border:1px solid var(--border);
    border-radius:28px;
    overflow:hidden;
    position:relative;
    min-height:480px;
}

.about-visual img {
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.85;
    transition:transform 0.5s ease;
}

.about-visual:hover img {
    transform:scale(1.03);
}

.about-visual-badge {
    position:absolute;
    bottom:1.5rem;
    left:1.5rem;
    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(10px);
    border:1px solid var(--border);
    border-radius:14px;
    padding:1rem 1.5rem;
}

.about-visual-badge-title {
    font-size:0.75rem;
    color:var(--muted);
    margin-bottom:0.25rem;
}

.about-visual-badge-val {
    font-size:1.4rem;
    font-weight:800;
    color:var(--accent);
}

.inno-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1.5rem;
}

.inno-card {
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--r);
    padding:2.5rem;
    position:relative;
    overflow:hidden;
    transition:all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.inno-card:hover {
    border-color:rgba(0,255,136,0.25);
    transform:translateY(-5px);
}

.inno-num {
    font-size:4rem;
    font-weight:900;
    letter-spacing:-0.05em;
    color:rgba(0,255,136,0.07);
    position:absolute;
    top:1rem;
    right:1.5rem;
    line-height:1;
}

.inno-title {
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:1rem;
}

.inno-title span {
    color:var(--accent);
}

.inno-desc {
    font-size:0.93rem;
    color:var(--muted);
    line-height:1.75;
}

.steps-track {
    display:flex;
    gap:0;
    position:relative;
    margin-top:4rem;
}

.steps-track::before {
    content:'';
    position:absolute;
    top:2.5rem;
    left:2.5rem;
    right:2.5rem;
    height:1px;
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    opacity:0.25;
    z-index:0;
}

.step {
    flex:1;
    text-align:center;
    padding:0 1rem;
    position:relative;
    z-index:1;
}

.step-num {
    width:5rem;
    height:5rem;
    border-radius:50%;
    background:var(--bg);
    border:2px solid var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    font-weight:800;
    color:var(--accent);
    margin:0 auto 1.5rem;
    box-shadow:0 0 20px rgba(0,255,136,0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transition-delay: 0.05s;
}

.step-num:hover {
    transform: scale(1.35);
}

.step-title {
    font-size:1rem;
    font-weight:700;
    margin-bottom:0.5rem;
}

.step-desc {
    font-size:0.85rem;
    color:var(--muted);
    line-height:1.65;
}

.hw-cards {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2rem;
    margin-top:4rem;
}

.hw-card {
    border-radius:28px;
    padding:3rem;
    position:relative;
    overflow:hidden;
    transition:transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.hw-card:hover {
    transform:translateY(-8px);
}

.hw-card-base {
    background:var(--surface);
    border:1px solid var(--border);
}

.hw-card-pro {
    background:linear-gradient(135deg,rgba(0,255,136,0.07),rgba(0,212,255,0.04));
    border:1px solid rgba(0,255,136,0.28);
}

.hw-card-pro::before {
    content:'MOST POPULAR';
    position:absolute;
    top:1.5rem;
    right:1.5rem;
    font-size:0.65rem;
    font-weight:800;
    letter-spacing:0.1em;
    color:#000;
    background:var(--accent);
    padding:0.3rem 0.75rem;
    border-radius:100px;
}

.hw-slots-num {
    font-size:5rem;
    font-weight:900;
    letter-spacing:-0.05em;
    color:var(--accent);
    line-height:1;
    margin-bottom:0.25rem;
}

.hw-slots-label {
    font-size:0.75rem;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--muted);
    margin-bottom:2rem;
}

.hw-name {
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:1rem;
}

.hw-desc {
    font-size:0.93rem;
    color:var(--muted);
    line-height:1.7;
    margin-bottom:2rem;
}

.hw-features {
    display:flex;
    flex-direction:column;
    gap:0.7rem;
}

.hw-feature {
    display:flex;
    align-items:center;
    gap:0.7rem;
    font-size:0.88rem;
    color:var(--muted);
}

.hw-feature::before {
    content:'✓';
    color:var(--accent);
    font-weight:700;
}

.hw-img-wrap {
    margin-top:2rem;
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--border);
}

.hw-img-wrap img {
    width:100%;
    object-fit:cover;
    max-height:200px;
    filter:brightness(0.85);
    transition:filter 0.3s;
}

.hw-card:hover .hw-img-wrap img {
    filter:brightness(1);
}

.panel-split {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.panel-mockup {
    background:linear-gradient(135deg,#0d0d12,#111118);
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
}

.panel-topbar {
    background:rgba(255,255,255,0.03);
    border-bottom:1px solid var(--border);
    padding:0.85rem 1.25rem;
    display:flex;
    align-items:center;
    gap:0.5rem;
}

.panel-dot {
    width:10px;
    height:10px;
    border-radius:50%;
}

.panel-body {
    padding:1.5rem;
}

.panel-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0.75rem 1rem;
    background:rgba(255,255,255,0.03);
    border-radius:10px;
    margin-bottom:0.5rem;
    font-size:0.82rem;
}

.panel-row-id {
    color:var(--muted);
    font-family:monospace;
}

.panel-row-port {
    color:var(--accent2);
    font-family:monospace;
}

.panel-row-status {
    display:flex;
    align-items:center;
    gap:0.4rem;
    font-size:0.72rem;
    font-weight:700;
}

.sdot {
    width:7px;
    height:7px;
    border-radius:50%;
}

.son {
    background:#00ff88;
    box-shadow:0 0 6px #00ff88;
}

.soff {
    background:#555;
}

.srot {
    background:#ffaa00;
    box-shadow:0 0 6px #ffaa00;
    animation:rot-pulse 1s ease-in-out infinite;
}

.panel-feature-list {
    display:flex;
    flex-direction:column;
    gap:1.25rem;
    margin-top:2rem;
}

.panel-feature {
    display:flex;
    align-items:flex-start;
    gap:1rem;
}

.panel-feature-icon {
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:10px;
    background:var(--accent-dim);
    border:1px solid rgba(0,255,136,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
}

.panel-feature-text h4 {
    font-size:1rem;
    font-weight:700;
    margin-bottom:0.2rem;
}

.panel-feature-text p {
    font-size:0.85rem;
    color:var(--muted);
    line-height:1.6;
}

.compare-table {
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    border:1px solid var(--border);
    border-radius:var(--r);
    overflow:hidden;
    margin-top:3rem;
}

.compare-table th {
    padding:1.2rem 1.5rem;
    text-align:left;
    font-size:0.78rem;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--muted);
    background:rgba(255,255,255,0.03);
    border-bottom:1px solid var(--border);
}

.compare-table td {
    padding:1rem 1.5rem;
    font-size:0.9rem;
    border-bottom:1px solid var(--border);
    vertical-align:middle;
}

.compare-table tr:last-child td {
    border-bottom:none;
}

.compare-table td:first-child {
    color:var(--text);
    font-weight:600;
}

.compare-table td:nth-child(2) {
    color:var(--red);
}

.compare-table td:nth-child(3) {
    color:var(--accent);
    font-weight:700;
}

.col-pro {
    background:rgba(0,255,136,0.03);
}

.use-card {
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--r);
    padding:2rem;
    transition:all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.use-card:hover {
    background:var(--surface2);
    border-color:rgba(0,255,136,0.2);
    transform:translateY(-5px);
}

.use-card-icon {
    width:52px;
    height:52px;
    margin-bottom:1rem;
    object-fit:contain;
    filter:drop-shadow(0 0 8px rgba(0,255,136,0.3));
}

.use-card-title {
    font-size:1.05rem;
    font-weight:700;
    margin-bottom:0.5rem;
}

.use-card-desc {
    font-size:0.875rem;
    color:var(--muted);
    line-height:1.65;
}

.testi-carousel {
    position:relative;
    overflow:hidden;
}

.testi-track {
    display:flex;
    transition:transform 0.5s cubic-bezier(0.16,1,0.3,1);
    will-change:transform;
}

.testi-card {
    min-width:calc(33.333% - 1rem);
    flex:0 0 calc(33.333% - 1rem);
    margin-right:1.5rem;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--r);
    padding:2rem;
    transition:border-color 0.3s;
    box-sizing:border-box;
}

.testi-card:hover {
    border-color:rgba(0,255,136,0.2);
}

.testi-stars {
    color:var(--accent);
    font-size:0.9rem;
    margin-bottom:1rem;
    letter-spacing:0.1em;
}

.testi-text {
    font-size:0.93rem;
    color:var(--muted);
    line-height:1.75;
    margin-bottom:1.5rem;
}

.testi-author {
    display:flex;
    align-items:center;
    gap:0.75rem;
}

.testi-avatar {
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--accent),var(--accent2));
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:0.9rem;
    color:#000;
    flex-shrink:0;
}

.testi-name {
    font-size:0.9rem;
    font-weight:700;
}

.testi-role {
    font-size:0.78rem;
    color:var(--muted);
}

.testi-nav {
    display:flex;
    gap:0.75rem;
    justify-content:center;
    margin-top:2rem;
    align-items:center;
}

.testi-btn {
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid var(--border);
    background:transparent;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--muted);
    transition:all 0.2s;
}

.testi-btn:hover {
    background:var(--surface2);
    border-color:var(--border2);
    color:var(--text);
}

.testi-dots {
    display:flex;
    gap:0.5rem;
    align-items:center;
    margin:0 1rem;
}

.testi-dot.active {
    background:var(--accent);
    width:24px;
    border-radius:4px;
}

@media(max-width:900px) {
    .testi-card {
        min-width:calc(50% - 0.75rem);
        flex:0 0 calc(50% - 0.75rem);
    }
}

@media(max-width:600px) {
    .testi-card {
        min-width:100%;
        flex:0 0 100%;
        margin-right:1.5rem;
    }
}

.faq-layout {
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:4rem;
    align-items:start;
}

.faq-sidebar {
    position:sticky;
    top:120px;
}

.faq-sidebar-title {
    font-size:clamp(2rem,3.5vw,3rem);
    font-weight:800;
    letter-spacing:-0.04em;
    line-height:1.1;
    margin-bottom:2.5rem;
}

.faq-contact-card {
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:20px;
    padding:2rem;
    margin-top:2rem;
}

.faq-contact-card h4 {
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:0.75rem;
}

.faq-contact-card p {
    font-size:0.875rem;
    color:var(--muted);
    line-height:1.7;
    margin-bottom:1.5rem;
}

.faq-list {
    display:flex;
    flex-direction:column;
}

.faq-item {
    border-bottom:1px solid var(--border);
    overflow:hidden;
}

.faq-q {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.75rem 0;
    cursor:pointer;
    font-size:1.05rem;
    font-weight:600;
    gap:2rem;
    user-select:none;
}

.faq-q:hover {
    color:var(--accent);
}

.faq-icon {
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:50%;
    border:1px solid var(--border);
    background:var(--surface);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    color:var(--muted);
    transition:transform 0.3s,background 0.3s,color 0.3s;
    position: relative;
}

.faq-icon img {
    max-width: 12px;
    height: auto;
    aspect-ratio: 1/1;
}

.faq-item.open .faq-icon {
    transform:rotate(45deg);
    background:var(--accent-dim);
    color:var(--accent);
    border-color:rgba(0,255,136,0.3);
}

.faq-item.open .faq-icon > img {
    content: url('../../assets/images/faq_active_delete.svg');
}

.faq-a {
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s cubic-bezier(0.16,1,0.3,1),padding 0.3s;
    font-size:0.95rem;
    color:var(--muted);
    line-height:1.8;
}

.faq-item.open .faq-a {
    max-height:300px;
    padding-bottom:1.75rem;
}

.faq-item.open .faq-q {
    color:var(--text);
    font-weight:700;
}

@media(max-width:900px) {
    .faq-layout {
        grid-template-columns:1fr;
    }
    .faq-sidebar {
        position:static;
    }
}

#cta {
    padding:10rem 2rem;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cta-bg {
    position:absolute;
    inset:0;
    background:url('../../assets/images/bg-cta.jpg') center/cover no-repeat;
    opacity:0.07;
    filter:blur(4px);
}

.cta-glow {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:900px;
    height:500px;
    background:radial-gradient(ellipse,rgba(0,255,136,0.1) 0%,transparent 65%);
    filter:blur(40px);
    pointer-events:none;
}

.cta-inner {
    position:relative;
    z-index:2;
}

.cta-title {
    font-size:clamp(3rem,7vw,5.5rem);
    font-weight:800;
    letter-spacing:-0.04em;
    line-height:1.05;
    margin-bottom:1.5rem;
}

.cta-sub {
    font-size:1.15rem;
    color:var(--muted);
    max-width:540px;
    margin:0 auto 3rem;
    line-height:1.8;
}

.cta-note {
    font-size:0.82rem;
    color:var(--muted2);
    margin-top:1.5rem;
}

@media(max-width:1200px) {
    .hero-device-float {
        width:380px;
        right:1%;
    }
}

@media(max-width:1024px) {
    .hero-device-float {
        display:none;
    }
    .gallery-grid {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
    }
    .gallery-item:first-child {
        grid-row:auto;
    }
    .gallery-item:nth-child(4) {
        grid-column:auto;
    }
}

@media(max-width:900px) {
    .about-split,.panel-split,.g2f,.spotlight-wrap,.device-viewer {
        grid-template-columns:1fr;
        flex-direction:column;
    }
    .inno-grid,.hw-cards {
        grid-template-columns:1fr;
    }
    .steps-track {
        flex-direction:column;
        gap:2rem;
    }
    .steps-track::before {
        display:none;
    }
    .device-viewer {
        flex-direction:column;
    }
    .device-viewer-tabs {
        flex-direction:row;
        flex-wrap:wrap;
        min-width:auto;
    }
}

@media(max-width:600px) {
    .hero-ctas {
        flex-direction:column;
        align-items:center;
    }
    .hero-stats {
        gap:1.5rem;
    }
    .video-grid {
        grid-template-columns:1fr;
    }
    .gallery-grid {
        grid-template-columns:1fr;
    }
    .compare-table {
        font-size:0.78rem;
    }
    .compare-table th,.compare-table td {
        padding:0.7rem 0.75rem;
    }
}

.ig-faqm-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    font-family: var(--font);
}

.ig-faqm-modal.ig-faqm-modal--open {
    display: flex;
}

.ig-faqm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.ig-faqm-box {
    position: relative;
    width: min(720px, 100%);
    border-radius: 22px;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 30px 90px rgba(0,0,0,0.25);
    overflow: hidden;
    padding: 20px 30px;
}

.ig-faqm-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px;
    background: rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ig-faqm-title {
    font-family: var(--font-extra-bold);
    font-size: var(--fs-xl);
    color: var(--color-black);
    line-height: 1.2;
    padding: 0 0 20px;
}

.ig-faqm-subtitle {
    margin-top: 6px;
    font-family: var(--font-light);
    font-size: var(--fs-sm);
    color: var(--color-black-gray);
    line-height: 1.6;
}

.ig-faqm-mail {
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-medium);
}

.ig-faqm-close, .ig-faqm-close:focus, .ig-faqm-close:hover, .ig-faqm-close:active {
    height: 45px;
    width: 45px;
    padding: 0 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-semi-bold);
    font-size: var(--fs-xs);
    color: var(--color-black);
    outline: none;
    position: absolute;
    top: 5px;
    right: 5px;
}

.ig-faqm-close img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ig-faqm-body {
    padding: 18px 18px 20px 18px;
}

.ig-faqm-error {
    border-radius: 14px;
    padding: 12px 12px;
    margin-bottom: 14px;
    border: 1px solid rgb(186 43 43 / 6%);
    background: rgb(186 43 43 / 2%);
    color: var(--color-red);
    font-family: var(--font-medium);
    font-size: var(--fs-xs);
    line-height: 1.6;
}

.ig-faqm-success {
    border-radius: 14px;
    padding: 12px 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(32, 148, 250, 0.35);
    background: rgba(32, 148, 250, 0.10);
    color: var(--color-primary);
    font-family: var(--font-medium);
    font-size: var(--fs-xs);
    line-height: 1.6;
}

.ig-faqm-form {
    margin: 0;
}

.ig-faqm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ig-faqm-field--full {
    grid-column: 1 / -1;
}

.ig-faqm-label {
    display: block;
    margin: 8px 0 12px 0;
    font-family: var(--font-semi-bold);
    font-size: var(--fs-md);
    color: var(--color-black);
}

.ig-faqm-input, .ig-faqm-textarea {
    width: 95%;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(0, 0, 0, 0.02);
    padding: 12px 16px;
    font-family: var(--font);
    font-size: var(--fs-base);
    color: var(--color-black);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ig-faqm-input {
    width: auto;
}

#ig_email {
    width: 95%;
}

.ig-faqm-textarea {
    resize: vertical;
    min-height: 130px;
}

.ig-faqm-input:focus, .ig-faqm-textarea:focus {
    border-color: rgba(32, 148, 250, 0.40);
    box-shadow: 0 0 0 3px rgba(32, 148, 250, 0.18);
    background: rgba(255,255,255,0.90);
}

@keyframes float {
    0%,100%{transform:translateY(-50%) translateY(0);}50%{transform:translateY(-50%) translateY(-20px);}
}

@keyframes bounce {
    0%,100%{transform:translateX(-50%) translateY(0);}50%{transform:translateX(-50%) translateY(6px);}
}

@keyframes blink {
    0%,100%{opacity:1;}50%{opacity:0.3;}
}

@keyframes rot-pulse {
    0%,100%{opacity:1;}50%{opacity:0.4;}
}
