@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --brand-orange: #FF6B35;
    --brand-orange-dark: #E55A2B;
    --brand-navy: #0A1628;
    --brand-navy-light: #1E3A5F;
    --neon-blue: #00D4FF;
    --copper: #B87333;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-light: #F8FAFC;
    --text-dark: #1E293B;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-navy);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--copper) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--brand-orange);
}

.btn-secondary:hover {
    background: var(--brand-orange);
    color: var(--text-light);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-blue);
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(248, 250, 252, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

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

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.shape-orange {
    background: var(--brand-orange);
}

.shape-blue {
    background: var(--neon-blue);
}

.shape-navy {
    background: var(--brand-navy-light);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--copper) 100%);
    margin-bottom: 20px;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-light);
    stroke-width: 2;
    fill: none;
}

.price-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-orange);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--brand-orange);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-orange);
}

.testimonial-card {
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--brand-orange);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid var(--brand-orange);
}

.testimonial-name {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-role {
    font-size: 14px;
    color: rgba(248, 250, 252, 0.6);
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(248, 250, 252, 0.4);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

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

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--brand-navy);
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--brand-navy);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.cookie-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--brand-orange);
}

.cookie-text {
    font-size: 14px;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background: var(--brand-orange);
    color: var(--text-light);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.cookie-settings {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-toggle-label {
    font-size: 14px;
    color: rgba(248, 250, 252, 0.9);
}

.cookie-toggle-input {
    width: 44px;
    height: 24px;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle-input::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--text-light);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle-input:checked {
    background: var(--brand-orange);
}

.cookie-toggle-input:checked::before {
    transform: translateX(20px);
}

.cookie-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(248, 250, 252, 0.6);
    font-size: 20px;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    }
}

.animate-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible,
.fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}


.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flex-justify-between {
    display: flex;
    justify-content: space-between;
}

.flex-justify-between-items-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: rgba(248, 250, 252, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: var(--text-light);
}

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

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.flex-gap-1 {
    display: flex;
    gap: 4px;
}

.faq-category {
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    color: rgba(248, 250, 252, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.faq-category.active, .faq-category:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

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

