/* ============================================
   Launch Forge - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --color-deep-blue: #0a1628;
    --color-deep-blue-light: #111d32;
    --color-bright-orange: #f26522;
    --color-bright-orange-hover: #e05512;
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    --color-whatsapp: #25d366;
    
    --font-primary: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --container-max: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-bright-orange-hover);
    text-decoration: underline;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: 
        background var(--transition-normal),
        box-shadow var(--transition-normal),
        height var(--transition-normal),
        transform var(--transition-normal);
}

.header.scrolled {
    height: 68px;
    background: rgba(7, 16, 30, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

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

.logo img {
    height: 52px;
    width: auto;
    transition: height var(--transition-normal), transform var(--transition-normal);
}

.header.scrolled .logo img {
    height: 42px;
    transform: translateY(-1px);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-bright-orange);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-white);
    text-decoration: none;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Header CTA */
.header-cta {
    margin-left: 1.5rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-bright-orange);
    color: var(--color-white);
    border-color: var(--color-bright-orange);
}

.btn-primary:hover {
    background-color: var(--color-bright-orange-hover);
    border-color: var(--color-bright-orange-hover);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-deep-blue);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-bright-orange);
    border-color: var(--color-bright-orange);
}

.btn-outline:hover {
    background-color: var(--color-bright-orange);
    color: var(--color-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(135deg, rgba(8, 17, 32, 0.82) 0%, rgba(10, 22, 40, 0.72) 45%, rgba(44, 10, 62, 0.68) 100%),
        url('images/lv_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(242, 101, 34, 0.14), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06), transparent 22%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.35));
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 760px;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.hero-subtitle strong {
    color: var(--color-bright-orange);
    font-weight: 600;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-bright-orange);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-bright-orange);
}

.hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-light {
    background:
        radial-gradient(circle at top left, rgba(242, 101, 34, 0.05), transparent 24%),
        linear-gradient(180deg, #f6f8fc 0%, #edf2f8 100%);
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(52, 119, 235, 0.06), transparent 24%),
        linear-gradient(180deg, #eef3f9 0%, #e7edf5 100%);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--color-deep-blue);
    margin-bottom: 1.25rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 82px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #f26522 0%, #ff9a3d 100%);
    box-shadow: 0 6px 16px rgba(242, 101, 34, 0.18);
}

.section-text {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-gray-700);
    font-size: 1.08rem;
    line-height: 1.8;
}

/* ============================================
   How It Works
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-top: 4px solid var(--color-bright-orange);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
}

.process-text {
    color: var(--color-gray-600);
    font-size: 1rem;
}

.process-image-wrap {
    margin: 0 auto 1.5rem;
    max-width: 220px;
}

.process-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(17, 29, 50, 0.12));
    transition: transform var(--transition-normal);
}

.process-card:hover .process-image {
    transform: translateY(-4px) scale(1.02);
}

/* ============================================
   Join the Team
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 30, 55, 0.08);
    border-radius: 20px;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 16px 40px rgba(20, 37, 63, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(20, 37, 63, 0.13);
}

.trust-card h3 {
    font-size: 1.15rem;
    color: var(--color-deep-blue);
    margin-bottom: 0.75rem;
}

.trust-card p {
    color: var(--color-gray-700);
    line-height: 1.7;
    margin: 0;
}   
   
.join-content {
    text-align: center;
}

.highlight-box {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 1.4rem 1.6rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.98), rgba(255, 132, 51, 0.95));
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(242, 101, 34, 0.22);
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
}

/* ============================================
   Application Form
   ============================================ */
.application-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-wide {
    grid-column: 1 / -1;
}

.form-group label,
.form-section legend {
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-section textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-gray-300);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-section textarea:focus {
    outline: none;
    border-color: var(--color-bright-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.form-section {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 2px solid var(--color-gray-200);
    border-radius: 10px;
    background-color: var(--color-gray-100);
}

.form-section legend {
    padding: 0 1rem;
    font-size: 1.1rem;
    color: var(--color-deep-blue);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-bright-orange);
    cursor: pointer;
}

.form-submit {
    margin-top: 2.5rem;
    text-align: center;
}

.form-note {
    margin-top: 1rem;
    color: var(--color-gray-600);
    font-size: 0.9rem;
}

.form-note a {
    font-weight: 600;
}

/* ============================================
   Projects Section (Premium Style)
   ============================================ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.project-card {
    position: relative;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(14, 30, 55, 0.08);
    border-radius: 22px;
    overflow: hidden;
    padding: 1.8rem 1.6rem 2rem 1.6rem;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 
        0 18px 42px rgba(17, 29, 50, 0.08),
        0 2px 6px rgba(17, 29, 50, 0.04);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}

/* верхняя акцентная линия */

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;

    background: linear-gradient(
        90deg,
        #f26522 0%,
        #ff9b41 100%
    );

    opacity: 0.9;
}

/* hover эффект */

.project-card:hover {
    transform: translateY(-8px);

    border-color: rgba(242, 101, 34, 0.18);

    box-shadow:
        0 26px 56px rgba(17, 29, 50, 0.14),
        0 4px 12px rgba(17, 29, 50, 0.06);
}

/* label категории */

.project-tag {
    display: inline-flex;
    align-items: center;

    padding: 0.42rem 0.8rem;

    border-radius: 999px;

    background: rgba(242, 101, 34, 0.08);

    color: #d95b1e;

    font-size: 0.8rem;
    font-weight: 600;

    margin-bottom: 1rem;
}

/* заголовок */

.project-title {
    font-size: 1.35rem;
    font-weight: 700;

    color: var(--color-deep-blue);

    margin-bottom: 0.9rem;

    line-height: 1.35;
}

/* текст */

.project-text {
    color: var(--color-gray-700);

    font-size: 0.96rem;

    line-height: 1.7;

    margin-bottom: 1.6rem;
}

/* кнопка */

.project-card .btn {
    border-radius: 14px;

    padding: 0.85rem 1.2rem;

    font-weight: 600;

    font-size: 0.92rem;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.project-card .btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 10px 22px rgba(242, 101, 34, 0.25);
}

/* мобильная адаптация */

@media (max-width: 768px) {

    .projects-grid {
        gap: 1.25rem;
    }

    .project-card {
        padding: 1.5rem;
    }

}

/* ============================================
   Partners Section
   ============================================ */
.partners-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
}

.partners-copy {
    background-image:
        linear-gradient(135deg, rgba(9, 20, 38, 0.88) 0%, rgba(18, 37, 67, 0.84) 55%, rgba(44, 16, 65, 0.76) 100%),
        url('images/lv_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: #fff;
    border-radius: 26px;
    padding: 2.2rem;
    box-shadow: 0 24px 60px rgba(13, 25, 44, 0.22);
    position: relative;
    overflow: hidden;
}

.partners-copy::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(242, 101, 34, 0.22), transparent 22%),
        linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
    pointer-events: none;
}

.partners-copy > * {
    position: relative;
    z-index: 2;
}

.partners-copy .section-text {
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    margin: 0 0 1.25rem 0;
}

.partners-lead {
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.94);
    margin: 0;
}

.partners-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(14, 30, 55, 0.08);
    border-radius: 26px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(17, 29, 50, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.partners-panel-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-deep-blue);
    margin-bottom: 1.2rem;
}

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

.partners-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-gray-700);
    line-height: 1.75;
}

.partners-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, #f26522, #ff9b41);
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.2);
}

.micro-trust-line {
    text-align: center;
    font-size: 0.95rem;
    color: #6a778c;
    letter-spacing: 0.02em;
    margin-top: 1rem;
    margin-bottom: 0;
}

.mini-process-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem auto 0;
    max-width: 920px;
}

.mini-process-strip div {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(14, 30, 55, 0.08);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    text-align: center;
    font-weight: 600;
    color: var(--color-deep-blue);
    box-shadow: 0 12px 28px rgba(17, 29, 50, 0.06);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-300);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-blue);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-bright-orange);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-bright-orange);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer p {
    padding-bottom: 1.25rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-deep-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(242, 101, 34, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--color-deep-blue);
}

.contact-item a {
    color: var(--color-bright-orange);
    font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-deep-blue);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-nav h4,
.footer-legal h4,
.footer-company h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--color-bright-orange);
    text-decoration: none;
}

.footer-company p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.footer-contact {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

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

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--color-gray-700);
    font-size: 0.95rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-cookie.accept {
    background-color: var(--color-bright-orange);
    color: var(--color-white);
}

.btn-cookie.accept:hover {
    background-color: var(--color-bright-orange-hover);
}

.btn-cookie.decline {
    background-color: var(--color-gray-200);
    color: var(--color-gray-700);
}

.btn-cookie.decline:hover {
    background-color: var(--color-gray-300);
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--color-gray-800);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-gray-800);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
    padding-top: calc(var(--header-height) + 3rem);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
}

.legal-content .last-updated {
    color: var(--color-gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--color-deep-blue);
    margin: 2rem 0 1rem;
}

.legal-content p {
    color: var(--color-gray-700);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ============================================
   Application Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 28, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    z-index: 10000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-dialog {
    width: 100%;
    max-width: 980px;
    max-height: 92vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    position: relative;
    padding: 2rem;
}

.modal-header {
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--color-deep-blue);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-gray-600);
    margin: 0;
}

.modal-body {
    padding-top: 0.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--color-gray-100);
    color: var(--color-deep-blue);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-gray-200);
    transform: scale(1.05);
}

body.modal-open {
    overflow: hidden;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-checkbox {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-gray-700);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .modal-dialog {
        padding: 1.25rem;
        border-radius: 14px;
        max-height: 94vh;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
.nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
	.trust-grid,
	.projects-grid,
	.mini-process-strip,
	.partners-layout {
    grid-template-columns: 1fr;
}

	.partners-copy .section-text {
    text-align: left;
	}
}



@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .process-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-tagline {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-bright-orange);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
