@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6c5ce7;
    --primary-dark: #5b4cdb;
    --secondary: #00cec9;
    --accent: #a29bfe;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    --gradient-3: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    --dark: #0f0f1a;
    --dark-light: #1a1a2e;
    --text: #e8e8f0;
    --text-muted: #a0a0b8;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Space Grotesk', sans-serif;
    --font-accent: 'Syne', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 25px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--primary);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 500px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 700;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 16px;
    color: var(--white);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--white);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-light);
    z-index: 1001;
    padding: 60px 25px 25px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 18px;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--white);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-accent);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-text h1 span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 420px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.hero-stat h3 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat p {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
    border: 1px solid var(--glass-border);
}

.hero-image img {
    width: 100%;
    height: auto;
}

.hero-float-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px;
}

.hero-float-card.card-1 {
    top: 15%;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-2 {
    bottom: 20%;
    right: -25px;
    animation: float 4s ease-in-out infinite 1s;
}

.float-card-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.float-card-icon i {
    color: var(--white);
    font-size: 14px;
}

.hero-float-card h4 {
    font-size: 12px;
    font-weight: 600;
}

.hero-float-card p {
    font-size: 10px;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.services {
    padding: 60px 0;
    background: var(--dark-light);
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header .section-desc {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon i {
    font-size: 20px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--accent);
}

.service-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

.about {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--gradient-2);
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
}

.about-badge h4 {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.about-badge p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.about-list li i {
    color: var(--secondary);
    font-size: 12px;
    margin-top: 3px;
}

.about-list li span {
    font-size: 13px;
    color: var(--text-muted);
}

.process {
    padding: 60px 0;
    background: var(--dark-light);
}

.process-header {
    text-align: center;
    margin-bottom: 40px;
}

.process-header .section-desc {
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--glass-border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    border: 3px solid var(--dark-light);
}

.process-step h3 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 11px;
    color: var(--text-muted);
}

.portfolio {
    padding: 60px 0;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-header .section-desc {
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.95) 0%, transparent 100%);
    padding: 20px 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 11px;
    color: var(--text-muted);
}

.cta {
    padding: 60px 0;
    background: var(--dark-light);
}

.cta-box {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-box h2 {
    font-family: var(--font-accent);
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary);
    position: relative;
}

.cta-box .btn:hover {
    background: var(--dark);
    color: var(--white);
}

.footer {
    background: var(--dark);
    padding: 30px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-col a {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    padding: 3px 0;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 3px 0;
}

.footer-contact i {
    color: var(--accent);
    font-size: 12px;
    width: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--accent);
}

.page-header {
    padding: 120px 0 50px;
    background: var(--dark-light);
    text-align: center;
    position: relative;
}

 

.page-header h1 {
    font-family: var(--font-accent);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.page-header p {
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    position: relative;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--accent);
}

.cases {
    padding: 60px 0;
}

.case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--glass-border);
}

.case-item:last-child {
    border-bottom: none;
}

.case-item:nth-child(even) {
    direction: rtl;
}

.case-item:nth-child(even) > * {
    direction: ltr;
}

.case-image {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.case-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-content h3 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.case-tag {
    padding: 4px 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 10px;
    color: var(--accent);
}

.case-results {
    display: flex;
    gap: 20px;
}

.case-result h4 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-result p {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq {
    padding: 60px 0;
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(108, 92, 231, 0.05);
}

.faq-question h3 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
}

.faq-question i {
    font-size: 12px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
}

.contact-info-card h3 {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--white);
    font-size: 14px;
}

.contact-info-text h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-form-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
}

.contact-form-card h3 {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 13px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--accent);
}

.contact-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
}

.map-section {
    padding: 0 0 60px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(100%) contrast(90%);
}

.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.error-content {
    text-align: center;
}

.error-code {
    font-family: var(--font-accent);
    font-size: clamp(80px, 15vw, 150px);
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-content h1 {
    font-family: var(--font-accent);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600;
    margin: 10px 0;
}

.error-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.thank-you-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.thank-you-content {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thank-you-icon i {
    font-size: 36px;
    color: var(--white);
}

.thank-you-content h1 {
    font-family: var(--font-accent);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
}

.thank-you-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.policy-page {
    padding: 60px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--white);
}

.policy-content h3 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--text);
}

.policy-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.products {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.product-image {
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price span {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--dark-light);
    border-top: 1px solid var(--glass-border);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-muted);
}

.cookie-content a {
    color: var(--accent);
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.testimonials {
    padding: 60px 0;
    background: var(--dark-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header .section-desc {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.testimonial-stars i {
    font-size: 12px;
    color: #ffc107;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 13px;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }

    .header-cta .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-float-card.card-1 {
        left: 10px;
    }

    .hero-float-card.card-2 {
        right: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .case-item {
        grid-template-columns: 1fr;
    }

    .case-item:nth-child(even) {
        direction: ltr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .case-results {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 13px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat h3 {
        font-size: 20px;
    }

    .hero-stat p {
        font-size: 10px;
    }

    .hero-float-card {
        padding: 8px 12px;
    }

    .hero-float-card h4 {
        font-size: 11px;
    }

    .hero-float-card p {
        font-size: 9px;
    }

    .hero-float-card.card-1 {
        left: 5px;
    }

    .hero-float-card.card-2 {
        right: 5px;
    }

    .section-tag {
        font-size: 10px;
        padding: 5px 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-desc {
        font-size: 12px;
    }

    .btn {
        padding: 9px 16px;
        font-size: 12px;
        gap: 5px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 12px;
    }

    .about-badge {
        padding: 12px;
    }

    .about-badge h4 {
        font-size: 20px;
    }

    .about-list li {
        font-size: 12px;
    }

    .process-step {
        padding: 20px 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .process-step h3 {
        font-size: 14px;
    }

    .process-step p {
        font-size: 11px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-card p {
        font-size: 12px;
    }

    .testimonial-info h4 {
        font-size: 13px;
    }

    .testimonial-info span {
        font-size: 11px;
    }

    .cta-box {
        padding: 25px 15px;
    }

    .cta-box h2 {
        font-size: 18px;
    }

    .cta-box p {
        font-size: 12px;
    }

    .footer-brand p {
        font-size: 12px;
    }

    .footer-col h4 {
        font-size: 14px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .footer-legal {
        gap: 10px;
    }

    .footer-legal a {
        font-size: 11px;
    }

    .logo {
        font-size: 14px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-icon i {
        font-size: 14px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 13px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .case-content h3 {
        font-size: 16px;
    }

    .case-content p {
        font-size: 12px;
    }

    .case-tag {
        font-size: 10px;
        padding: 4px 8px;
    }

    .case-result h4 {
        font-size: 14px;
    }

    .case-result p {
        font-size: 10px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px 15px;
    }

    .contact-info-card h3,
    .contact-form-card h3 {
        font-size: 16px;
    }

    .contact-info-text h4 {
        font-size: 13px;
    }

    .contact-info-text p {
        font-size: 12px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }

    .checkbox-group label {
        font-size: 11px;
    }

    .policy-content h2 {
        font-size: 18px;
    }

    .policy-content h3 {
        font-size: 15px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 12px;
    }

    .thank-you-title {
        font-size: 22px;
    }

    .thank-you-message {
        font-size: 13px;
    }

    .error-code {
        font-size: 80px;
    }

    .error-content h1 {
        font-size: 20px;
    }

    .error-content p {
        font-size: 13px;
    }

    .cookie-content p {
        font-size: 11px;
    }

    .cookie-btns {
        gap: 8px;
    }

    .cookie-btns .btn {
        padding: 8px 14px;
        font-size: 11px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }

    .hero {
        padding: 70px 0 35px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .hero-float-card {
        display: none;
    }

    .cta-box {
        padding: 20px 12px;
    }

    .cta-box h2 {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .case-content h3 {
        font-size: 15px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 15px 12px;
    }

    .policy-content h2 {
        font-size: 16px;
    }

    .error-code {
        font-size: 60px;
    }
}
