

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2b2f36;
    background-color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #2b2f36;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2f36;
    letter-spacing: -0.5px;
}

.logo span {
    color: #5b6cff;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2b2f36;
    transition: color 0.2s ease;
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #5b6cff;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5b6cff;
    transition: width 0.2s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-badge {
    font-size: 0.8rem;
    color: #6b7280;
    padding: 6px 14px;
    background: #f5f6f8;
    border-radius: 20px;
}

.header-line {
    height: 2px;
    background: linear-gradient(90deg, #5b6cff 0%, rgba(91, 108, 255, 0.3) 100%);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #2b2f36;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 999;
    flex-direction: column;
    padding: 100px 24px 40px;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid #f5f6f8;
    color: #2b2f36;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: #5b6cff;
}

.nav-mobile-info {
    margin-top: auto;
    font-size: 0.9rem;
    color: #6b7280;
    padding-top: 24px;
    border-top: 1px solid #f5f6f8;
}

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f6f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 108, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #5b6cff;
    border-radius: 12px;
    z-index: -1;
}

.hero-simple {
    padding: 140px 0 60px;
    background: #f5f6f8;
    text-align: center;
}

.hero-simple h1 {
    margin-bottom: 1rem;
}

.hero-simple p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-gray {
    background: #f5f6f8;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-title p {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-block.reverse {
    direction: rtl;
}

.split-block.reverse > * {
    direction: ltr;
}

.split-image img {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.split-text h2 {
    margin-bottom: 1.25rem;
}

.split-text p {
    color: #4b5563;
}

.accent-block {
    background: #ffffff;
    border-left: 4px solid #5b6cff;
    padding: 32px 40px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.accent-block h3 {
    color: #5b6cff;
    margin-bottom: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    transition: border-color 0.2s ease;
}

.card:hover {
    border-color: #5b6cff;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #f5f6f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #5b6cff;
    font-size: 1.25rem;
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.h-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.h-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.h-card:hover {
    border-color: #5b6cff;
}

.h-card-number {
    width: 40px;
    height: 40px;
    background: #5b6cff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.h-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.h-card-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

th, td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

th {
    background: #f5f6f8;
    font-weight: 600;
    color: #2b2f36;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    color: #4b5563;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: #fafafa;
}

.two-col-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.two-col-text h3 {
    color: #5b6cff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.full-visual {
    width: 100%;
    height: 400px;
    background: #f5f6f8;
    position: relative;
    overflow: hidden;
}

.full-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(31, 35, 41, 0.8));
    color: #ffffff;
}

.full-visual-overlay h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.full-visual-overlay p {
    margin-bottom: 0;
    opacity: 0.9;
}

.styled-list {
    list-style: none;
}

.styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #4b5563;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #5b6cff;
    border-radius: 50%;
}

.infoarticles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.infoarticles-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.infoarticles-card:hover {
    border-color: #5b6cff;
    transform: translateY(-4px);
}

.infoarticles-card-image {
    height: 180px;
    background: #f5f6f8;
    overflow: hidden;
}

.infoarticles-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.infoarticles-card-content {
    padding: 24px;
}

.infoarticles-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5b6cff;
    font-weight: 600;
    margin-bottom: 8px;
}

.infoarticles-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.infoarticles-card-content p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.featured-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
}

.featured-image img {
    border-radius: 8px;
}

.featured-content span {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5b6cff;
    font-weight: 600;
    margin-bottom: 12px;
}

.featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.featured-content p {
    color: #6b7280;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-tag {
    padding: 10px 20px;
    background: #f5f6f8;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4b5563;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: #5b6cff;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: #f5f6f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b6cff;
    flex-shrink: 0;
}

.contact-item-text span {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.contact-item-text strong {
    font-weight: 500;
    color: #2b2f36;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2b2f36;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: #2b2f36;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #5b6cff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #5b6cff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #4a5ae8;
}

.policy-content {
    padding: 140px 0 80px;
}

.policy-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #5b6cff;
}

.policy-header h1 {
    margin-bottom: 1rem;
}

.policy-meta {
    font-size: 0.9rem;
    color: #6b7280;
}

.policy-contact {
    background: #f5f6f8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.policy-contact h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #5b6cff;
}

.policy-contact p {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #2b2f36;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: #4b5563;
}

.policy-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #4b5563;
    margin-bottom: 8px;
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background: #f5f6f8;
}

.thank-you-content {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: #5b6cff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #6b7280;
    margin-bottom: 24px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid #5b6cff;
    color: #5b6cff;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #5b6cff;
    color: #ffffff;
}

.disclaimer {
    background: #f5f6f8;
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
    border-left: 3px solid #5b6cff;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
    font-style: italic;
}

.footer-top {
    background: #f5f6f8;
    padding: 48px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-top-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5b6cff;
    margin-bottom: 16px;
}

.footer-top-section ul li {
    margin-bottom: 8px;
}

.footer-top-section a {
    color: #4b5563;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-top-section a:hover {
    color: #5b6cff;
}

.footer-main {
    background: #1f2329;
    padding: 40px 0 24px;
}

.footer-main-content {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main-item {
    text-align: center;
}

.footer-main-item span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-main-item a,
.footer-main-item p {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-main-item a:hover {
    color: #5b6cff;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-accent-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #5b6cff, transparent);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image::before {
        display: none;
    }

    .split-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-block.reverse {
        direction: ltr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infoarticles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col-text {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-inner {
        padding: 0 16px;
    }

    .nav-desktop {
        display: none;
    }

    .header-badge {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .infoarticles-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-main-content {
        flex-direction: column;
        gap: 20px;
    }

    .full-visual {
        height: 280px;
    }

    .accent-block {
        padding: 24px;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .card {
        padding: 24px;
    }

    .h-card {
        flex-direction: column;
        gap: 16px;
    }

    .featured-block {
        padding: 24px;
    }
}
.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 60px;
}

#cookieBanner.cookie-ribbon{
  position:fixed !important;
  z-index:999999 !important;
  right:16px;
  bottom:16px;
  width:390px;
  max-width:calc(100vw - 32px);
  padding:14px;
  box-sizing:border-box !important;
  border-radius:20px;
  background:
    linear-gradient(90deg, rgba(125,211,255,0.12), rgba(99,102,241,0.10)),
    rgba(14,14,18,0.9);
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:0 22px 70px rgba(0,0,0,0.55);
  color:#f5f6fb;
  opacity:0;
  transform:translateY(16px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}
#cookieBanner.cookie-ribbon.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.cookie-ribbon-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.cookie-ribbon-chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
}
.cookie-ribbon-chip-ico{
  width:14px;
  height:14px;
  display:block;
}
.cookie-ribbon-chip-text{
  font-size:12px;
  font-weight:950;
  color:#7dd3ff;
}
.cookie-ribbon-title{
  margin:0;
  font-size:13.5px;
  font-weight:950;
  letter-spacing:0.2px;
}
.cookie-ribbon-text{
  margin:0;
  font-size:13.3px;
  line-height:1.5;
  color:rgba(245,246,251,0.86);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-ribbon-links{
  margin-top:10px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.cookie-ribbon-link{
  font-size:12.5px;
  color:#7dd3ff;
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.28);
}
.cookie-ribbon-link:hover{
  border-bottom-color:rgba(125,211,255,0.8);
}
.cookie-ribbon-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
}
.cookie-ribbon-btn{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  font-size:13.3px;
  font-weight:950;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .08s ease, filter .15s ease, background .15s ease;
}
.cookie-ribbon-btn:active{
  transform:scale(0.99);
}
.cookie-ribbon-btn.solid{
  background:linear-gradient(135deg, rgba(125,211,255,0.95), rgba(99,102,241,0.95));
  color:#0b0b10;
  border-color:rgba(255,255,255,0.10);
}
.cookie-ribbon-btn.ghost{
  background:rgba(255,255,255,0.06);
  color:#f5f6fb;
  border-color:rgba(255,255,255,0.16);
}
.cookie-ribbon-btn.solid:hover{
  filter:brightness(1.06);
}
.cookie-ribbon-btn.ghost:hover{
  background:rgba(255,255,255,0.12);
}
@media (max-width:520px){
  #cookieBanner.cookie-ribbon{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
  }
  .cookie-ribbon-actions{
    flex-direction:column;
  }
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
