/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
--bg: #030735;
--bg-2: #07115f;
--card: rgba(255, 255, 255, 0.08);
--card-2: rgba(255, 255, 255, 0.12);
--text: #ffffff;
--muted: rgba(255, 255, 255, 0.72);
--cyan: #19f7e1;
--blue: #2588ff;
--purple: #6b5cff;
--green: #35ffb6;
--danger: #ff4f8b;
--border: rgba(255, 255, 255, 0.14);
--shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
--radius: 26px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
background: var(--bg);
color: var(--text);
overflow-x: hidden;
}

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

button,
input,
select {
font: inherit;
}

.site-bg {
position: fixed;
inset: 0;
z-index: -5;
background:
radial-gradient(circle at 20% 10%, rgba(25, 247, 225, 0.18), transparent 30%),
radial-gradient(circle at 80% 20%, rgba(37, 136, 255, 0.2), transparent 30%),
linear-gradient(135deg, #020428 0%, #06116c 55%, #020428 100%);
}

.grid-bg {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(25, 247, 225, 0.08) 1px, transparent 1px),
linear-gradient(90deg, rgba(25, 247, 225, 0.08) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: linear-gradient(to bottom, transparent 0%, black 35%, transparent 100%);
opacity: 0.55;
}

.glow {
position: absolute;
width: 380px;
height: 380px;
border-radius: 50%;
filter: blur(90px);
opacity: 0.45;
animation: floatGlow 8s ease-in-out infinite;
}

.glow-1 {
background: var(--cyan);
left: 7%;
top: 20%;
}

.glow-2 {
background: var(--blue);
right: 6%;
top: 8%;
animation-delay: 2s;
}

.glow-3 {
background: var(--purple);
left: 45%;
bottom: 5%;
animation-delay: 4s;
}

@keyframes floatGlow {
0%, 100% {
transform: translateY(0) scale(1);
}
50% {
transform: translateY(-35px) scale(1.08);
}
}

.header {
position: fixed;
top: 18px;
left: 50%;
transform: translateX(-50%);
width: min(1180px, calc(100% - 34px));
height: 74px;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 18px 0 22px;
background: rgba(4, 9, 54, 0.75);
border: 1px solid var(--border);
border-radius: 999px;
backdrop-filter: blur(20px);
box-shadow: var(--shadow);
}

.logo {
display: inline-flex;
align-items: center;
gap: 10px;
font-weight: 900;
letter-spacing: 1px;
}

.logo-icon {
width: 42px;
height: 42px;
display: grid;
place-items: center;
border-radius: 50%;
color: #03103f;
font-weight: 900;
background: linear-gradient(135deg, var(--cyan), var(--blue));
box-shadow: 0 0 30px rgba(25, 247, 225, 0.45);
}

.nav {
display: flex;
align-items: center;
gap: 24px;
color: var(--muted);
font-size: 14px;
}

.nav a {
transition: 0.25s;
}

.nav a:hover {
color: var(--cyan);
}

.header-actions {
display: flex;
align-items: center;
gap: 10px;
}

.btn {
border: none;
cursor: pointer;
min-height: 46px;
padding: 0 22px;
border-radius: 999px;
color: var(--text);
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 800;
transition: 0.3s;
position: relative;
overflow: hidden;
}

.btn::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
transform: translateX(-100%);
transition: 0.55s;
}

.btn:hover::after {
transform: translateX(100%);
}

.btn-primary {
background: linear-gradient(135deg, var(--cyan), var(--blue));
color: #020936;
box-shadow: 0 0 30px rgba(25, 247, 225, 0.32);
}

.btn-secondary {
background: linear-gradient(135deg, var(--purple), var(--blue));
}

.btn-ghost {
background: rgba(255, 255, 255, 0.09);
border: 1px solid var(--border);
}

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

.burger {
display: none;
width: 46px;
height: 46px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
cursor: pointer;
}

.burger span {
display: block;
width: 20px;
height: 2px;
background: white;
margin: 5px auto;
transition: 0.3s;
}

.section {
width: min(1180px, calc(100% - 34px));
margin: 0 auto;
padding: 110px 0;
}

.hero {
min-height: 100vh;
padding-top: 150px;
display: grid;
grid-template-columns: 1.08fr 0.92fr;
align-items: center;
gap: 60px;
}

.badge,
.eyebrow,
.section-title span {
display: inline-flex;
width: fit-content;
padding: 9px 14px;
border: 1px solid rgba(25, 247, 225, 0.28);
border-radius: 999px;
color: var(--cyan);
background: rgba(25, 247, 225, 0.08);
font-size: 13px;
font-weight: 800;
}

.hero h1 {
margin-top: 22px;
font-size: clamp(42px, 6vw, 82px);
line-height: 0.95;
letter-spacing: -3px;
}

.hero p,
.section-title p,
.calculator-box p,
.partner-box p,
.cta-box p {
color: var(--muted);
line-height: 1.7;
font-size: 17px;
}

.hero p {
max-width: 690px;
margin-top: 24px;
}

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

.hero-stats {
margin-top: 42px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}

.hero-stats div {
padding: 22px;
border-radius: 22px;
background: var(--card);
border: 1px solid var(--border);
}

.hero-stats strong {
display: block;
font-size: 34px;
color: var(--cyan);
}

.hero-stats span {
color: var(--muted);
font-size: 14px;
}

.hero-visual {
display: flex;
justify-content: center;
}

.planet-card {
width: min(460px, 100%);
aspect-ratio: 1;
border-radius: 50px;
background:
radial-gradient(circle at 40% 35%, rgba(25, 247, 225, 0.3), transparent 25%),
linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
border: 1px solid var(--border);
box-shadow: var(--shadow);
position: relative;
display: grid;
place-items: center;
overflow: hidden;
}

.orbit {
position: absolute;
border: 1px solid rgba(25, 247, 225, 0.24);
border-radius: 50%;
animation: rotate 18s linear infinite;
}

.orbit-1 {
width: 78%;
height: 78%;
}

.orbit-2 {
width: 58%;
height: 58%;
animation-duration: 10s;
animation-direction: reverse;
}

@keyframes rotate {
to {
transform: rotate(360deg);
}
}

.coin {
position: absolute;
width: 52px;
height: 52px;
display: grid;
place-items: center;
border-radius: 50%;
background: linear-gradient(135deg, var(--cyan), var(--blue));
color: #020936;
font-weight: 900;
box-shadow: 0 0 30px rgba(25, 247, 225, 0.45);
animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 {
top: 18%;
right: 18%;
}

.coin-2 {
bottom: 17%;
left: 16%;
animation-delay: 1s;
}

.coin-3 {
bottom: 30%;
right: 12%;
animation-delay: 2s;
}

@keyframes coinFloat {
50% {
transform: translateY(-18px);
}
}

.floating-island {
width: 260px;
height: 210px;
position: relative;
animation: islandFloat 5s ease-in-out infinite;
}

@keyframes islandFloat {
50% {
transform: translateY(-18px);
}
}

.field {
position: absolute;
bottom: 40px;
left: 30px;
width: 200px;
height: 78px;
background: linear-gradient(135deg, #28f5b4, #0b9f6a);
border-radius: 50%;
transform: rotate(-8deg);
}

.mountain {
position: absolute;
left: 65px;
top: 10px;
width: 120px;
height: 120px;
background: linear-gradient(135deg, #4fd7ff, #1656c9);
clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.house {
position: absolute;
right: 55px;
bottom: 75px;
width: 55px;
height: 44px;
background: #0d195f;
border: 2px solid rgba(255,255,255,0.5);
}

.house::before {
content: "";
position: absolute;
inset: -25px 0 auto 0;
height: 25px;
background: var(--cyan);
clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.trees {
position: absolute;
left: 44px;
bottom: 82px;
width: 25px;
height: 58px;
background: var(--green);
clip-path: polygon(50% 0, 100% 100%, 0 100%);
filter: drop-shadow(35px 8px 0 #27d596) drop-shadow(65px 2px 0 #19f7e1);
}

.section-title {
text-align: center;
max-width: 820px;
margin: 0 auto 52px;
}

.section-title h2,
.calculator-box h2,
.partner-box h2,
.cta-box h2 {
margin: 18px 0 16px;
font-size: clamp(32px, 4vw, 56px);
line-height: 1.05;
letter-spacing: -2px;
}

.about-grid,
.nft-grid,
.project-grid,
.token-grid {
display: grid;
gap: 22px;
}

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

.info-card,
.nft-card,
.project-card,
.token-card,
.game-card,
.calc-panel,
.lead-form,
.accordion-item {
background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.info-card {
padding: 28px;
min-height: 235px;
}

.card-icon {
font-size: 34px;
margin-bottom: 20px;
}

.info-card h3,
.nft-card h3,
.project-card h3,
.token-card h3,
.game-card h3,
.lead-form h3 {
font-size: 22px;
margin-bottom: 12px;
}

.info-card p,
.nft-card p,
.project-card p,
.token-card li,
.accordion-content p,
.form-note {
color: var(--muted);
line-height: 1.65;
}

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

.nft-card {
padding: 24px;
position: relative;
overflow: hidden;
transition: 0.35s;
}

.nft-card::before {
content: "";
position: absolute;
width: 170px;
height: 170px;
right: -60px;
top: -60px;
border-radius: 50%;
background: radial-gradient(circle, rgba(25,247,225,0.35), transparent 70%);
}

.nft-card:hover {
transform: translateY(-10px);
border-color: rgba(25, 247, 225, 0.4);
}

.nft-image {
width: 100%;
height: 150px;
border-radius: 22px;
margin-bottom: 22px;
background:
radial-gradient(circle at 30% 30%, rgba(25,247,225,0.6), transparent 25%),
radial-gradient(circle at 70% 65%, rgba(107,92,255,0.55), transparent 25%),
linear-gradient(135deg, rgba(25,247,225,0.18), rgba(37,136,255,0.18));
display: grid;
place-items: center;
font-size: 54px;
}

.nft-meta {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 9px;
margin: 18px 0 22px;
}

.nft-meta div {
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 12px;
}

.nft-meta span {
display: block;
color: var(--muted);
font-size: 12px;
}

.nft-meta strong {
display: block;
margin-top: 5px;
color: var(--cyan);
}

.calculator-box,
.partner-box,
.cta-box {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 40px;
align-items: center;
padding: 46px;
border-radius: 34px;
background:
linear-gradient(135deg, rgba(25,247,225,0.14), rgba(107,92,255,0.09)),
rgba(255,255,255,0.06);
border: 1px solid var(--border);
box-shadow: var(--shadow);
}

.calc-panel,
.lead-form {
padding: 28px;
}

.calc-panel label,
.lead-form input,
.lead-form select,
.modal-content input {
display: block;
width: 100%;
}

.calc-panel label {
color: var(--muted);
font-weight: 700;
margin-bottom: 18px;
}

select,
input {
min-height: 50px;
margin-top: 9px;
padding: 0 16px;
border-radius: 16px;
border: 1px solid var(--border);
outline: none;
color: white;
background: rgba(255,255,255,0.08);
}

select option {
color: #020936;
}

input[type="range"] {
padding: 0;
accent-color: var(--cyan);
}

#monthValue {
display: inline-block;
margin-top: 8px;
color: var(--cyan);
}

.calc-result {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 11px;
margin: 24px 0;
}

.calc-result div {
padding: 17px;
border-radius: 18px;
background: rgba(255,255,255,0.07);
}

.calc-result span {
color: var(--muted);
font-size: 13px;
}

.calc-result strong {
display: block;
margin-top: 7px;
font-size: 22px;
color: var(--cyan);
}

.game-layout {
display: grid;
grid-template-columns: 1fr 360px;
align-items: center;
gap: 40px;
}

.game-card {
padding: 34px;
}

.task {
display: flex;
align-items: center;
gap: 18px;
margin-top: 18px;
padding: 20px;
border-radius: 20px;
background: rgba(255,255,255,0.07);
cursor: pointer;
transition: 0.25s;
}

.task:hover {
transform: translateX(8px);
}

.task-check {
width: 46px;
height: 46px;
border: none;
border-radius: 50%;
background: rgba(255,255,255,0.12);
color: white;
cursor: pointer;
}

.task.checked .task-check {
background: linear-gradient(135deg, var(--cyan), var(--green));
color: #021039;
font-weight: 900;
}

.task strong,
.task span {
display: block;
}

.task span {
color: var(--muted);
margin-top: 4px;
}

.phone-mockup {
width: 320px;
min-height: 610px;
margin: auto;
padding: 14px;
border-radius: 46px;
background: #050824;
border: 1px solid rgba(255,255,255,0.25);
box-shadow: var(--shadow);
}

.phone-top {
width: 90px;
height: 24px;
margin: 0 auto 10px;
border-radius: 0 0 16px 16px;
background: #000;
}

.phone-screen {
min-height: 540px;
border-radius: 34px;
padding: 22px;
background:
radial-gradient(circle at 50% 15%, rgba(25,247,225,0.25), transparent 35%),
linear-gradient(180deg, #111c75, #050824);
}

.mini-logo {
color: var(--cyan);
font-weight: 900;
margin-bottom: 20px;
}

.app-card {
height: 210px;
border-radius: 26px;
background:
radial-gradient(circle at 25% 30%, rgba(25,247,225,0.65), transparent 24%),
radial-gradient(circle at 70% 55%, rgba(107,92,255,0.8), transparent 28%),
rgba(255,255,255,0.08);
}

.app-line {
height: 12px;
border-radius: 999px;
background: rgba(255,255,255,0.22);
margin-top: 18px;
}

.app-line.short {
width: 65%;
}

.phone-screen button {
width: 100%;
min-height: 48px;
border: none;
border-radius: 16px;
background: linear-gradient(135deg, var(--cyan), var(--blue));
color: #021039;
font-weight: 900;
margin-top: 14px;
}

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

.token-card {
padding: 34px;
}

.donut {
width: 220px;
height: 220px;
margin: 24px auto;
border-radius: 50%;
position: relative;
}

.donut::after {
content: "";
position: absolute;
inset: 48px;
background: #08105a;
border-radius: 50%;
border: 1px solid var(--border);
}

.donut-main {
background: conic-gradient(
#2634ff 0 50%,
#1199ff 50% 70%,
#32d6ff 70% 90%,
#19f7e1 90% 95%,
#4affc5 95% 98%,
#8affff 98% 100%
);
}

.donut-buy {
background: conic-gradient(
#2634ff 0 60%,
#1199ff 60% 80%,
#19f7e1 80% 100%
);
}

.token-card ul {
list-style: none;
display: grid;
gap: 12px;
}

.token-card li {
display: flex;
align-items: center;
gap: 10px;
}

.token-card li span {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--cyan);
box-shadow: 0 0 16px rgba(25, 247, 225, 0.8);
}

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

.project-card {
min-height: 280px;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: flex-end;
background:
linear-gradient(to top, rgba(4,9,54,0.95), rgba(4,9,54,0.25)),
radial-gradient(circle at 40% 25%, rgba(25,247,225,0.4), transparent 28%),
linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.project-card .btn {
margin-top: 24px;
width: fit-content;
}

.partner-benefits {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
margin-top: 30px;
}

.partner-benefits div {
padding: 18px;
border-radius: 18px;
background: rgba(255,255,255,0.08);
}

.partner-benefits strong {
display: block;
color: var(--cyan);
font-size: 28px;
}

.partner-benefits span {
color: var(--muted);
font-size: 13px;
}

.lead-form {
display: grid;
gap: 14px;
}

.form-note {
font-size: 12px;
}

.accordion {
max-width: 860px;
margin: auto;
display: grid;
gap: 14px;
}

.accordion-item {
overflow: hidden;
}

.accordion-btn {
width: 100%;
padding: 22px 26px;
border: none;
background: transparent;
color: white;
font-weight: 900;
font-size: 18px;
text-align: left;
cursor: pointer;
display: flex;
justify-content: space-between;
}

.accordion-btn::after {
content: "+";
color: var(--cyan);
font-size: 24px;
}

.accordion-item.active .accordion-btn::after {
content: "−";
}

.accordion-content {
max-height: 0;
overflow: hidden;
transition: 0.3s;
}

.accordion-item.active .accordion-content {
max-height: 200px;
}

.accordion-content p {
padding: 0 26px 24px;
}

.final-cta {
padding-top: 40px;
}

.cta-box {
grid-template-columns: 1fr;
text-align: center;
}

.cta-box div {
display: flex;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}

.footer {
width: min(1180px, calc(100% - 34px));
margin: 0 auto 26px;
padding: 34px;
border-radius: 30px;
background: rgba(255,255,255,0.07);
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
color: var(--muted);
}

.footer-links {
display: flex;
gap: 18px;
}

.footer-links a:hover {
color: var(--cyan);
}

.modal {
position: fixed;
inset: 0;
z-index: 300;
background: rgba(0,0,0,0.72);
backdrop-filter: blur(10px);
display: none;
align-items: center;
justify-content: center;
padding: 20px;
}

.modal.show {
display: flex;
}

.modal-content {
width: min(520px, 100%);
padding: 34px;
border-radius: 30px;
background: linear-gradient(145deg, rgba(13,24,100,0.96), rgba(4,9,54,0.98));
border: 1px solid var(--border);
box-shadow: var(--shadow);
position: relative;
animation: modalIn 0.25s ease;
}

@keyframes modalIn {
from {
transform: translateY(20px) scale(0.96);
opacity: 0;
}
}

.modal-content h2 {
font-size: 30px;
margin-bottom: 12px;
}

.modal-content p {
color: var(--muted);
line-height: 1.65;
margin-bottom: 18px;
}

.modal-content input {
margin-bottom: 12px;
}

.modal-close {
position: absolute;
top: 16px;
right: 16px;
width: 42px;
height: 42px;
border: none;
border-radius: 50%;
color: white;
background: rgba(255,255,255,0.1);
cursor: pointer;
font-size: 26px;
}

.video-placeholder {
height: 230px;
border-radius: 22px;
border: 1px dashed rgba(255,255,255,0.3);
display: grid;
place-items: center;
color: var(--cyan);
font-weight: 900;
background: rgba(255,255,255,0.05);
}

.toast {
position: fixed;
right: 24px;
bottom: 24px;
z-index: 400;
padding: 18px 22px;
border-radius: 18px;
color: #021039;
background: linear-gradient(135deg, var(--cyan), var(--green));
font-weight: 900;
transform: translateY(120px);
transition: 0.3s;
box-shadow: var(--shadow);
}

.toast.show {
transform: translateY(0);
}

.reveal {
opacity: 0;
transform: translateY(28px);
transition: 0.75s ease;
}

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

@media (max-width: 1050px) {
.nav {
position: fixed;
left: 17px;
right: 17px;
top: 104px;
padding: 22px;
border-radius: 24px;
background: rgba(4,9,54,0.96);
border: 1px solid var(--border);
flex-direction: column;
align-items: flex-start;
transform: translateY(-20px);
opacity: 0;
pointer-events: none;
transition: 0.3s;
}

.nav.show {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}

.burger {
display: block;
}

.header-actions .btn {
display: none;
}

.hero,
.calculator-box,
.partner-box,
.game-layout {
grid-template-columns: 1fr;
}

.hero {
text-align: center;
}

.hero p,
.badge {
margin-left: auto;
margin-right: auto;
}

.hero-buttons {
justify-content: center;
}

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

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

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

.hero {
padding-top: 130px;
}

.hero h1 {
letter-spacing: -1.5px;
}

.hero-stats,
.about-grid,
.nft-grid,
.project-grid,
.token-grid,
.calc-result,
.partner-benefits {
grid-template-columns: 1fr;
}

.calculator-box,
.partner-box,
.cta-box {
padding: 26px;
}

.phone-mockup {
width: 100%;
}

.footer-links {
flex-wrap: wrap;
justify-content: center;
}
}

/* === Правки SOTKA === */
.logo-img {
width: 42px;
height: 42px;
object-fit: contain;
border-radius: 50%;
background: rgba(255,255,255,0.08);
box-shadow: 0 0 30px rgba(25, 247, 225, 0.45);
}

.hero-logo {
position: absolute;
object-fit: contain;
filter: drop-shadow(0 0 26px rgba(25, 247, 225, 0.55));
}

.hero-logo-main {
width: 210px;
height: 210px;
animation: islandFloat 5s ease-in-out infinite;
}

.hero-logo-small {
width: 58px;
height: 58px;
border-radius: 50%;
background: rgba(255,255,255,0.08);
padding: 6px;
animation: coinFloat 4s ease-in-out infinite;
}

.hero-logo-1 {
top: 18%;
right: 18%;
}

.hero-logo-2 {
bottom: 17%;
left: 16%;
animation-delay: 1s;
}

.hero-logo-3 {
bottom: 30%;
right: 12%;
animation-delay: 2s;
}

.app-card {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
padding: 22px;
text-align: center;
overflow: hidden;
transition: 0.35s ease;
}

.app-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0.55;
transition: 0.35s ease;
}

.app-card[data-state="water"]::before {
background:
radial-gradient(circle at 25% 30%, rgba(25,247,225,0.85), transparent 25%),
radial-gradient(circle at 75% 70%, rgba(37,136,255,0.8), transparent 30%);
}

.app-card[data-state="pest"]::before {
background:
radial-gradient(circle at 28% 30%, rgba(53,255,182,0.8), transparent 25%),
radial-gradient(circle at 70% 65%, rgba(255,79,139,0.65), transparent 30%);
}

.app-card[data-state="fertilizer"]::before {
background:
radial-gradient(circle at 30% 30%, rgba(74,255,197,0.85), transparent 25%),
radial-gradient(circle at 75% 65%, rgba(50,214,255,0.65), transparent 30%);
}

.app-card > * {
position: relative;
z-index: 1;
}

.app-scene-icon {
font-size: 58px;
line-height: 1;
}

.app-card strong {
font-size: 18px;
}

.app-card span {
font-size: 13px;
color: var(--muted);
line-height: 1.45;
}

.phone-screen button.app-action {
transition: 0.25s ease;
}

.phone-screen button.app-action.active {
transform: translateY(-2px);
box-shadow: 0 0 22px rgba(25,247,225,0.45);
}

.donut {
overflow: hidden;
}

.donut-label {
position: absolute;
z-index: 3;
font-size: 14px;
font-weight: 900;
color: #ffffff;
text-shadow: 0 2px 10px rgba(0,0,0,0.55);
pointer-events: none;
}

.label-main-1 { left: 62%; top: 31%; }
.label-main-2 { left: 32%; top: 68%; }
.label-main-3 { left: 15%; top: 36%; }
.label-main-4 { left: 37%; top: 13%; }
.label-main-5 { left: 47%; top: 9%; }
.label-main-6 { left: 56%; top: 10%; }

.label-buy-1 { left: 60%; top: 36%; }
.label-buy-2 { left: 26%; top: 68%; }
.label-buy-3 { left: 18%; top: 28%; }

@media (max-width: 720px) {
.hero-logo-main {
width: 170px;
height: 170px;
}

.hero-logo-small {
width: 50px;
height: 50px;
}
}

/* Logo fixes */
.logo-img,
.hero-logo {
  display: block;
  object-fit: contain;
  background: transparent;
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
}

.hero-logo-main {
  width: 180px;
  height: 180px;
  border-radius: 28px;
}

.hero-logo-small {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}

/* === Дополнительные правки: FAQ, токеномика и красивые select === */
.accordion {
  max-width: 980px;
}

.accordion-item {
  border-color: rgba(25, 247, 225, 0.16);
}

.accordion-btn {
  align-items: center;
  gap: 18px;
  line-height: 1.35;
}

.accordion-content p + p {
  padding-top: 0;
}

.accordion-item.active .accordion-content {
  max-height: 760px;
}

.accordion-content p {
  font-size: 16px;
  line-height: 1.85;
}

.donut {
  overflow: visible;
  isolation: isolate;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.35));
}

.donut::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(25,247,225,0.18);
  box-shadow: 0 0 34px rgba(25,247,225,0.14);
}

.donut::after {
  inset: 54px;
  z-index: 2;
  background:
    radial-gradient(circle at 35% 30%, rgba(25,247,225,0.18), transparent 42%),
    #08105a;
}

.donut-label {
  min-width: 42px;
  min-height: 30px;
  padding: 6px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(3, 7, 53, 0.82);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 0 18px rgba(25,247,225,0.26), inset 0 0 14px rgba(255,255,255,0.08);
  transform: translate(-50%, -50%);
  line-height: 1;
  white-space: nowrap;
}

.label-main-1 { left: 72%; top: 50%; }
.label-main-2 { left: 31%; top: 81%; }
.label-main-3 { left: 18%; top: 35%; }
.label-main-4 { left: 35%; top: 9%; min-width: 34px; font-size: 12px; }
.label-main-5 { left: 50%; top: 5%; min-width: 34px; font-size: 12px; }
.label-main-6 { left: 64%; top: 9%; min-width: 34px; font-size: 12px; }

.label-buy-1 { left: 73%; top: 57%; }
.label-buy-2 { left: 32%; top: 79%; }
.label-buy-3 { left: 20%; top: 31%; }

.calc-panel select,
.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-height: 58px;
  padding: 0 52px 0 18px;
  border-radius: 18px;
  color: #ffffff;
  border: 1px solid rgba(25, 247, 225, 0.28);
  background:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%) right 22px center / 8px 8px no-repeat,
    linear-gradient(135deg, rgba(25,247,225,0.16), rgba(37,136,255,0.10)),
    rgba(255,255,255,0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 14px 28px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.calc-panel select:hover,
.lead-form select:hover {
  border-color: rgba(25, 247, 225, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 0 26px rgba(25,247,225,0.16),
    0 14px 28px rgba(0,0,0,0.18);
}

.calc-panel select:focus,
.lead-form select:focus {
  border-color: var(--cyan);
  box-shadow:
    0 0 0 4px rgba(25,247,225,0.13),
    0 0 34px rgba(25,247,225,0.22);
}

.calc-panel select option,
.lead-form select option {
  color: #ffffff;
  background: #07115f;
}

.calc-panel label {
  position: relative;
}

@media (max-width: 720px) {
  .accordion-item.active .accordion-content {
    max-height: 1050px;
  }

  .accordion-btn {
    padding: 20px;
    font-size: 16px;
  }

  .accordion-content p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
  }

  .donut {
    width: 210px;
    height: 210px;
  }

  .donut-label {
    min-width: 38px;
    min-height: 28px;
    font-size: 12px;
  }
}

/* === Финальные правки для прод-версии === */
.accordion-item.active .accordion-content {
  max-height: 900px;
}

.donut-label {
  width: 48px;
  height: 32px;
  min-width: 48px;
  padding: 0;
  font-size: 13px;
  letter-spacing: -0.2px;
  background: linear-gradient(135deg, rgba(7,17,95,0.94), rgba(3,7,53,0.9));
  border: 1px solid rgba(25,247,225,0.42);
  box-shadow: 0 0 20px rgba(25,247,225,0.22), inset 0 0 14px rgba(255,255,255,0.08);
}

.label-main-1 { left: 82%; top: 50%; }
.label-main-2 { left: 32%; top: 82%; }
.label-main-3 { left: 31%; top: 18%; }
.label-main-4 { left: 66%; top: 14%; width: 40px; min-width: 40px; height: 28px; font-size: 12px; }
.label-main-5 { left: 53%; top: 7%; width: 40px; min-width: 40px; height: 28px; font-size: 12px; }
.label-main-6 { left: 40%; top: 10%; width: 40px; min-width: 40px; height: 28px; font-size: 12px; }

.label-buy-1 { left: 83%; top: 55%; }
.label-buy-2 { left: 33%; top: 82%; }
.label-buy-3 { left: 29%; top: 20%; }

.footer {
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 12px;
  min-width: 210px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

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

.social-link {
  min-height: 46px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(25,247,225,0.18);
  transition: 0.25s ease;
}

.social-link svg {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  fill: #06116c;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(25,247,225,0.22);
  flex-shrink: 0;
}

.social-link span {
  font-size: 14px;
  font-weight: 800;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(25,247,225,0.5);
  box-shadow: 0 0 26px rgba(25,247,225,0.16);
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .social-link {
    width: 100%;
    justify-content: flex-start;
  }
}
