/* --- Variables & Reset --- */
:root {
    --color-primary: #1A2238; /* Глибокий індиго */
    --color-primary-light: #2C3E50;
    --color-accent: #00D2BA; /* Неонова м'ята */
    --color-accent-hover: #00B09B;
    --color-text: #334155;
    --color-text-light: #94A3B8;
    --color-bg: #F8FAFC;
    --color-white: #FFFFFF;
    
    --font-main: 'Inter', sans-serif;
    --font-head: 'Manrope', sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--color-primary);
    font-weight: 700;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 16px;
}

.btn:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 210, 186, 0.3);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    color: var(--color-primary);
}

.header__nav {
    display: flex;
}

.header__list {
    display: flex;
    gap: 30px;
}

.header__link {
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition);
}

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

.header__link:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo .logo__text {
    color: var(--color-white);
}

.footer__logo .logo__icon rect {
    fill: var(--color-white);
}

.footer__logo .logo__icon path {
    fill: var(--color-accent);
}

.footer__desc {
    margin-top: 20px;
    color: var(--color-text-light);
    font-size: 14px;
    max-width: 300px;
}

.footer__title {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: var(--color-text-light);
    font-size: 14px;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-light);
    font-size: 14px;
}

.footer__icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 13px;
}

/* --- Mobile Adaptivity --- */
@media (max-width: 992px) {
    .header__btn {
        display: none; /* Можна перенести в мобільне меню */
    }
    
    .header__burger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .header__nav.active {
        transform: translateY(0);
    }

    .header__list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    /* Висота на весь екран мінус хедер */
    min-height: 100vh;
    padding-top: var(--header-height); 
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
}

/* Оверлей, щоб текст краще читався на фоні анімації */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 34, 56, 0.9) 0%, rgba(26, 34, 56, 0.7) 100%);
    z-index: 1;
    pointer-events: none; /* Щоб не блокувати кліки по анімації, якщо потрібно */
}

.hero__container {
    position: relative;
    z-index: 2; /* Текст має бути над фоном */
    width: 100%;
}

.hero__content {
    max-width: 700px;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 210, 186, 0.15);
    border: 1px solid var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero__badge i {
    width: 16px;
    height: 16px;
}

/* Typography */
.hero__title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--color-white);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text-accent {
    color: var(--color-accent);
}

.hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e1; /* Світло-сірий */
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__description strong {
    color: var(--color-white);
    font-weight: 600;
}

/* Buttons */
.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__btn i {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.hero__btn--outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero__btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

/* Stats */
.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__stat-item {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
}

.hero__stat-label {
    font-size: 14px;
    color: #94a3b8;
}

/* Animations Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adaptivity */
@media (max-width: 768px) {
    .hero__title {
        font-size: 36px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__btn {
        width: 100%;
    }
}

/* --- Common Section Styles --- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
}

/* --- Roadmap Section (No Cards!) --- */
.roadmap {
    background-color: var(--color-bg);
    overflow: hidden;
}

.roadmap__wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central Line */
.roadmap__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 210, 186, 0) 0%, 
        rgba(0, 210, 186, 0.5) 15%, 
        rgba(0, 210, 186, 0.5) 85%, 
        rgba(0, 210, 186, 0) 100%
    );
    transform: translateX(-50%);
}

.roadmap__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.roadmap__item:last-child {
    margin-bottom: 0;
}

/* Content block (Text) */
.roadmap__content {
    width: 45%;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5); /* Glass feel */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.roadmap__content:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 210, 186, 0.1);
    transform: translateY(-5px);
}

/* Big Number styling */
.roadmap__number {
    position: absolute;
    top: -40px;
    right: 20px;
    font-size: 100px;
    font-weight: 800;
    color: rgba(26, 34, 56, 0.05); /* Very subtle primary color */
    font-family: var(--font-head);
    line-height: 1;
    z-index: -1;
    transition: var(--transition);
}

.roadmap__content:hover .roadmap__number {
    color: rgba(0, 210, 186, 0.1); /* Glows mint on hover */
    transform: scale(1.1);
}

.roadmap__title {
    font-size: 24px;
    margin-bottom: 16px;
}

.roadmap__text {
    font-size: 16px;
    color: var(--color-text);
}

/* Icon Box (The connector point) */
.roadmap__icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(248, 250, 252, 1); /* Fake border to cut the line */
    transition: var(--transition);
}

.roadmap__icon-box i {
    width: 24px;
    height: 24px;
}

.roadmap__item:hover .roadmap__icon-box {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(0, 210, 186, 0.4);
}

/* Reverse layout for even items */
.roadmap__item--reverse {
    flex-direction: row-reverse;
}

.roadmap__item--reverse .roadmap__content {
    text-align: right;
}

.roadmap__item--reverse .roadmap__number {
    right: auto;
    left: 20px;
}

/* --- Mobile Adaptivity --- */
@media (max-width: 768px) {
    .roadmap__line {
        left: 20px;
        transform: none;
    }

    .roadmap__item, 
    .roadmap__item--reverse {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px; /* Space for line */
        margin-bottom: 60px;
    }

    .roadmap__icon-box {
        left: 20px;
        transform: translateX(-50%);
        top: 0;
        width: 40px;
        height: 40px;
    }

    .roadmap__icon-box i {
        width: 18px;
        height: 18px;
    }

    .roadmap__content {
        width: 100%;
        text-align: left;
    }
    
    .roadmap__item--reverse .roadmap__content {
        text-align: left;
    }

    .section-title {
        font-size: 32px;
    }
}

/* --- Innovations Section (Dark) --- */
.innovations {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    /* Легкий патерн на фоні для текстури */
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 210, 186, 0.05) 0%, transparent 20%);
}

.innovations__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.innovations__content {
    padding-right: 20px;
}

.innovations__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
    border: 1px solid rgba(0, 210, 186, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
}

.innovations__title {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.innovations__text {
    font-size: 16px;
    color: #94A3B8; /* Slate-400 */
    margin-bottom: 20px;
    line-height: 1.7;
}

.innovations__text strong {
    color: var(--color-white);
}

.innovations__actions {
    margin-top: 40px;
}

/* Glowing Button Variation */
.btn--glow {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 210, 186, 0.4);
}

.btn--glow:hover {
    box-shadow: 0 0 30px rgba(0, 210, 186, 0.6);
    transform: translateY(-2px);
    background-color: var(--color-white);
}

/* Feature Cards (List style) */
.innovations__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-right: 20px;
    transition: var(--transition);
}

.feature-card__info {
    flex-grow: 1;
}

.feature-card__title {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-card__desc {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

.feature-card__arrow {
    color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

/* Hover & Active States */
.feature-card:hover,
.feature-card.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateX(-10px);
}

.feature-card:hover .feature-card__icon,
.feature-card.active .feature-card__icon {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 210, 186, 0.3);
}

.feature-card:hover .feature-card__arrow,
.feature-card.active .feature-card__arrow {
    color: var(--color-accent);
    transform: translateX(5px);
}

.feature-card:hover .feature-card__title {
    color: var(--color-accent);
}

/* Mobile Adaptivity */
@media (max-width: 992px) {
    .innovations__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .innovations__content {
        padding-right: 0;
        text-align: center;
    }
    
    .innovations__actions {
        display: flex;
        justify-content: center;
    }

    .feature-card:hover,
    .feature-card.active {
        transform: translateY(-5px); /* Up instead of left on mobile */
    }
}

/* --- Analytics Section --- */
.analytics {
    background-color: var(--color-bg);
}

.analytics__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Mockup Dashboard */
.dashboard {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(26, 34, 56, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.dashboard__header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.dashboard__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.dashboard__dot.red { background-color: #ef4444; }
.dashboard__dot.yellow { background-color: #f59e0b; }
.dashboard__dot.green { background-color: #10b981; }

.dashboard__status {
    margin-left: auto;
    font-size: 12px;
    font-family: monospace;
    color: #10b981;
    animation: blink 2s infinite;
}

.dashboard__item {
    margin-bottom: 25px;
}

.dashboard__label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.dashboard__value {
    color: var(--color-accent-hover);
}

.progress {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress__bar {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 4px;
    position: relative;
    /* Анімація заповнення */
    animation: loadBar 1.5s ease-out forwards;
}

.dashboard__alert {
    margin-top: 20px;
    background-color: rgba(0, 210, 186, 0.1);
    color: var(--color-accent-hover);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.dashboard__alert i {
    width: 18px;
    height: 18px;
}

/* Analytics Content */
.analytics__text {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
}

.analytics__list {
    margin: 30px 0;
}

.analytics__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--color-primary);
}

.analytics__list i {
    color: var(--color-accent);
}

.btn--outline-dark {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    margin-right: 15px;
}

.btn--outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.analytics__note {
    font-size: 12px;
    color: #94a3b8;
}

/* --- Solutions Section --- */
.solutions {
    background-color: #F1F5F9; /* Трохи темніший за білий */
}

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

.sol-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.sol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Accent Card (Center) */
.sol-card--accent {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 210, 186, 0.1);
}

.sol-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.sol-card--accent .sol-card__badge {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.sol-card__title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.sol-card__desc {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 30px;
    min-height: 60px; /* Вирівнювання висоти */
}

.sol-card__features {
    margin-bottom: 30px;
    flex-grow: 1; /* Притискає кнопку до низу */
}

.sol-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-text);
}

.sol-card__features i {
    width: 16px;
    height: 16px;
    color: var(--color-accent-hover);
}

.sol-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.sol-card__link:hover {
    color: var(--color-accent);
    gap: 10px;
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes loadBar {
    from { width: 0; }
}

/* Mobile Adaptivity */
@media (max-width: 992px) {
    .analytics__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .analytics__visual {
        order: -1; /* Візуал зверху на мобільному */
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .solutions__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sol-card {
        text-align: center;
    }
    
    .sol-card__features li {
        justify-content: center;
    }
    
    .sol-card__link {
        justify-content: center;
    }
}

/* --- Contact Section --- */
.contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decoration Circle */
.contact::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 186, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.contact__info {
    max-width: 500px;
}

.contact__title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.contact__desc {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact__desc strong {
    color: var(--color-accent);
}

.contact__benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.contact__benefit-item i {
    color: var(--color-accent);
}

/* Form Styles */
.contact__form-box {
    width: 100%;
    max-width: 500px;
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.form__group {
    margin-bottom: 20px;
    position: relative;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(0, 210, 186, 0.1);
}

.captcha-group {
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 8px;
}

.captcha-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: none; /* JS will show this */
}

.form__checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form__checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
}

.form__checkbox-label {
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
}

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

.form__btn {
    width: 100%;
    justify-content: center;
}

/* Success Message State */
.form__success {
    display: none; /* JS toggles this */
    text-align: center;
    padding: 40px 0;
    animation: fadeIn 0.5s ease;
}

.form__success-icon {
    width: 60px;
    height: 60px;
    background-color: #d1fae5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form__success-icon i {
    width: 32px;
    height: 32px;
}

.form__success h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* --- Cookie Pop-up --- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(150%); /* Hidden by default */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup__text {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-popup__text a {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 1px solid var(--color-accent);
}

.cookie-popup__btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* --- Policy Pages Styles (Generic) --- */
.pages {
    padding: 140px 0 80px; /* More top padding because of fixed header */
}

.pages h1 {
    font-size: 36px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 20px;
    display: inline-block;
}

.pages h2 {
    font-size: 24px;
    margin: 40px 0 20px;
}

.pages p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.pages ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.pages li {
    margin-bottom: 10px;
    color: var(--color-text);
}

.pages a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-accent);
}

/* --- Mobile Adaptivity for Contact --- */
@media (max-width: 992px) {
    .contact__wrapper {
        flex-direction: column;
    }
    
    .contact__info {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .contact__benefits {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .contact__form-box {
        padding: 30px 20px;
    }
}