:root {
    --background: #07111f;
    --background-light: #0b1729;
    --surface: rgba(15, 28, 48, 0.82);
    --surface-strong: #101f35;
    --surface-white: #ffffff;
    --border: rgba(148, 163, 184, 0.16);
    --border-light: rgba(255, 255, 255, 0.12);
    --text: #f8fafc;
    --text-muted: #9fb0c7;
    --text-dark: #122033;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --cyan: #22d3ee;
    --violet: #8b5cf6;
    --pink: #ec4899;
    --green: #10b981;
    --orange: #f59e0b;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius-large: 28px;
    --radius-medium: 20px;
    --radius-small: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.20), transparent 35%),
        radial-gradient(circle at 90% 25%, rgba(34, 211, 238, 0.12), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #091525 55%, #07111f 100%);
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.20;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

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

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 24px 0;
}

.navbar {
    position: relative;
    max-width: 1380px;
    min-height: 82px;
    margin: 0 auto;
    padding: 12px 14px 12px 18px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.82);
    backdrop-filter: blur(24px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.brand-symbol {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 20px;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 11px;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    min-height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 13px;
    color: #bdcbe0;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    width: 360px;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    background: rgba(12, 27, 48, 0.97);
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 14px) scale(0.98);
    transform-origin: top center;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}

.dropdown-panel::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-panel-small {
    width: 320px;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-panel > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px;
    border-radius: 15px;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.dropdown-panel > a:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(3px);
}

.dropdown-panel strong,
.dropdown-panel small {
    display: block;
}

.dropdown-panel strong {
    color: #ffffff;
    font-size: 14px;
}

.dropdown-panel small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 12px;
}

.dropdown-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
}

.header-button {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(37, 99, 235, 0.38);
}

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.home-hero {
    position: relative;
    max-width: 1460px;
    margin: 0 auto;
    padding: 105px 40px 75px;
    overflow: hidden;
}

.hero-layout {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 75px;
}

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

.hero-glow-one {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -180px;
    background: rgba(37, 99, 235, 0.20);
}

.hero-glow-two {
    width: 420px;
    height: 420px;
    top: 60px;
    right: -160px;
    background: rgba(34, 211, 238, 0.12);
}

.hero-badge,
.section-kicker {
    color: #8bc7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-badge {
    width: fit-content;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.09);
    letter-spacing: normal;
    text-transform: none;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 18px #38bdf8;
}

.hero-content h1 {
    max-width: 760px;
    margin: 25px 0 25px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hero-content h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 650px;
    margin: 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 54px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 15px;
    font-weight: 750;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
    box-shadow: 0 25px 45px rgba(37, 99, 235, 0.40);
}

.button-secondary {
    color: #e2e8f0;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.055);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
}

.hero-benefits {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #9fb0c7;
    font-size: 13px;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-benefits i {
    color: #34d399;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.visual-window {
    position: relative;
    margin-top: 35px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background: rgba(13, 27, 47, 0.76);
    backdrop-filter: blur(24px);
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.visual-window::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.06) 45%,
        transparent 65%
    );
    transform: translateX(-120%);
    animation: windowShine 7s infinite;
}

@keyframes windowShine {
    0%,
    65% {
        transform: translateX(-120%);
    }

    85%,
    100% {
        transform: translateX(120%);
    }
}

.visual-window-header {
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #334155;
}

.window-dots span:first-child {
    background: #fb7185;
}

.window-dots span:nth-child(2) {
    background: #fbbf24;
}

.window-dots span:last-child {
    background: #34d399;
}

.window-address {
    flex: 1;
    padding: 8px 15px;
    border-radius: 10px;
    color: #718399;
    background: rgba(255, 255, 255, 0.035);
    font-size: 11px;
}

.visual-window-content {
    padding: 35px;
}

.visual-title-line {
    width: 54%;
    height: 16px;
    border-radius: 99px;
    background: linear-gradient(90deg, #60a5fa, rgba(96, 165, 250, 0.16));
}

.visual-subtitle-line {
    width: 78%;
    height: 9px;
    margin-top: 13px;
    border-radius: 99px;
    background: rgba(148, 163, 184, 0.16);
}

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

.visual-tool-card {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.045);
}

.visual-tool-card strong,
.visual-tool-card small {
    display: block;
}

.visual-tool-card strong {
    font-size: 13px;
}

.visual-tool-card small {
    margin-top: 4px;
    color: #718399;
    font-size: 10px;
}

.visual-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
}

.floating-card {
    position: absolute;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: rgba(15, 30, 51, 0.90);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.30);
    animation: floating 5s ease-in-out infinite;
}

.floating-card i {
    color: #60a5fa;
}

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

.floating-card strong {
    color: #ffffff;
    font-size: 12px;
}

.floating-card span {
    color: #8192a8;
    font-size: 10px;
}

.floating-card-one {
    top: 0;
    right: -15px;
}

.floating-card-two {
    bottom: 30px;
    left: -35px;
    animation-delay: 1.3s;
}

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

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

.blue {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.15);
}

.cyan {
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.15);
}

.violet {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.15);
}

.pink {
    color: #f9a8d4;
    background: rgba(236, 72, 153, 0.15);
}

.green {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.15);
}

.orange {
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.15);
}

.search-section,
.tools-section,
.categories-section,
.trust-section {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.search-section {
    padding-top: 10px;
    padding-bottom: 80px;
}

.search-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.search-wrapper > i {
    position: absolute;
    top: 50%;
    left: 22px;
    color: #718399;
    transform: translateY(-50%);
}

.search-wrapper input {
    width: 100%;
    height: 66px;
    padding: 0 100px 0 58px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    outline: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        border 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.search-wrapper input::placeholder {
    color: #718399;
}

.search-wrapper input:focus {
    border-color: rgba(96, 165, 250, 0.52);
    background: rgba(255, 255, 255, 0.085);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30),
        0 0 0 4px rgba(59, 130, 246, 0.10);
}

.search-shortcut {
    position: absolute;
    top: 50%;
    right: 17px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    color: #718399;
    background: rgba(255, 255, 255, 0.045);
    font-size: 10px;
    transform: translateY(-50%);
}

.tools-section,
.categories-section {
    padding-top: 35px;
    padding-bottom: 90px;
}

.section-heading {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.section-heading h2 {
    margin: 7px 0 0;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #91a6c0;
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.section-link:hover {
    color: #ffffff;
}

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

.tool-card {
    position: relative;
    min-height: 285px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 23px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 20px 45px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.3s ease,
        border 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.tool-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -95px;
    right: -85px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.11);
    filter: blur(20px);
    transition: transform 0.35s ease;
}

.tool-card:hover {
    border-color: rgba(96, 165, 250, 0.34);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.045)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 30px 65px rgba(0, 0, 0, 0.28),
        0 0 50px rgba(37, 99, 235, 0.09);
    transform: translateY(-8px);
}

.tool-card:hover::before {
    transform: scale(1.35);
}

.tool-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.tool-icon {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    font-size: 19px;
}

.tool-badge {
    padding: 5px 9px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.10);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tool-badge.new {
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.24);
    background: rgba(16, 185, 129, 0.10);
}

.tool-card h3 {
    position: relative;
    z-index: 2;
    margin: 25px 0 11px;
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.tool-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #8da0b8;
    font-size: 13px;
    line-height: 1.75;
}

.tool-link {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 700;
}

.tool-link i {
    transition: transform 0.2s ease;
}

.tool-card:hover .tool-link i {
    transform: translateX(5px);
}

.tool-card.is-hidden {
    display: none;
}

.no-results {
    padding: 60px 25px;
    display: none;
    text-align: center;
    color: var(--text-muted);
}

.no-results.is-visible {
    display: block;
}

.no-results i {
    color: #60a5fa;
    font-size: 30px;
}

.no-results h3 {
    margin-bottom: 6px;
    color: #ffffff;
}

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

.category-card {
    min-height: 145px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 0.25s ease,
        border 0.25s ease,
        background 0.25s ease;
}

.category-card:hover {
    border-color: rgba(96, 165, 250, 0.32);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

.category-icon {
    width: 57px;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    font-size: 20px;
}

.category-card h3 {
    margin: 0;
    font-size: 17px;
}

.category-card p {
    margin: 7px 0 0;
    color: #8395ac;
    font-size: 12px;
}

.category-arrow {
    color: #60738d;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.category-card:hover .category-arrow {
    color: #93c5fd;
    transform: translateX(5px);
}

.trust-section {
    padding-top: 20px;
    padding-bottom: 110px;
}

.trust-card {
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.18), transparent 30%),
        rgba(255, 255, 255, 0.045);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.20);
}

.trust-card h2 {
    max-width: 700px;
    margin: 9px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.trust-card p {
    max-width: 690px;
    margin: 0;
    color: #8fa2ba;
}

.trust-statistics {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 34px;
}

.trust-statistics div {
    text-align: center;
}

.trust-statistics strong,
.trust-statistics span {
    display: block;
}

.trust-statistics strong {
    color: #ffffff;
    font-size: 29px;
}

.trust-statistics span {
    margin-top: 4px;
    color: #7f92aa;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.container > .hero {
    padding: 80px 0 50px;
    text-align: center;
}

.container > .hero h1 {
    margin: 0 0 16px;
    font-size: clamp(37px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.container > .hero p {
    color: var(--text-muted);
    font-size: 17px;
}

.tool-box,
.seo-text {
    margin: 30px auto;
    padding: 34px;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 24px;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.27);
}

.tool-box {
    max-width: 850px;
}

.tool-box h2,
.seo-text h2,
.tool-box h3,
.seo-text h3 {
    color: #10213a;
}

.big-input,
.big-textarea,
.tool-box input[type="text"],
.tool-box input[type="number"],
.tool-box input[type="email"],
.tool-box input[type="range"],
.tool-box select,
.tool-box textarea {
    width: 100%;
    margin: 9px 0 18px;
    padding: 14px 16px;
    border: 1px solid #dbe3ee;
    border-radius: 13px;
    outline: 0;
    color: #152238;
    background: #f8fafc;
    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.big-textarea,
.tool-box textarea {
    min-height: 210px;
    resize: vertical;
}

.big-input:focus,
.big-textarea:focus,
.tool-box input:focus,
.tool-box select:focus,
.tool-box textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.10);
}

.generate,
.tool-box button {
    min-height: 49px;
    padding: 0 22px;
    border: 0;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    box-shadow: 0 13px 28px rgba(37, 99, 235, 0.24);
    font-weight: 750;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.generate:hover,
.tool-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.34);
}

.stats {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}

.stats > div {
    padding: 18px;
    border: 1px solid #e4eaf2;
    border-radius: 15px;
    text-align: center;
    background: #f7f9fc;
}

.stats strong {
    color: #2563eb;
    font-size: 24px;
}

.seo-text {
    margin-top: 55px;
    margin-bottom: 65px;
    line-height: 1.8;
}

.seo-text a {
    color: #2563eb;
    font-weight: 650;
}

.site-footer {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 11, 21, 0.70);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand strong {
    font-size: 18px;
}

.footer-brand p {
    margin: 3px 0 0;
    color: #7e91aa;
    font-size: 12px;
}

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

.footer-links a {
    color: #8296ae;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #61748d;
    text-align: center;
    font-size: 11px;
}

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

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(22px);
}

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

@media (max-width: 1100px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content {
        max-width: 800px;
        text-align: center;
        margin: 0 auto;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-benefits {
        justify-content: center;
    }

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

    .visual-window {
        transform: none;
    }

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

    .trust-statistics {
        justify-content: start;
    }
}

@media (max-width: 980px) {
    .site-header {
        padding: 12px 14px 0;
    }

    .navbar {
        min-height: 72px;
        flex-wrap: wrap;
        border-radius: 20px;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .header-button {
        display: none;
    }

    .main-navigation {
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0;
        display: block;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            padding 0.35s ease;
    }

    .main-navigation.is-open {
        max-height: 680px;
        padding: 12px 0 7px;
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-panel {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        border: 0;
        border-radius: 15px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.035);
        transform: none;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease,
            margin 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-panel,
    .nav-dropdown:focus-within .dropdown-panel {
        transform: none;
    }

    .nav-dropdown.is-open .dropdown-panel {
        max-height: 450px;
        margin: 5px 0 8px;
        padding: 8px;
    }

    .nav-dropdown.is-open .dropdown-trigger i {
        transform: rotate(180deg);
    }
}

@media (max-width: 760px) {
    .home-hero {
        padding: 70px 20px 55px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .visual-window-content {
        padding: 22px;
    }

    .visual-tool-grid {
        grid-template-columns: 1fr;
    }

    .visual-tool-card:nth-child(n + 3) {
        display: none;
    }

    .floating-card-one {
        right: 0;
    }

    .floating-card-two {
        left: 0;
        bottom: 0;
    }

    .search-section,
    .tools-section,
    .categories-section,
    .trust-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tools-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-card {
        padding: 30px;
    }

    .trust-statistics {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .brand-copy small {
        display: none;
    }

    .brand-symbol {
        width: 46px;
        height: 46px;
    }

    .hero-content h1 {
        font-size: 41px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .button {
        width: 100%;
    }

    .hero-benefits {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        min-height: 330px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .search-wrapper input {
        height: 60px;
        padding-right: 20px;
        font-size: 13px;
    }

    .search-shortcut {
        display: none;
    }

    .tool-box,
    .seo-text {
        padding: 23px;
    }

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

.features{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin:80px 0;

}

.feature{

padding:35px;

border-radius:24px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.feature:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(37,99,235,.2);

}

.feature i{

font-size:42px;

margin-bottom:25px;

color:#60a5fa;

}
.guide {
    margin: 70px 0;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.guide h2 {
    margin-top: 0;
}

.guide ol {
    padding-left: 22px;
}

.guide li {
    margin: 14px 0;
    color: #cbd5e1;
}
.faq {
    margin: 70px 0;
}

.faq details {
    margin: 14px 0;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    color: #10213a;
    border: 1px solid rgba(255,255,255,.12);
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.faq summary::after {
    content: "+";
    float: right;
    font-size: 22px;
    color: #2563eb;
}

.faq details[open] summary::after {
    content: "−";
}

.faq p {
    margin-bottom: 0;
    color: #475569;
}
.breadcrumb {
    max-width: 1100px;
    margin: 30px auto 0;
    padding: 0 20px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    font-size: 13px;
    color: #94a3b8;
}

.breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
    transition: .2s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    color: rgba(255,255,255,.25);
}

.breadcrumb-current {
    color: #cbd5e1;
}