/*
 * ArmyChoice New Version - Styles
 * Color Scheme: Olive/Military Green + Dark Mustard Yellow
 */

/* === CSS Variables === */
:root {
    --color-olive: #4a5941;
    --color-olive-dark: rgb(80, 101, 62);
    --color-olive-light: #5a6b4f;
    --color-mustard: #f7ca00;
    --color-mustard-dark: #dab200;
    --color-cream: #d0ccb7;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-dark-green: #2d3528;
    --color-text-light: #f0f0e8;
    --color-text-muted: #9a9a8a;
    --color-danger: #c44040;
    --color-danger-bg: #3d2828;

    --font-main: 'Inter', sans-serif;
    --container-width: 1440px;
    --header-height: 70px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-olive);
    color: var(--color-text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll from full-width elements */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul,
ol {
    list-style: none;
}

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-mustard);
    color: var(--color-dark);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 0 #00000038;
    /* Darker mustard shadow for 3D effect */
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #ffe600;
    /* Slightly lighter on hover */
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #000000;
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #000000;
}

.btn-large {
    padding: 18px 40px;
    font-size: 20px;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease;
    /* backdrop-filter: blur(5px); Removed blur on transparent to be fully transparent initially */
}

.header.scrolled {
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
}

.logo img {
    height: 62px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-mustard);
}

.nav-phone {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
}

@media (max-width: 1520px) {
    .nav-phone {
        display: none;
    }
    .header-container {
        padding: 0 20px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-cta {
    padding: 12px 24px;
    font-size: 13px;
    background-color: var(--color-mustard);
    color: var(--color-dark);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 4px 0 #00000060;
    /* Darker mustard shadow */
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: #ffe600;
    color: var(--color-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #000000;
}

.header-cta:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #b59400;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-text-light);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    inset: 0;                 /* top/left/right/bottom:0 в одному */
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-dark);
    padding: 80px 24px 32px;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;

    -webkit-overflow-scrolling: touch;
}

body.menu-open{
  overflow: hidden;
  touch-action: none;
}

@supports not (height: 100dvh){
  .mobile-menu{ height: 100vh; }
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    align-items: center;
    text-align: center;
}

.mobile-nav-link,
.mobile-nav-phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-phone:hover {
    color: var(--color-mustard);
}

.mobile-cta {
    margin-top: 32px;
    width: 100%;
    max-width: 300px;
}

@media (max-width: 1200px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* === Mobile Hero + Badges === */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-container {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title-main {
        font-size: 50px;
    }

    .hero-highlight {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .btn-large {
        padding: 16px 36px;
        font-size: 15px;
    }

    .badges-banner {
        padding: 20px 0;
        position: relative;
        bottom: auto;
    }

    .badges-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .badges-row img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 36px;
    }

    .hero-highlight {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .badges-row {
        gap: 12px;
    }

    .badges-row img {
        height: 40px;
    }
}

/* === Language Switcher === */
.lang-switcher {
    position: relative;
    z-index: 1001;
}

.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.2s;
    color: var(--color-text-light);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
}

.lang-switcher-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-switcher-toggle .lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-switcher-toggle .lang-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.lang-chevron {
    font-size: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    opacity: 0.7;
}

.lang-chevron.open {
    transform: rotate(180deg);
}

.lang-switcher-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #f5f3ea;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    padding: 4px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.lang-switcher-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.2s;
}

.lang-switcher-option:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.lang-switcher-option.active {
    background-color: rgba(0, 0, 0, 0.08);
}

.lang-switcher-option .lang-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-switcher-option .lang-label {
    flex: 1;
    text-align: left;
    letter-spacing: 0.05em;
}

.lang-switcher-option .lang-check {
    opacity: 0;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    transition: opacity 0.2s;
}

.lang-switcher-option.active .lang-check {
    opacity: 1;
}

/* Mobile lang switcher */
.lang-switcher-mobile {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lang-switcher-mobile .lang-switcher-dropdown {
    position: relative;
    top: 8px;
    right: auto;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    width: 100%;
    max-width: 200px;
}

.lang-switcher-mobile .lang-switcher-option {
    color: var(--color-text-light);
}

.lang-switcher-mobile .lang-switcher-option.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.lang-switcher-mobile .lang-switcher-option .lang-check {
    color: var(--color-mustard);
}

@media (max-width: 1200px) {
    #langSwitcherDesktop {
        display: none;
    }
}

/* === Hero Section === */

.hero {
    min-height: 92vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    position: relative;
    background-color: #2f2f25;
}

/* загальне легке затемнення (щоб фото не було “кислотним”) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.76) 38%,
    rgba(0,0,0,.55) 52%,
    rgba(0,0,0,.25) 66%,
    rgba(0,0,0,.10) 78%,
    rgba(0,0,0,0)   100%
  );
}

/* щоб контент був над оверлеями */
.hero-container,
.badges-banner{
  position: relative;
  z-index: 2;
}

.hero-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 80px;
    padding-left: 20px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 1800px) {
    .hero-container {
        padding-top: 100px;
    }
}

@media (max-width: 600px) {
    .hero-container {
        padding: 20px 20px 40px 20px;
    }
    .hero {
        min-height: 100vh;
    }
}

.hero-content {
    max-width: 1100px;
}

.hero-title {
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-title-main {
    font-size: clamp(44px, 5.5vw, 90px);
    line-height: 0.5;
    letter-spacing: -0.03em;
    color: var(--color-white);
    display: block;
}

.hero-highlight {
    font-size: clamp(30px, 4.2vw, 60px);
    letter-spacing: -0.03em;
    color: #fe7600;
    line-height: 1;
    display: block;
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Badges Banner */
.badges-banner {
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 0;
}

.badges-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.badges-marquee{
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 150px;          /* відстань між двома треками */
  width: 100%;

  /* “плавне зникання” по краях */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.badges-track{
  display: flex;
  align-items: center;
  gap: 150px;
  flex-shrink: 0;
  min-width: max-content;
  animation: badges-scroll 60s linear infinite;
}

/* обидва треки їдуть в одну сторону */
@keyframes badges-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* іконки */
.badges-track img{
  height: clamp(60px, 7vw, 100px);
  width: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
  opacity: .95;
  filter: grayscale(100%) brightness(0.9);
  opacity: .7;
  transition: transform 1s ease, filter .35s ease, opacity .35s ease;
}

.badges-track img:hover{
  filter: grayscale(0) brightness(1.05);
  opacity: 1;
  transform: scale(1.2);
  filter: drop-shadow(0 12px 25px rgba(255,138,0,.35));
}

/* пауза при наведенні */
.badges-marquee:hover .badges-track{
  animation-play-state: paused;
}

/* на мобілці трохи швидше і менші відступи */
@media (max-width: 640px){
  .badges-track{ animation-duration: 60s; gap: 80px; }
}

@media (max-width: 450px){
  .hero-title-main {
      line-height: 1;
    }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .badges-track{ animation: none; }
}

/* === Features Section === */
.features {
    background-color: #E8E4D2;
    padding: 40px 0;
    /* Reduced height from 80px */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: left;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-size: 24px;
    font-weight: 800;
    /* Inter Extra Bold */
    color: #50653E;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feature-text {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* === About Section === */
.about {
    background-color: #fff;
    /* min-height removed to allow content to dictate height */
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 600px 1fr;
    /* Fixed narrower width for image column */
    background-color: #fff;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
}

.about-image img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    background-color: #fff;
    padding: 80px 120px 80px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 80%;
}

@media (max-width: 1600px) {
    .about-content {
        max-width: 100%;
    }
}

@media (max-width: 1300px) {
    .about-content {
        padding: 60px 80px;
    }
}

.about-icon {
    margin-bottom: 24px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    /* Extra bold */
    color: #000;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.about-text {
    font-size: 24px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .about-title {
        font-size: 24px;
    }
    .about-text {
    font-size: 18px;
    }
    .about-content {
        padding: 30px 60px;
    }
    .about-container {
    grid-template-columns: 50% 1fr;
}
}

.about-text strong {
    color: #000;
}

@media (max-width: 992px) {
    .about-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: auto;
    }

    .about-content {
        padding: 40px 24px;
    }
}

/* === Steps Section === */
.steps {
    background-color: #1a1a1a;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    background-size: cover; 
}

.steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    /* Lightened from 0.65 */
}

.steps .container {
    position: relative;
    z-index: 1;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-title {
    font-size: clamp(2rem, 3.5vw, 5rem);
    /* Specific request */
    font-weight: 900;
    /* Inter Black */
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.steps-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    padding: 40px 30px;
    background-color: rgba(26, 26, 26, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(0px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-card:hover {
    background-color: rgba(26, 26, 26, 0.85);
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #FF7700;
    /* Bright orange */
    margin-bottom: 20px;
    line-height: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #FF7700;
    /* Bright orange */
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    text-transform: none;
    /* Removed uppercase per screenshot check, but actually screenshot has mixed case/sentence case */
    line-height: 1.3;
}

.step-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
}

.steps-cta .btn-large {
    font-size: 28px;
    font-weight: 700;
    /* Inter Bold */
    letter-spacing: -0.02em;
    padding: 16px 48px;
    /* Adjusted padding for larger text */
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* === Reviews Section === */
/* === Reviews Section === */
.reviews {
    background-color: #E8E4D2;
    /* Military Beige */
    padding: 100px 0;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 80px;
}

.reviews-title {
    font-size: clamp(2rem, 3.5vw, 5rem);
    font-weight: 900;
    color: #50653E;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.reviews-subtitle {
    font-size: 24px;
    color: black;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.review-card {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.review-card:nth-child(even) {
    flex-direction: row-reverse;
}

.review-content {
    background-color: #FFFBED;
    /* Light Cream */
    padding: 20px 120px 20px 120px;
    border-radius: 2px;
    margin-left: 140px;
    /* Solid Shadow */
    flex: 1;
    position: relative;
    z-index: 1;
}

.review-content-next {
    background-color: #FFFBED;
    /* Light Cream */
    padding: 20px 100px;
    border-radius: 2px;
    margin-right: 140px;
    /* Solid Shadow */
    flex: 1;
    position: relative;
    z-index: 1;
}

.review-content::after {
    content: "";
    position: absolute;
    bottom: -27px;
    left: 30px;
    width: 95%;
    height: 27px;
    background:rgba(189, 184, 166, 0.5);
    z-index: -1;

    clip-path: polygon(
        0% 0%,     /* верхній лівий */
        100% 0%,   /* верхній правий */
        0% 100%,  /* нижній правий (звуження) */
        0% 100%    /* нижній лівий */
    );
}

.review-content-next::after {
    content: "";
    position: absolute;
    bottom: -27px;
    right: 30px;
    width: 95%;
    height: 27px;
    background:rgba(189, 184, 166, 0.5);
    z-index: -1;

    clip-path: polygon(
        0% 0%,     /* верхній лівий */
        100% 0%,   /* верхній правий */
        100% 100%,  /* нижній правий (звуження) */
        100% 100%    /* нижній лівий */
    );
}

.review-card:nth-child(even) .review-content {
    padding: 20px 80px 40px 100px;
}

.review-quote {
    position: absolute;
    top: 12px;
    left: 20px;
    pointer-events: none;
}

.review-quote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -40px;
    font-size: 120px;
    font-weight: 900;
    color: rgb(80, 101, 62);
}

.review-card:nth-child(even) .review-quote {
    left: auto;
    right: 20px;
    transform: scaleX(-1);
}

.review-text {
    font-size: 24px;
    color: black;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.review-author {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.review-author strong {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    color: #000;
    text-transform: none;
    margin-bottom: 4px;
}

.review-author span {
    font-size: 14px;
    color: #4a5941;
    font-weight: 600;
    font-style: italic;
}

.review-image {
    flex-shrink: 0;
    width: 327px;
    height: 327px;
    border-radius: 50%;
    overflow: hidden;
    /* Removed white border */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-left: -100px;
    position: relative;
    z-index: 2;
}

.review-card:nth-child(even) .review-image {
    margin-left: 0;
    margin-right: -70px;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-cta {
    text-align: center;
}

@media (max-width: 992px) {
    .review-image {
        width: 200px;
        height: 200px;
        margin-left: -50px;
    }

    .review-quote::before {
    left: -15px;
    top: -20px;
    font-size: 80px;
    }

    .review-content-next {
    margin-right: 0px;
    padding: 20px 60px;
    }

    .review-card:nth-child(even) .review-image {
        margin-right: -50px;
    }

    .review-content {
        padding: 40px 50px 30px 60px;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .review-grid {
        gap: 60px;
    }

    .review-card,
    .review-card:nth-child(even) {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .review-image {
        margin: 0 0 -40px 0 !important;
        width: 180px;
        height: 180px;
    }

    .review-content {
        padding: 60px 30px 40px 30px !important;
    }

    .review-content-next {
        padding: 60px 30px 40px 30px !important;
    }

    .review-author {
        text-align: center;
    }
}

/* === Comparison Section === */
.comparison {
    background-image: url('../new_static/bg-bloor.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.comparison-title {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 60px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1280px; /* або твоя ширина */
    margin: 0 auto;    /* центрує блок */
}

.comparison-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    max-width: 630px;
}

.comparison-recruiting {
    background-color: rgba(28, 46, 11, 0.6);
}

.comparison-image {
    padding: 40px;
}

.comparison-content {
    padding: 40px;
    flex: 1;
}

.comparison-recruiting .comparison-heading {
    color: #90ec45;
    /* Saturated Bright Green */
}

/* Mobilization Card Styles */
.comparison-mobilization {
    background-color: rgba(28, 5, 5, 0.4);
}

.comparison-mobilization .comparison-heading {
    color: #ff5252;
    /* Saturated Soft Red */
}

.comparison-heading {
    font-size: 48px;
    /* Increased from 32px */
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: none;
    /* Keep natural case as in screenshot if needed, but screenshot actually has mixed. Let's start with this. */
}

.comparison-heading img {
    width: 32px;
    height: 32px;
}

.comparison-desc {
    font-size: 24px;
    /* Increased from 16px */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.comparison-list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.comparison-list li strong {
    display: block;
    font-size: 24px;
    /* Increased from 15px */
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 2px;
}

/* Specific colors for list items */
.comparison-recruiting .comparison-list li strong {
    color: #90ec45;
    /* Saturated Bright Green */
}

.comparison-mobilization .comparison-list li strong {
    color: #ff5252;
    /* Saturated Soft Red */
}

.comparison-list li span {
    font-size: 18px;
    /* Increased from 13px */
    color: rgb(255, 255, 255);
    line-height: 1.6;
    display: block;
}


@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* === FAQ Section === */
.faq {
    background-color: #d0ccb7;
    padding: 100px 0;
}

.faq-title {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 5rem);
    font-weight: 900;
    color: rgb(80, 101, 62);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid rgba(61, 74, 54, 0.25);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(61, 74, 54, 0.25);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    color: var(--color-olive-dark);
    font-family: var(--font-main);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #FF7700;
}

.faq-question span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.faq-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    opacity: 0;
    padding-bottom: 0;
}

.faq-item.open .faq-answer {
    max-height: 999px;
    opacity: 1;
    padding-bottom: 28px;
}

.faq-answer p {
    font-size: 20px;
    color: black;
    line-height: 1.6;
}
/* === Edu Section === */
/* фон сторінки навколо секції */
.edu-section{
  padding: 20px 16px 100px 16px;
  background: #333021;
}

.edu-card-link{
    display: block;
    text-decoration: none;
    color: inherit;
}

.edu-card-link:hover{
    cursor: pointer;
}

/* сам “card” */
.edu-card{
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 4px;         
  overflow: hidden;
  background-image: url("../new_static/education-bg1.png");
  background-size: 65%;
  background-position: 100% center;
  background-repeat: no-repeat;
}

/* загальне легке затемнення поверх фото */
.edu-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.10);
  z-index: 1;
}

/* ЛІВИЙ “ЩИТ” (чорний) + м’який перехід, як в макеті */
.edu-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 2;

  /* це ключ: чорна зона зліва і плавне затухання вправо */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.92) 44%,
    rgba(0,0,0,.72) 52%,
    rgba(0,0,0,.35) 62%,
    rgba(0,0,0,.10) 74%,
    rgba(0,0,0,0)   100%
  );
}

/* контент поверх всього */
.edu-content{
  position: relative;
  z-index: 3;
  height: 100%;
  width: 70%;
  padding: 70px 90px; /* відступи як на макеті */
}

/* типографіка */
.edu-title{
  margin: 0 0 18px;
  color:#fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: 66px; /* як на скріні */
}

.edu-accent{
  margin: 0 0 30px;
  color:#ff7700;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-size: 50px; /* як на скріні */
}


/* ----- Адаптив ----- */
@media (max-width: 1100px){
  .edu-card{ height: 380px; }
  .edu-content{padding-left: 56px; width: 100%;}
  .edu-title{ font-size: 44px; }
  .edu-accent{ font-size: 34px; }
}

@media (max-width: 750px){
  .edu-card{ height: auto; background-size:cover;}
  .edu-content{ width: 100%; padding: 34px 22px; }

  .edu-title{ font-size: 34px; }
  .edu-accent{ font-size: 28px; }
}

/* === Contact Section === */
.contact {
    background-color: #333021;
    /* Dark background as requested */
    padding: 80px 0;
}

.contact-badges {
    text-align: center;
    margin-bottom: 40px;
}

.contact-badges-title {
    font-size: clamp(2rem, 3.5vw, 5rem);
    /* Base size for top line */
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.2;
}

.contact-badges-title .highlight {
    color: #FF7700;
    /* Orange */
    font-size: clamp(2rem, 3.5vw, 5rem);
    /* Larger size for second line */
    display: block;
    /* Ensure it takes its own line */
    margin-top: 10px;
}

.contact-phones {
    display: flex;
    justify-content: center;
    gap: 400px;
    /* Reduced gap to bring them closer like in screenshot often implies */
    margin-bottom: 60px;
    flex-wrap: wrap;
    /* Allow wrapping */
}

@media (max-width: 1084px) {
    .contact-phones {
        gap: 120px;
    }
}

.contact .badges-row {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 40px;
    box-sizing: border-box;
    justify-content: space-between;
}
.badges-row {
    position: relative;
    height: 150px;
}

.phone-block {
    text-align: center;
}

.phone-label {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #FF7700;
    /* Orange to match title */
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.phone-number {
    font-size: clamp(1.75rem, 2.8vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-white);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-cream);
    padding: 60px 90px;
    border-radius: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 18px;
    font-weight: 500;
    color: rgb(23, 23, 23);
}

.form-group input,
.form-group textarea {
    background-color: white;
    border: 2px solid white;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--color-dark);
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:hover,
.form-group textarea:hover {
    outline: none;
    border-color: rgba(181, 176, 150, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF7700;
}

.form-consent {
    margin-top: 10px;
}

/* ховаємо стандартний checkbox */
.checkbox-label {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

/* сам квадратик */
.checkmark {
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #e6e6e6;
    display: inline-block;
    position: relative;
    transition: 0.2s ease;
}

/* hover */
.custom-checkbox:hover .checkmark {
    box-shadow: 0 0 0 2px rgba(181, 176, 150, 1);
}

/* коли обрано */
.custom-checkbox input:checked + .checkmark {
    background: #FF7700;
}

/* галочка */
.checkmark::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    display: none;
}

/* показуємо галочку коли checked */
.custom-checkbox input:checked + .checkmark::after {
    display: block;
}

.checkbox-label-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.consent-note {
    font-size: 12px;
    color: #777;
    margin-top: 12px;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 868px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-badges {
        margin-bottom: 0px;
    }

    .contact-phones {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }
}

/* === Footer === */
.footer-map {
    height: 400px;
}

.footer-map iframe {
    filter: grayscale(50%);
}

.footer-content {
    background-color: #E8E4D2;
    /* Changed to requested color */
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
    /* Increased from 60px */
    margin: 0 auto;
}

.footer-title {
    font-size: 32px;
    /* Increased from 18px */
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.footer-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
    line-height: 1.6;
    /* Increased from 14px */
    color: #555;
    margin-bottom: 15px;
}

.footer-address img {
    width: 18px;
    height: 18px;
}

.footer-phones {
    font-size: 32px;
    /* Increased from 16px */
     line-height: 1.6;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-style: underline;
    /* Increased from 14px */
    color: rgb(0, 88, 230);
    margin-bottom: 30px;
}

.footer-email img {
    width: 32px;
    height: 32px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-olive-dark);
    text-transform: uppercase;
}

.social-link img {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        gap: 20px;
    }
}