/* ========================================
   DESIGN SYSTEM FOUNDATION
   ======================================== */

/* CSS Variables for consistent design */
:root {
    /* Colors */
    --color-primary: #0047bb;
    --color-primary-dark: #003a95;
    --color-accent: #FF671F;
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-text-muted: #8A8A8A;
    --color-bg-light: #F6F6F6;
    --color-bg-lighter: #F8F9FA;
    --color-border: #e0e0e0;
    --color-white: #FFFFFF;
    
    /* Typography Scale */
    --font-size-xs: 0.875rem;      /* 14px */
    --font-size-sm: 1rem;           /* 16px */
    --font-size-base: 1.125rem;     /* 18px */
    --font-size-md: 1.25rem;        /* 20px */
    --font-size-lg: 1.5rem;         /* 24px */
    --font-size-xl: 2rem;           /* 32px */
    --font-size-2xl: 2.625rem;      /* 42px */
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;      /* 8px */
    --space-sm: 1rem;        /* 16px */
    --space-base: 1.125rem;  /* 18px */
    --space-md: 1.5rem;      /* 24px */
    --space-lg: 2rem;        /* 32px */
    --space-xl: 3rem;        /* 48px */
    --space-2xl: 4rem;       /* 64px */
    --space-3xl: 6rem;       /* 96px */
    
    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 15px;
    --radius-full: 999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

/* Font Face */
@font-face {
    font-family: 'Night';
    src: local('Night sans SemiBold'), local('Night-sans-SemiBold'),
    url('../fonts/Nightsans-SemiBold.woff2') format('woff2'),
    url('../fonts/Nightsans-SemiBold.woff') format('woff'),
    url('../fonts/Nightsans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Reset & Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

h5 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Preloader */
.preloader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.preloader.active {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   HEADER STYLES
   ======================================== */
header {
    padding: var(--space-sm) var(--space-2xl) var(--space-sm) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    box-shadow: var(--shadow-sm);
    width: 100%;
    background: var(--color-white);
    z-index: 999;
}

header ul {
    display: flex;
    gap: var(--space-md);
}

header ul a {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-primary);
}

.header__logo {
    font-family: 'Night', sans-serif;
    font-size: var(--font-size-2xl);
    line-height: 1;
}

.header__logo-sp-1 {
    color: var(--color-text-primary);
}

.header__logo-sp-2 {
    color: var(--color-accent);
}

.header__right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__btns {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.header__registerBtn {
    display: block;
    padding: var(--space-xs) var(--space-lg);
    text-align: center;
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.header__registerBtn:hover {
    opacity: 1;
    background: var(--color-bg-lighter);
    transform: translateY(-1px);
}

.header__changeLang__wrapper {
    position: relative;
}

.header__langBtn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 200;
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
}

.header__langBtn img {
    height: 20px;
    width: 20px;
}

.header__changeLang__wrapper:hover span {
    color: #0047BB;
}

/* ========================================
   HEADER LANGUAGE SWITCHER
   ======================================== */
.header__changeLang__wrapper {
    position: relative;
}

.header__langBtn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.header__langBtn img {
    height: 20px;
    width: 20px;
}

.header__changeLang__wrapper:hover span {
    color: var(--color-primary);
}

.header__changeLang__wrapper:hover img {
    filter: invert(15%) sepia(57%) saturate(4754%) hue-rotate(212deg) brightness(102%) contrast(104%);
}

.header__lang-list {
    position: absolute;
    width: 200px;
    background: var(--color-white);
    z-index: 9999;
    left: -20px;
    text-align: left;
    box-shadow: var(--shadow-md);
    max-height: 0;
    transition: var(--transition-base);
    overflow: hidden;
}

.header__changeLang__wrapper:hover .header__lang-list {
    max-height: 1000px;
}

.header__lang-list li {
    line-height: 42px;
    cursor: pointer;
    padding: 0 var(--space-lg) 0 35px;
    transition: var(--transition-fast);
}

.header__lang-list li:hover {
    background: var(--color-bg-lighter);
}

.header__lang-list li a {
    display: inline-block;
    width: 100%;
    color: var(--color-text-primary);
}

.header__lang-list li.active a {
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
}

/* ========================================
   LAYOUT & SECTIONS
   ======================================== */
.webpage__wrapper {
    padding-top: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__wrapper {
    padding: var(--space-xl) calc(8% + var(--space-sm));
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__inner {
    width: 100%;
    max-width: 1200px;
}

/* ========================================
   BUTTONS
   ======================================== */
.blueBtn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.125em;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.blueBtn:hover {
    opacity: 1;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btnOpenAcc {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.btnOpenAcc:hover {
    opacity: 1;
    background: var(--color-primary);
    color: var(--color-white);
}

/* ========================================
   APP SECTION
   ======================================== */
.section__inner.section-app {
    max-width: 928px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-app .app-logo {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-md);
}

.section-app h1 {
    text-align: center;
}

.section-app h2 {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    text-align: center;
}

.section-app p {
    text-align: center;
    opacity: 0.9;
}

.section-app .phoneImg {
    width: 100%;
    height: 500px;
    object-position: top;
    object-fit: cover;
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
}

/* ========================================
   AWARD SECTION
   ======================================== */
.section__wrapper.section-award-wrap {
    padding: var(--space-3xl) calc(8% + var(--space-sm));
    background: var(--color-bg-light);
}

.section-award {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.section-award div {
    width: 50%;
}

.section-award .awardImg-div img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.section-award h2 {
    margin-bottom: var(--space-md);
}

.awardImg-div h2 {
    display: none;
    width: 100%;
    text-align: center;
}

.award-content ul {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.award-content li h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
    line-height: var(--line-height-normal);
}

.award-content li p {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.award-content li a {
    color: var(--color-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
}

.award-content li a:hover {
    opacity: 0.8;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.section-advantages {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-advantages h2 {
    width: 100%;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-advantages ul {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    text-align: left;
    list-style: disc;
    color: var(--color-text-primary);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    padding-left: var(--space-lg);
}

.section-advantages ul li {
    margin-bottom: var(--space-sm);
}

.advantages-img {
    width: 100%;
    max-width: 722px;
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.downloadApp__wrapper {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}

.downloadApp__wrapper img {
    width: 100%;
    max-width: 160px;
    transition: var(--transition-base);
}

.downloadApp__wrapper img:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

/* ========================================
   REGULATED SECTION
   ======================================== */
.section-regulated_wrapper {
    background-position: center;
    background-size: cover;
    padding: var(--space-3xl) calc(8% + var(--space-sm));
}

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

.section-regulated__inner h2 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    margin-left: auto;
    margin-right: auto;
}

.section-regulated__inner p {
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.section-regulated__inner .btn-wrap-center {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ========================================
   ACTIVATION SECTION
   ======================================== */
.section-activation-wrap {
    background: var(--color-bg-light);
    padding: var(--space-3xl) calc(8% + var(--space-sm));
}

.section-activation {
    max-width: 1114px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-activation h2 {
    max-width: 600px;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-activation .steps {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    width: 100%;
}

.section-activation .steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.section-activation .steps img {
    max-width: 186px;
    width: 100%;
    margin-bottom: var(--space-lg);
}

.section-activation .steps h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-activation .steps p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    color: var(--color-text-secondary);
    text-align: center;
    opacity: 0.9;
}

.section-activation .btn-wrap-center {
    margin-top: var(--space-xl);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.h-blue {
    color: var(--color-primary) !important;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
}

.h-border-bottom {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-accent);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
}

.small-p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
    margin-bottom: var(--space-md);
}

.p-16 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
}

.PC-view {
    display: block;
}

.mob-view {
    display: none !important;
}

/* ========================================
   PAYMENT METHODS SECTION
   ======================================== */
.section-payMethods-wrap {
    padding: var(--space-2xl) calc(8% + var(--space-sm));
}

.section-payMethods-wrap .section__inner {
    max-width: 1021px;
}

.section-payMethods-wrap h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-payMethods-wrap ul {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.section-payMethods-wrap ul img {
    width: 100%;
    max-width: 200px;
    filter: grayscale(20%);
    transition: var(--transition-base);
}

.section-payMethods-wrap ul img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========================================
   TRADE SECTION
   ======================================== */
.section-trade-wrap {
    padding: var(--space-2xl) calc(8% + var(--space-sm));
}

.section-trade-wrap .section__inner {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.section-trade-wrap .section__inner > div {
    width: 50%;
}

.section-trade-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.section-trade-wrap .h-border-bottom {
    width: 100%;
    margin-bottom: var(--space-md);
}

.section-trade-wrap p {
    margin-bottom: var(--space-md);
}

/* ========================================
   PLATFORMS SECTION
   ======================================== */
.section-platforms-wrap {
    padding: var(--space-2xl) calc(8% + var(--space-sm));
    background: var(--color-bg-lighter);
}

.section-platforms-wrap .section__inner {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.section-platforms-wrap div {
    width: 100%;
}

.section-platforms-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.section-platforms-wrap .h-border-bottom {
    position: relative;
    width: 100%;
    margin-bottom: var(--space-md);
}

.section-platforms-wrap .h-border-bottom span {
    padding-right: 75px;
}

.a-hov-red {
    position: absolute !important;
    right: 0;
    bottom: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    font-weight: var(--font-weight-regular);
    padding-right: var(--space-sm);
    transition: var(--transition-fast);
}

.a-hov-red:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border: var(--color-text-primary) solid;
    border-width: 0 2px 2px 0;
    margin-top: -3px;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.a-hov-red:hover {
    opacity: 1;
    color: var(--color-accent);
}

.a-hov-red:hover::after {
    border-color: var(--color-accent);
}

.section-platforms-wrap ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.section-platforms-wrap ul li {
    padding-left: var(--space-md);
    position: relative;
}

.section-platforms-wrap ul li img {
    width: 10px;
    position: absolute;
    left: 0;
    top: var(--space-xs);
}

.section-platforms-wrap ul li p {
    margin: 0;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.section-trust-wrap {
    padding: var(--space-2xl) calc(8% + var(--space-sm));
}

.section-trust-wrap .section__inner {
    display: flex;
    gap: var(--space-2xl);
}

.section-trust-wrap .section__inner div {
    width: 100%;
}

.section-trust-wrap .section__inner .h-border-bottom {
    width: 100%;
    margin-bottom: var(--space-md);
}

.trust-div400 {
    max-width: 400px;
}

.trust-div650 {
    max-width: 650px;
}

.section-trust-wrap .section__inner a {
    position: relative;
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    font-weight: var(--font-weight-regular);
    padding-right: var(--space-sm);
    transition: var(--transition-fast);
}

.section-trust-wrap .section__inner a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border: var(--color-text-primary) solid;
    border-width: 0 2px 2px 0;
    margin-top: -3px;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.section-trust-wrap .section__inner a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.section-trust-wrap .section__inner a:hover::after {
    border-color: var(--color-accent);
}

.section-trust-wrap .section__inner ul {
    display: flex;
    gap: var(--space-lg);
    flex-direction: column;
}

.section-trust-wrap .section__inner li {
    position: relative;
    padding-left: 52px;
}

.section-trust-wrap .section__inner li p {
    margin: 0;
}

.section-trust-wrap .section__inner li img {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
}

/* ========================================
   SIX DIVS / FEATURES SECTION
   ======================================== */
.six-divs-wrap {
    padding: var(--space-2xl) calc(8% + var(--space-sm));
    background: var(--color-bg-lighter);
}

.six-divs-wrap .section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.six-divs-wrap .h-border-bottom {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.three-divs {
    display: flex;
    gap: var(--space-xl);
    max-width: 1100px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.three-divs .wrap {
    width: 100%;
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.three-divs .wrap img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.three-divs .wrap h5 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
    margin-bottom: var(--space-xs);
}

.three-divs .wrap p {
    margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-wrap {
    width: 100%;
    max-width: 980px;
    padding: var(--space-2xl) var(--space-3xl);
    background: var(--color-bg-lighter);
    flex-direction: column;
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
}

.faq-div-up {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.faq-div-up h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
}

.faq-wrap .section__inner {
    width: 100%;
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.faq-block {
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
}

.faq-block:last-child {
    border-bottom: none;
}

.faq-block h4 {
    position: relative;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.faq-block h4::before {
    content: "";
    position: absolute;
    top: var(--space-xs);
    left: 0;
    height: 8px;
    width: 8px;
    border: var(--color-text-primary) solid;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 2px;
}

.faq-block p {
    padding-left: var(--space-lg);
    margin: 0;
}

/* ========================================
   MAIN FEATURES SECTION
   ======================================== */
.section-main-features {
    padding: var(--space-2xl) calc(8% + var(--space-sm));
}

.section-main-features .section__inner {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-main-features .section__inner h2 {
    max-width: 600px;
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Grid Layout для ровных карточек */
.features-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-xl);
    width: 100%;
}

/* Карточка с фиксированной структурой */
.feature-div {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
    padding-left: calc(var(--space-lg) + 50px);
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%; /* Важно для выравнивания */
}

.feature-div:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-div img {
    position: absolute;
    left: var(--space-lg);
    top: var(--space-lg);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.feature-div h5 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
    margin-bottom: var(--space-sm);
    min-height: 2.5em; /* Выравнивание заголовков */
}

.feature-div p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    margin: 0;
    flex-grow: 1; /* Заполняет оставшееся пространство */
}

/* Убираем старые блоки */
.features-block {
    display: contents; /* Элементы будут частью родительского grid */
}

/* ========================================
   FOOTER
   ======================================== */
.section-footer {
    padding: var(--space-2xl) calc(8% + var(--space-sm)) var(--space-3xl);
    background: var(--color-bg-light);
}

.section-footer .section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
}

.footer-app-logo {
    height: 50px;
    width: 50px;
    margin-bottom: var(--space-lg);
}

.footer-follow-p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-medium);
}

.footer-social-medias {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    align-items: center;
}

.footer-social-medias img {
    width: 36px;
    height: 36px;
    transition: var(--transition-base);
}

.footer-social-medias a:hover img {
    transform: translateY(-3px);
}

.footer-div-text {
    width: 100%;
    text-align: center;
}

.footer-div-text .a-link {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-normal);
    margin-bottom: var(--space-md);
}

.footer-div-text .a-link a {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-div-text .a-link a:hover {
    color: var(--color-primary);
}

.footer-p {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
    margin-bottom: var(--space-md);
    text-align: center;
}

/* ========================================
   MODAL REGISTER NOW
   ======================================== */
.modalRegisterNow {
    max-width: 600px;
    width: 100%;
    height: 150px;
    position: fixed;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 998;
}

.modalRegisterNow.visible {
    display: flex;
}

.modalRegisterNow a {
    display: block;
    width: 336px;
    height: 72px;
    line-height: 72px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.modalRegisterNow a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 71, 187, 0.4);
}


/* ========================================
   RESPONSIVE DESIGN - TABLET & BELOW
   ======================================== */
@media screen and (max-width: 1024px) {
    /* Award Section */
    .section-award {
        flex-direction: column-reverse;
        gap: var(--space-lg);
    }

    .section-award div {
        width: 100%;
    }

    /* Trade Section */
    .section-trade-wrap .section__inner {
        flex-direction: column-reverse;
        gap: var(--space-lg);
    }

    .section-trade-wrap .section__inner div {
        width: 100%;
    }

    .section-trade-wrap img {
        margin-top: var(--space-md);
    }

    /* Toggle PC/Mobile Views */
    .PC-view {
        display: none !important;
    }

    .mob-view {
        display: block !important;
    }

    /* Button Adjustments */
    .btnOpenAcc {
        display: block;
        width: 100%;
        color: var(--color-white);
        background: var(--color-primary);
        padding: var(--space-sm) 0;
        text-align: center;
    }

    /* Platforms Section */
    .section-platforms-wrap .section__inner {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .section-platforms-wrap div {
        width: 100%;
    }

    .section-platforms-wrap .h-border-bottom span {
        max-width: 275px;
    }

    /* Trust Section */
    .section-trust-wrap .section__inner {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .trust-div400,
    .trust-div650 {
        max-width: 100%;
    }

    .trust-div400 .small-p {
        padding-left: var(--space-sm);
        padding-right: var(--space-xs);
    }

    /* Three Divs Layout */
    .three-divs {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* Features Grid */
    .features-wrap {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature-div {
        padding: var(--space-md);
        padding-left: calc(var(--space-md) + 40px);
    }

    .feature-div img {
        left: var(--space-md);
        top: var(--space-md);
        width: 28px;
        height: 28px;
    }

    .feature-div h5 {
        font-size: var(--font-size-md);
        min-height: auto;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media screen and (max-width: 768px) {
    /* Typography Adjustments */
    h1 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-md);
    }

    h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-md);
    }

    h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-sm);
    }

    h4 {
        font-size: var(--font-size-base);
    }

    h5 {
        font-size: var(--font-size-sm);
    }

    p {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-relaxed);
        margin-bottom: var(--space-md);
    }

    /* Layout */
    .section__wrapper {
        padding: var(--space-xl) var(--space-sm);
    }

    .webpage__wrapper {
        padding-top: 100px; /* Уменьшенный отступ для фиксированного header */
    }

    /* Header - Улучшенная мобильная версия */
    header {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-sm);
        gap: var(--space-sm);
    }

    .header__logo {
        font-size: var(--font-size-lg);
        flex-shrink: 0;
    }

    .header__right {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xs);
    }

    .header__right ul {
        gap: var(--space-sm);
        font-size: var(--font-size-xs);
    }

    .header__btns {
        width: auto;
    }

    .header__registerBtn {
        display: flex;
        align-items: center;
        height: 32px;
        line-height: 32px;
        padding: 0 var(--space-sm);
        background: var(--color-primary);
        color: var(--color-white);
        border-radius: var(--radius-sm);
        font-size: var(--font-size-xs);
        white-space: nowrap;
    }

    /* Buttons */
    .blueBtn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-size-sm);
        width: 100%;
        text-align: center;
        margin-top: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .btnOpenAcc {
        width: 100%;
        padding: var(--space-sm) 0;
        text-align: center;
    }

    /* App Section */
    .section-app {
        padding: 0 var(--space-sm);
    }

    .section-app .app-logo {
        width: 56px;
        height: 56px;
        margin-bottom: var(--space-sm);
    }

    .section-app h1 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-md);
    }

    .section-app h2 {
        font-size: var(--font-size-base);
        line-height: var(--line-height-normal);
        padding: 0 var(--space-xs);
    }

    .section-app p {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-relaxed);
        text-align: left;
    }

    .section-app .phoneImg {
        height: 280px;
        margin-top: var(--space-lg);
        border-radius: var(--radius-md);
    }

    /* Awards Section */
    .section__wrapper.section-award-wrap {
        padding: var(--space-xl) var(--space-sm);
    }

    .award-content h2 {
        display: none;
    }

    .awardImg-div h2 {
        display: block;
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-lg);
    }

    .award-content ul {
        margin-top: 0;
        gap: var(--space-md);
    }

    .award-content li {
        margin-bottom: 0;
    }

    .award-content li h4 {
        font-size: var(--font-size-base);
        line-height: var(--line-height-normal);
    }

    .award-content li p {
        font-size: var(--font-size-xs);
    }

    .award-content li a {
        font-size: var(--font-size-base);
    }

    .awardImg-div img {
        margin-top: var(--space-lg);
    }

    /* Advantages Section */
    .section-advantages {
        padding: var(--space-xl) 0;
    }

    .section-advantages h2 {
        font-size: var(--font-size-lg);
        padding: 0 var(--space-sm);
    }

    .section-advantages ul {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-relaxed);
        padding-left: var(--space-xl);
        padding-right: var(--space-sm);
    }

    .section-advantages ul li {
        margin-bottom: var(--space-sm);
    }

    .advantages-img {
        margin-top: var(--space-lg);
        margin-bottom: var(--space-lg);
    }

    .downloadApp__wrapper {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .downloadApp__wrapper img {
        max-width: 140px;
    }

    /* Regulated Section */
    .section-regulated_wrapper {
        padding: var(--space-3xl) var(--space-sm);
    }

    .section-regulated__inner h2 {
        font-size: var(--font-size-lg);
        color: var(--color-white);
    }

    .section-regulated__inner p {
        font-size: var(--font-size-sm);
    }

    /* Activation Steps */
    .section-activation-wrap {
        padding: var(--space-xl) var(--space-sm);
    }

    .section-activation h2 {
        font-size: var(--font-size-lg);
        padding: 0 var(--space-sm);
    }

    .section-activation .steps {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .section-activation .steps img {
        max-width: 120px;
        margin-bottom: var(--space-md);
    }

    .section-activation .steps h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-sm);
    }

    .section-activation .steps p {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-relaxed);
        margin-bottom: 0;
    }

    /* Payment Methods */
    .section-payMethods-wrap {
        padding: var(--space-xl) var(--space-sm);
    }

    .section-payMethods-wrap h2 {
        font-size: var(--font-size-lg);
    }

    .section-payMethods-wrap ul {
        flex-direction: column;
        gap: var(--space-md);
    }

    .section-payMethods-wrap ul img {
        max-width: 160px;
    }

    /* Trade Section */
    .section-trade-wrap {
        padding: var(--space-xl) var(--space-sm);
    }

    .section-trade-wrap img {
        margin-top: var(--space-md);
    }

    /* Headings */
    .h-blue {
        font-size: var(--font-size-lg);
    }

    .h-border-bottom {
        font-size: var(--font-size-md);
        line-height: var(--line-height-normal);
        padding-bottom: var(--space-xs);
        padding-right: 0;
    }

    .small-p {
        font-size: var(--font-size-sm);
        padding-top: var(--space-sm);
        padding-bottom: var(--space-sm);
    }

    /* Platforms Section */
    .section-platforms-wrap {
        padding: var(--space-xl) var(--space-sm);
    }

    .section-platforms-wrap .h-border-bottom span {
        max-width: 100%;
        padding-right: 0;
    }

    /* Trust Section */
    .section-trust-wrap {
        padding: var(--space-xl) var(--space-sm);
    }

    .section-trust-wrap .section__inner {
        gap: var(--space-lg);
    }

    .trust-div400 .small-p {
        padding-left: 0;
        padding-right: 0;
    }

    /* Six Divs / Security Section */
    .six-divs-wrap {
        padding: var(--space-xl) var(--space-sm);
    }

    .six-divs-wrap .h-border-bottom {
        font-size: var(--font-size-md);
        text-align: center;
        padding: 0 var(--space-xs);
    }

    .three-divs {
        gap: var(--space-lg);
    }

    .three-divs .wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-sm);
    }

    .three-divs .wrap img {
        width: 48px;
        height: 48px;
    }

    .three-divs .wrap h5 {
        font-size: var(--font-size-sm);
        text-align: center;
    }

    .three-divs .wrap p {
        text-align: center;
    }

    /* FAQ Section */
    .faq-wrap {
        padding: var(--space-xl) var(--space-sm);
        margin: var(--space-md) var(--space-sm);
        width: calc(100% - var(--space-lg));
    }

    .faq-div-up h3 {
        font-size: var(--font-size-lg);
        text-align: center;
        padding: 0 var(--space-sm);
    }

    .faq-wrap .section__inner {
        padding: var(--space-md);
    }

    .faq-wrap .faq-block {
        padding: var(--space-sm) 0;
    }

    .faq-wrap .faq-block h4 {
        font-size: var(--font-size-sm);
        padding: 0 0 0 var(--space-lg);
        line-height: var(--line-height-normal);
    }

    .faq-wrap .faq-block p {
        font-size: var(--font-size-xs);
        padding-left: var(--space-lg);
    }

    .p-16 {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-relaxed);
    }

    /* Features для мобильных */
    .section-main-features {
        padding: var(--space-xl) var(--space-sm);
    }

    .section-main-features .section__inner h2 {
        font-size: var(--font-size-lg);
        padding: 0 var(--space-sm);
    }

    .features-wrap {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .feature-div {
        padding: var(--space-md);
        padding-left: calc(var(--space-md) + 36px);
    }

    .feature-div img {
        left: var(--space-sm);
        top: var(--space-md);
        width: 24px;
        height: 24px;
    }

    .feature-div h5 {
        font-size: var(--font-size-sm);
        min-height: auto;
        margin-bottom: var(--space-xs);
        line-height: var(--line-height-normal);
    }

    .feature-div p {
        font-size: var(--font-size-xs);
        line-height: var(--line-height-relaxed);
    }

    /* Modal */
    .modalRegisterNow {
        height: 70px;
        bottom: var(--space-sm);
    }

    .modalRegisterNow a {
        font-size: var(--font-size-base);
        width: 240px;
        height: 48px;
        line-height: 48px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media screen and (max-width: 480px) {
    /* Extra small adjustments */
    h1 {
        font-size: var(--font-size-lg);
    }

    h2 {
        font-size: var(--font-size-md);
    }

    .section__wrapper {
        padding: var(--space-lg) var(--space-xs);
    }

    /* Header для маленьких экранов */
    .header__logo {
        font-size: var(--font-size-base);
    }

    .header__right ul {
        font-size: 11px;
        gap: var(--space-xs);
    }

    .header__registerBtn {
        font-size: 11px;
        padding: 0 var(--space-xs);
        height: 28px;
        line-height: 28px;
    }

    /* Уменьшенные отступы */
    .section-app,
    .section-advantages,
    .section-activation-wrap,
    .section-payMethods-wrap,
    .section-trade-wrap,
    .section-platforms-wrap,
    .section-trust-wrap,
    .six-divs-wrap,
    .section-main-features {
        padding: var(--space-lg) var(--space-xs);
    }

    /* App section */
    .section-app .app-logo {
        width: 48px;
        height: 48px;
    }

    .section-app h1 {
        font-size: var(--font-size-lg);
    }

    .section-app h2 {
        font-size: var(--font-size-sm);
    }

    /* Buttons */
    .blueBtn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }

    /* Features */
    .feature-div {
        padding: var(--space-sm);
        padding-left: calc(var(--space-sm) + 32px);
    }

    .feature-div img {
        width: 20px;
        height: 20px;
        left: var(--space-xs);
    }

    .feature-div h5 {
        font-size: var(--font-size-xs);
    }

    .feature-div p {
        font-size: 12px;
    }

    /* Three divs */
    .three-divs .wrap img {
        width: 40px;
        height: 40px;
    }

    /* FAQ */
    .faq-wrap {
        padding: var(--space-md) var(--space-xs);
        margin: var(--space-sm) 0;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .faq-div-up h3 {
        font-size: var(--font-size-base);
    }

    .faq-wrap .section__inner {
        padding: var(--space-sm);
    }

    /* Modal */
    .modalRegisterNow {
        max-width: 90%;
        height: 60px;
    }

    .modalRegisterNow a {
        width: 200px;
        height: 44px;
        line-height: 44px;
        font-size: var(--font-size-sm);
    }
}

/* ========================================
   LEAD FORM SECTION
   ======================================== */
.lead-form-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563a8 100%);
    padding: var(--space-3xl) var(--space-md);
}

.lead-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.lead-form-header {
    text-align: center;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.lead-form-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
    color: var(--color-white);
    line-height: var(--line-height-tight);
}

.lead-form-subtitle {
    font-size: var(--font-size-base);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
    color:#fff;
}

.lead-form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.lead-form-grid {
    display: grid;
    gap: var(--space-md);
}

.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.lead-form-group {
    width: 100%;
}

.lead-form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
}

.lead-form-required {
    color: #e74c3c;
}

.lead-form-input,
.lead-form-select {
    width: 100%;
    padding: var(--space-sm) var(--space-base);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.lead-form-select {
    background-color: var(--color-white);
    cursor: pointer;
}

.lead-form-input:focus,
.lead-form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 71, 187, 0.1);
}

.lead-form-checkbox-wrapper {
    margin-top: var(--space-sm);
}

.lead-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
}

.lead-form-checkbox {
    margin-right: var(--space-sm);
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.lead-form-checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.lead-form-submit {
    width: 100%;
    padding: var(--space-base);
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563a8 100%);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 71, 187, 0.3);
}

.lead-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 71, 187, 0.4);
}

.lead-form-submit:active {
    transform: translateY(0);
}

.lead-form-security-note {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

.lead-form-stats {
    margin-top: var(--space-xl);
    text-align: center;
    color: var(--color-white);
    opacity: 0.9;
}

.lead-form-stats-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.lead-form-stat-item {
    text-align: center;
}

.lead-form-stat-number {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-xs);
}

.lead-form-stat-label {
    font-size: var(--font-size-xs);
    opacity: 0.8;
}

/* Lead Form - Mobile Responsive */
@media (max-width: 768px) {
    .lead-form-section {
        padding: var(--space-xl) var(--space-sm);
    }

    .lead-form-header {
        margin-bottom: var(--space-lg);
    }

    .lead-form-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-sm);
    }

    .lead-form-subtitle {
        font-size: var(--font-size-sm);
    }

    .lead-form-card {
        padding: var(--space-lg) var(--space-md);
        border-radius: var(--radius-lg);
    }

    .lead-form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .lead-form-grid {
        gap: var(--space-md);
    }

    .lead-form-input,
    .lead-form-select {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }

    .lead-form-label {
        font-size: var(--font-size-xs);
    }

    .lead-form-submit {
        padding: var(--space-sm);
        font-size: var(--font-size-sm);
    }

    .lead-form-checkbox-label {
        font-size: 13px;
    }

    .lead-form-stats {
        margin-top: var(--space-lg);
    }

    .lead-form-stats-grid {
        gap: var(--space-lg);
    }

    .lead-form-stat-number {
        font-size: 28px;
    }

    .lead-form-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lead-form-title {
        font-size: var(--font-size-lg);
    }

    .lead-form-subtitle {
        font-size: var(--font-size-xs);
    }

    .lead-form-card {
        padding: var(--space-md) var(--space-sm);
    }

    .lead-form-stats-grid {
        gap: var(--space-md);
        flex-direction: column;
    }

    .lead-form-stat-number {
        font-size: 32px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-info-section {
    background: var(--color-bg-lighter);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info-title {
    font-size: var(--font-size-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    font-weight: var(--font-weight-bold);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563a8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    margin-right: var(--space-md);
}

.contact-info-content h3 {
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
}

.contact-info-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
}

.contact-info-content a {
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-content a:hover {
    color: #2563a8;
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.contact-social-link {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
}

.contact-social-link:hover {
    background: #2563a8;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 71, 187, 0.3);
}

.contact-form-section {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: var(--font-size-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-bold);
}

.contact-form-group {
    margin-bottom: var(--space-md);
}

.contact-form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-family: 'Roboto', sans-serif;
    transition: var(--transition-base);
    box-sizing: border-box;
}

.contact-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 71, 187, 0.1);
}

.contact-form-submit {
    width: 100%;
    padding: var(--space-sm);
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563a8 100%);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-sm);
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 71, 187, 0.4);
}

.contact-map-section {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding-top: var(--space-md);
}

.contact-map-container {
    width: 100%;
    height: 450px;
    border: none;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Page - Mobile Responsive */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: var(--space-lg) var(--space-sm);
    }

    .contact-info-section,
    .contact-form-section {
        padding: var(--space-lg) var(--space-md);
    }

    .contact-info-title,
    .contact-form-title {
        font-size: var(--font-size-lg);
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-md);
        margin-right: var(--space-sm);
    }

    .contact-map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .contact-form-section {
        padding: var(--space-md) var(--space-sm);
    }

    .contact-info-title,
    .contact-form-title {
        font-size: var(--font-size-md);
    }

    .contact-info-content h3 {
        font-size: var(--font-size-sm);
    }

    .contact-info-content p {
        font-size: var(--font-size-xs);
    }

    .contact-map-container {
        height: 300px;
    }
}






