:root {
 --primary-color: #00A3FF;
 --primary-dark: #0086D1;
 --secondary-color: #3D4F6C;
 --text-dark: #EAEAEA;
 --text-light: #A0B3D1;
 --bg-dark-1: #0A0F19;
 --bg-dark-2: #101726;
 --bg-dark-3: #182338;
 --bg-light: #f3f4f6;
 --border-color: #2D3A50;
 --shadow-color: rgba(0, 163, 255, 0.1);
 --radius-sm: 8px;
 --radius-md: 12px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* GENERAL RESETS & TYPOGRAPHY */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background-color: var(--bg-dark-1);
 -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover {
 color: var(--primary-dark);
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

.section {
 padding: 100px 0;
}

.bg-light {
 background-color: var(--bg-dark-2);
}

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

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

.text-center { text-align: center; }

.badge {
 display: inline-block;
 padding: 6px 16px;
 background-color: rgba(0, 163, 255, 0.1);
 color: var(--primary-color);
 border-radius: 99px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 16px;
 border: 1px solid rgba(0, 163, 255, 0.3);
}

/* HEADER & NAVIGATION */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(10, 15, 25, 0.7);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: background-color 0.3s;
}

.nav-container {
 max-width: 1300px;
 margin: 0 auto;
 padding: 0 24px;
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 display: flex;
 align-items: center;
 gap: 12px;
 font-size: 1.25rem;
 font-weight: 600;
 color: var(--text-dark);
}

.nav-logo svg {
 color: var(--primary-color);
}

.nav-links-wrapper {
 display: flex;
}

.nav-links {
 display: flex;
 list-style: none;
 gap: 36px;
 margin: 0;
 padding: 0;
}

.nav-links a {
 color: var(--text-light);
 font-weight: 500;
 position: relative;
 padding: 8px 0;
 transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
 color: var(--text-dark);
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0%;
 height: 2px;
 background-color: var(--primary-color);
 transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}

.nav-actions {
 display: flex;
 align-items: center;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background-color: var(--text-dark);
 margin: 6px 0;
 transition: transform 0.3s, opacity 0.3s;
}

/* BUTTONS */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-sm);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-align: center;
}
.btn-primary {
 background-color: var(--primary-color);
 color: var(--bg-dark-1);
 box-shadow: 0 4px 15px var(--shadow-color);
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 color: white;
 transform: translateY(-2px);
}
.btn-secondary {
 background-color: transparent;
 color: var(--text-dark);
 border-color: var(--border-color);
}
.btn-secondary:hover {
 background-color: var(--border-color);
 color: white;
}
.btn-lg {
 padding: 16px 36px;
 font-size: 1.1rem;
}
.btn-block {
 width: 100%;
}

/* HERO SECTION */
.hero-section {
 padding: 160px 0 100px;
 background: radial-gradient(circle at 50% 0%, rgba(0, 163, 255, 0.1), transparent 40%);
}

.hero-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 60px;
}
.hero-content {
 text-align: left;
}
.hero-content h1 {
 margin-bottom: 24px;
}
.hero-subtitle {
 font-size: 1.25rem;
 margin-bottom: 40px;
 max-width: 550px;
}
.hero-actions {
 display: flex;
 gap: 16px;
}
.hero-visual {
 position: relative;
}
.hero-image {
 border-radius: var(--radius-lg);
 box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 width: 100%;
 aspect-ratio: 4/3;
 object-fit: cover;
}
.floating-ui {
 position: absolute;
 background: rgba(30, 41, 59, 0.8);
 backdrop-filter: blur(8px);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 padding: 12px 18px;
 display: flex;
 align-items: center;
 gap: 10px;
 font-weight: 500;
 color: var(--text-dark);
 box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.floating-ui svg { color: var(--primary-color); }
.floating-ui-1 { top: 10%; left: -15%; }
.floating-ui-2 { bottom: 10%; right: -20%; }

/* TRUSTED BY SECTION */
.trusted-by-section {
 padding: 60px 0;
 border-top: 1px solid var(--border-color);
 border-bottom: 1px solid var(--border-color);
}
.trusted-by-title {
 text-align: center;
 font-size: 1rem;
 font-weight: 500;
 color: var(--text-light);
 margin-bottom: 30px;
}
.logos-carousel {
 display: flex;
 justify-content: space-around;
 align-items: center;
 flex-wrap: wrap;
 gap: 40px;
}
.partner-logo {
 height: 30px;
 max-width: 120px;
 object-fit: contain;
 filter: grayscale(100%) brightness(1.5);
 opacity: 0.6;
 transition: var(--transition);
}
.partner-logo:hover {
 filter: grayscale(0) brightness(1);
 opacity: 1;
}

/* FEATURES SECTION */
.features-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.feature-card {
 background-color: var(--bg-dark-3);
 padding: 32px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
 transition: var(--transition);
}

.feature-card:hover {
 transform: translateY(-8px);
 border-color: var(--primary-color);
 box-shadow: 0 10px 30px var(--shadow-color);
}
.feature-icon {
 width: 50px;
 height: 50px;
 background-color: rgba(0, 163, 255, 0.1);
 border-radius: var(--radius-md);
 display: flex;
 justify-content: center;
 align-items: center;
 margin-bottom: 24px;
}
.feature-icon svg {
 color: var(--primary-color);
 width: 28px;
 height: 28px;
}
.feature-card h3 {
 margin-bottom: 12px;
}
.feature-card p {
 font-size: 0.95rem;
}

/* HOW IT WORKS SECTION */
.process-steps {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 30px;
}
.process-step {
 flex: 1;
 text-align: center;
}
.step-number {
 width: 50px;
 height: 50px;
 border: 2px solid var(--primary-color);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 font-size: 1.25rem;
 font-weight: 700;
 color: var(--primary-color);
}
.process-step h3 {
 margin-bottom: 12px;
}
.process-step-arrow {
 flex-shrink: 0;
 width: 50px;
 height: 2px;
 background-color: var(--border-color);
 margin-top: 24px;
 position: relative;
 display: block;
}
.process-step-arrow::after {
 content:'>';
 position: absolute;
 right: -10px;
 top: -10px;
 font-size: 20px;
 color: var(--border-color);
}

/* TESTIMONIAL */
.testimonial-card {
 background-color: var(--bg-dark-3);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-lg);
 padding: 40px;
 max-width: 800px;
 margin: 0 auto;
 text-align: center;
}
.testimonial-photo {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 margin: 0 auto 20px;
 border: 3px solid var(--primary-color);
 object-fit: cover;
}
.testimonial-card blockquote {
 font-size: 1.25rem;
 font-weight: 500;
 line-height: 1.6;
 margin-bottom: 24px;
 color: var(--text-dark);
}
.testimonial-card cite {
 font-style: normal;
}
.testimonial-role {
 display: block;
 color: var(--text-light);
 font-size: 0.9rem;
 margin-top: 4px;
}

/* FAQ */
.faq-accordion {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 background-color: var(--bg-dark-2);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 margin-bottom: 16px;
 overflow: hidden;
}
.faq-question {
 width: 100%;
 padding: 20px 24px;
 text-align: left;
 background: none;
 border: none;
 font-size: 1.1rem;
 font-weight: 600;
 color: var(--text-dark);
 display: flex;
 justify-content: space-between;
 align-items: center;
 cursor: pointer;
}
.faq-question:hover {
 color: var(--primary-color);
}
.faq-icon {
 transition: transform 0.3s;
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s, padding 0.3s;
}
.faq-answer p {
 padding: 0 24px 20px;
 line-height: 1.8;
}
.faq-item.active .faq-icon {
 transform: rotate(180deg);
}

/* CTA SECTION */
.cta-section {
 background: linear-gradient(0deg, var(--bg-dark-1), var(--bg-dark-2));
 padding: 80px 0;
 text-align: center;
}
.cta-section h2 {
 margin-bottom: 16px;
}
.cta-section p {
 max-width: 600px;
 margin: 0 auto 32px;
}

/* FOOTER */
.footer {
 background-color: var(--bg-dark-1);
 color: var(--text-light);
 padding: 80px 0 30px;
 border-top: 1px solid var(--border-color);
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 60px;
}
.footer-logo {
 display: block;
 font-size: 1.5rem;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 16px;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
 margin-bottom: 20px;
}
.footer-social {
 display: flex;
 gap: 16px;
}
.footer-social a {
 color: var(--text-light);
}
.footer-social a:hover {
 color: var(--primary-color);
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 12px;
}
.footer-links a {
 color: var(--text-light);
}
.footer-links a:hover {
 color: var(--primary-color);
}
.footer-contact-item {
 display: flex;
 gap: 10px;
 margin-bottom: 12px;
 font-size: 0.9rem;
}
.footer-contact-item svg {
 flex-shrink: 0;
 margin-top: 4px;
}
.footer-contact-item a {
 color: var(--text-light);
}
.footer-contact-item a:hover {
 color: var(--primary-color);
}
.footer-bottom {
 text-align: center;
 border-top: 1px solid var(--border-color);
 padding-top: 30px;
 font-size: 0.875rem;
}

/* PAGES STYLES */

.page-header-section {
 padding: 160px 0 80px;
 text-align: center;
 background: radial-gradient(circle at 50% 0%, rgba(0, 163, 255, 0.05), transparent 30%);
}
.page-header-section h1 {
 margin-bottom: 16px;
}
.page-subtitle {
 font-size: 1.25rem;
 color: var(--text-light);
 max-width: 700px;
 margin: 0 auto;
}

/* SERVICES PAGE */
.service-item {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
 margin-bottom: 100px;
}
.service-item.reverse {
 grid-template-columns: 1fr 1fr;
}
.service-item.reverse .service-image {
 order: 2;
}
.service-image {
 width: 100%;
 border-radius: var(--radius-lg);
 aspect-ratio: 16/10;
 object-fit: cover;
}
.service-content h2 {
 margin-bottom: 20px;
}
.service-content ul {
 list-style: none;
 margin-top: 24px;
}
.service-content li {
 padding-left: 28px;
 position: relative;
 margin-bottom: 12px;
}
.service-content li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: bold;
}
/* PRICING */
.pricing-section {
 position: relative;
 overflow: hidden;
}
.pricing-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
 align-items: flex-start;
}
.pricing-card {
 background-color: var(--bg-dark-1);
 padding: 40px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
 text-align: center;
}
.pricing-description {
 margin: 8px 0 24px;
 min-height: 40px;
}
.pricing-features {
 list-style: none;
 text-align: left;
 margin-bottom: 32px;
}
.pricing-features li {
 margin-bottom: 12px;
 padding-left: 28px;
 position: relative;
}
.pricing-features li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
}
.pricing-card.featured {
 border-color: var(--primary-color);
 transform: scale(1.05);
 position: relative;
}
.featured-badge {
 position: absolute;
 top: -15px;
 left: 50%;
 transform: translateX(-50%);
 background-color: var(--primary-color);
 color: var(--bg-dark-1);
 padding: 4px 12px;
 border-radius: 99px;
 font-size: 0.8rem;
 font-weight: bold;
}

/* PORTFOLIO PAGE */
.portfolio-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.portfolio-card {
 background-color: var(--bg-dark-2);
 border-radius: var(--radius-lg);
 overflow: hidden;
 border: 1px solid var(--border-color);
 transition: var(--transition);
}
.portfolio-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.portfolio-image {
 width: 100%;
 aspect-ratio: 16/10;
 object-fit: cover;
}
.portfolio-content {
 padding: 24px;
}
.portfolio-content h3 {
 margin-bottom: 8px;
}
.portfolio-tag {
 display: inline-block;
 margin-top: 16px;
 font-size: 0.8rem;
 padding: 4px 10px;
 background-color: rgba(0, 163, 255, 0.1);
 color: var(--primary-color);
 border-radius: var(--radius-sm);
}

/* ABOUT US PAGE */
.about-container {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 gap: 60px;
 align-items: center;
}
.about-image-wrapper img {
 width: 100%;
 border-radius: var(--radius-lg);
}
.about-text-content h2 {
 margin-bottom: 16px;
}
.about-text-content p {
 margin-bottom: 16px;
}
.team-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
}
.team-member-card {
 text-align: center;
 background-color: var(--bg-dark-3);
 padding: 30px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 3px solid var(--border-color);
}
.team-role {
 color: var(--primary-color);
 font-weight: 500;
 margin: 4px 0 12px;
}
.team-bio {
 font-size: 0.9rem;
}

/* CONTACT PAGE */
.contact-container {
 display: grid;
 grid-template-columns: 1.5fr 1fr;
 gap: 60px;
 background-color: var(--bg-dark-2);
 padding: 60px;
 border-radius: var(--radius-lg);
}
.contact-form-wrapper h3, .contact-info-wrapper h3 { margin-bottom: 12px; }
.contact-form-wrapper p, .contact-info-wrapper p { margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}
.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
 color: var(--text-dark);
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 14px;
 border-radius: var(--radius-sm);
 border: 1px solid var(--border-color);
 background-color: var(--bg-dark-1);
 color: var(--text-dark);
 font-family: var(--font-main);
 font-size: 1rem;
 transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px var(--shadow-color);
}
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group label { margin-bottom: 0; }
.checkbox-group input { width: auto; }
.contact-info-item {
 display: flex;
 gap: 16px;
 margin-bottom: 24px;
}
.contact-info-item svg {
 color: var(--primary-color);
 flex-shrink: 0;
 margin-top: 4px;
}

.map-container {
 margin-top: -50px;
 position: relative;
 z-index: 1;
 border-radius: var(--radius-lg);
 overflow: hidden;
 line-height: 0;
 border: 5px solid var(--bg-dark-2);
}

/* THANK YOU PAGE */
.thank-you-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}
.thank-you-content {
 background: var(--bg-dark-2);
 padding: 50px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.thank-you-icon {
 color: var(--primary-color);
 margin-bottom: 24px;
}
.thank-you-content h1 { margin-bottom: 16px; }
.thank-you-content p { margin-bottom: 32px; max-width: 500px; }

/* LEGAL PAGES */
.legal-container { max-width: 800px; }
.legal-content-section h2 { margin: 40px 0 16px; }
.legal-content-section ul { margin-left: 20px; margin-bottom: 16px; }
.cookie-table {
 width: 100%;
 margin: 30px 0;
 border-collapse: collapse;
}
.cookie-table th, .cookie-table td {
 padding: 12px 15px;
 border: 1px solid var(--border-color);
 text-align: left;
}
.cookie-table th { background-color: var(--bg-dark-3); }

/* COOKIE BANNER */
#cookie-banner {
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 z-index: 1001;
 background-color: var(--bg-dark-3);
 color: var(--text-light);
 padding: 20px;
 border-radius: var(--radius-md);
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 20px;
 box-shadow: 0 10px 40px rgba(0,0,0,0.3);
 border: 1px solid var(--border-color);
 display: none;
}
#cookie-banner p { margin: 0; font-size: 0.9rem; }
.cookie-buttons { display: flex; gap: 12px; }
#accept-cookies { padding: 8px 16px; }
#decline-cookies { padding: 8px 16px; }

/* Form validation styles */
.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.field-error {
 color: #fca5a5;
 font-size: 0.85rem;
 margin-top: 6px;
 animation: fadeIn 0.3s ease;
}

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

.spinner {
 display: inline-block;
 width: 16px;
 height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%;
 border-top-color: #fff;
 animation: spin 0.8s linear infinite;
 margin-right: 8px;
 vertical-align: middle;
}

@keyframes spin {
 to { transform: rotate(360deg); }
}

button[disabled] {
 opacity: 0.7;
 cursor: not-allowed;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
 h1 { font-size: 2.5rem; }
 h2 { font-size: 2rem; }
 .hero-container { grid-template-columns: 1fr; text-align: center; }
 .hero-content { order: 2; }
 .hero-visual { order: 1; margin-bottom: 40px; }
 .hero-subtitle { margin-left: auto; margin-right: auto; }
 .hero-actions { justify-content: center; }
 .floating-ui-1 { left: 0; }
 .floating-ui-2 { right: 0; }
 .features-grid { grid-template-columns: 1fr 1fr; }
 .pricing-grid { grid-template-columns: 1fr; }
 .pricing-card.featured { transform: scale(1); }
 .team-grid { grid-template-columns: 1fr 1fr; }
 .contact-container { grid-template-columns: 1fr; }
 .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
 .nav-links-wrapper {
 position: fixed;
 top: 0;
 right: 0;
 width: 300px;
 height: 100%;
 background-color: var(--bg-dark-2);
 padding-top: 100px;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 box-shadow: -10px 0 30px rgba(0,0,0,0.2);
 }
 .nav-links-wrapper.active {
 transform: translateX(0);
 }
 .nav-links {
 flex-direction: column;
 align-items: center;
 gap:24px;
 }
 .nav-links a { font-size: 1.2rem; }
 .nav-actions { display: none; }
 .nav-toggle { display: block; }

 .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

 .process-steps { flex-direction: column; gap: 40px; }
 .process-step-arrow { display: none; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .service-item, .service-item.reverse { grid-template-columns: 1fr; }
 .service-item.reverse .service-image { order: 1; }
 .about-container { grid-template-columns: 1fr; }
 #cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
 .features-grid { grid-template-columns: 1fr; }
 .portfolio-grid { grid-template-columns: 1fr; }
 .team-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
 .contact-container { padding: 30px; }
 .hero-actions { flex-direction: column; }
 .floating-ui { display: none; }
}