:root {
 --primary-color: #00f5c3;
 --primary-dark: #00d1a6;
 --secondary-color: #1a1a2e;
 --bg-light: #f7f9fc;
 --bg-dark: #10101f;
 --text-dark: #121212;
 --text-light: #E0E0E0;
 --text-muted: #6c757d;
 --border-color: #e0e0e0;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
 --transition: all 0.3s ease;
}

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

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

body {
 font-family: var(--font-main);
 background-color: var(--bg-white, #fff);
 color: var(--text-dark);
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
 font-weight: 700;
 line-height: 1.2;
 color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }

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

a:hover {
 color: var(--primary-dark);
}

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

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

.section {
 padding: 80px 0;
}

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

.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 50px auto;
}
.section-label, .badge {
 display: inline-block;
 padding: 6px 16px;
 background-color: rgba(0, 245, 195, 0.1);
 color: var(--primary-dark);
 font-weight: 600;
 font-size: 0.9rem;
 border-radius: 20px;
 margin-bottom: 1rem;
}
.section-title {
 margin-bottom: 1rem;
}
.section-subtitle {
 font-size: 1.1rem;
 color: var(--text-muted);
}

.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 12px 28px;
 font-weight: 600;
 border-radius: var(--radius-md);
 border: 2px solid transparent;
 cursor: pointer;
 transition: var(--transition);
 font-size: 1rem;
}
.btn-primary {
 background-color: var(--primary-color);
 color: var(--text-dark);
 box-shadow: 0 4px 15px rgba(0, 245, 195, 0.2);
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 color: var(--text-dark);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0, 245, 195, 0.3);
}
.btn-secondary {
 background-color: transparent;
 color: var(--text-dark);
 border-color: var(--border-color);
}
.btn-secondary:hover {
 background-color: var(--text-dark);
 color: white;
 border-color: var(--text-dark);
}
.btn-full {
 width: 100%;
}

/* Header */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.85);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}
.nav {
 height: 72px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
}
.nav-links {
 display: flex;
 list-style: none;
 gap: 32px;
}
.nav-links a {
 color: var(--text-muted);
 font-weight: 500;
 position: relative;
 padding: 8px 0;
}
.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;
}

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

.nav-cta {
 display: block;
}

.nav-toggle {
 display: none;
 cursor: pointer;
 background: none;
 border: none;
}
.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background-color: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
}

/* Hero */
.hero {
 padding: 140px 0 80px;
 background-color: var(--bg-light);
 overflow: hidden;
}
.hero-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 48px;
}
.hero-subtitle {
 margin: 1.5rem 0;
 font-size: 1.1rem;
 color: var(--text-muted);
}
.hero-actions {
 display: flex;
 gap: 16px;
 margin-bottom: 24px;
}
.hero-trust {
 display: flex;
 align-items: center;
 gap: 12px;
 font-size: 0.9rem;
 color: var(--text-muted);
}
.hero-trust .stars {
 color: #ffc107;
}

.hero-visual {
 perspective: 1500px;
}
.mockup-browser {
 background: #fff;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transform: rotateY(-15deg) rotateX(5deg);
 transition: var(--transition);
}
.hero-visual:hover .mockup-browser {
 transform: rotateY(0) rotateX(0);
 box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mockup-header {
 display: flex;
 align-items: center;
 padding: 12px;
 border-bottom: 1px solid var(--border-color);
}
.mockup-header span {
 display: block;
 width: 12px;
 height: 12px;
 border-radius: 50%;
 margin-right: 8px;
 background-color: #ddd;
}
.mockup-header span:nth-child(1) { background-color: #ff5f56; }
.mockup-header span:nth-child(2) { background-color: #ffbd2e; }
.mockup-header span:nth-child(3) { background-color: #27c93f; }
.mockup-browser img {
 border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Trusted By / Logo Carousel */
.trusted-by {
 padding: 40px 0;
 background-color: #fff;
}
.trusted-by-title {
 text-align: center;
 font-size: 1rem;
 font-weight: 500;
 color: var(--text-muted);
 margin-bottom: 24px;
}
.logo-carousel {
 display: flex;
 align-items: center;
 justify-content: space-around;
 flex-wrap: wrap;
 gap: 32px;
}
.partner-logo {
 height: 32px;
 width: auto;
 filter: grayscale(100%);
 opacity: 0.6;
 transition: var(--transition);
}
.partner-logo:hover {
 filter: grayscale(0);
 opacity: 1;
}

/* Features Grid */
.features-grid {
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
 background-color: #fff;
 padding: 32px;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 border: 1px solid var(--border-color);
}
.feature-card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-md);
}
.feature-icon {
 display: inline-flex;
 width: 56px;
 height: 56px;
 border-radius: 50%;
 background-color: rgba(0, 245, 195, 0.1);
 color: var(--primary-dark);
 align-items: center;
 justify-content: center;
 margin-bottom: 1.5rem;
}
.feature-icon svg {
 width: 28px;
 height: 28px;
}
.card-title {
 font-size: 1.25rem;
}
.card-text {
 color: var(--text-muted);
}
.grid-3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}

/* Process Steps */
.process-steps {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 40px;
 position: relative;
 margin-top: 40px;
}
.process-steps::before {
 content: '';
 position: absolute;
 top: 30px;
 left: 10%;
 right: 10%;
 height: 2px;
 background-color: var(--border-color);
 z-index: -1;
}
.process-step {
 text-align: center;
}
.step-number {
 width: 60px;
 height: 60px;
 line-height: 56px;
 border-radius: 50%;
 background-color: #fff;
 border: 2px solid var(--border-color);
 color: var(--primary-dark);
 font-size: 1.5rem;
 font-weight: 700;
 margin: 0 auto 20px;
 transition: var(--transition);
}
.process-step:hover .step-number {
 background-color: var(--primary-color);
 color: var(--text-dark);
 border-color: var(--primary-color);
}
.process-step h3 {
 margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
 gap: 30px;
}
.testimonial-card {
 background: var(--bg-light);
 padding: 32px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.testimonial-img {
 width: 64px;
 height: 64px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: 1.5rem;
}
.testimonial-text {
 font-size: 1.1rem;
 font-style: italic;
 color: var(--text-muted);
 margin-bottom: 1.5rem;
}
.testimonial-author {
 font-size: 0.9rem;
}
.testimonial-author strong {
 display: block;
 color: var(--text-dark);
}
.testimonial-author span {
 color: var(--text-muted);
}

/* FAQ */
.faq-accordion {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 border-bottom: 1px solid var(--border-color);
}
.faq-question {
 width: 100%;
 text-align: left;
 padding: 20px 0;
 font-size: 1.1rem;
 font-weight: 600;
 color: var(--text-dark);
 background: none;
 border: none;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.faq-question::after {
 content: '+';
 font-size: 1.5rem;
 font-weight: 300;
 transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
 transform: rotate(45deg);
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease-out;
}
.faq-answer p {
 padding: 0 0 20px;
 color: var(--text-muted);
}

/* CTA Section */
.cta-section {
 background: var(--secondary-color);
 color: white;
 padding: 60px 0;
 text-align: center;
 border-radius: var(--radius-lg);
 margin: 80px auto;
 max-width: 1200px;
}
.cta-section h2 {
 color: white;
}
.cta-section p {
 color: var(--text-light);
 max-width: 600px;
 margin: 1rem auto 2rem;
}

/* Footer */
.footer {
 background-color: var(--bg-dark);
 color: var(--text-light);
 padding: 80px 0 30px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: #fff;
 display: block;
 margin-bottom: 16px;
}
.footer-description {
 color: #a0a0b0;
 line-height: 1.7;
 max-width: 300px;
 margin-bottom: 20px;
}
.footer-social {
 display: flex;
 gap: 12px;
}
.footer-social a {
 width: 36px;
 height: 36px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--text-light);
 background-color: rgba(255,255,255,0.1);
 transition: var(--transition);
}
.footer-social a:hover {
 background-color: var(--primary-color);
 color: var(--text-dark);
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: #fff;
 margin-bottom: 20px;
 text-transform: uppercase;
}
.footer-links {
 list-style: none;
}
.footer-links a {
 color: #a0a0b0;
 margin-bottom: 12px;
 display: inline-block;
}
.footer-links a:hover {
 color: var(--primary-color);
}
.footer-contact {
 list-style: none;
}
.footer-contact li {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 color: #a0a0b0;
 margin-bottom: 16px;
}
.footer-contact svg {
 width: 20px;
 height: 20px;
 flex-shrink: 0;
 margin-top: 3px;
 color: var(--primary-color)
}
.footer-contact a {
 color: #a0a0b0;
}
.footer-contact a:hover {
 color: #fff;
}
.footer-hours {
 font-size: 0.9rem;
 color: #a0a0b0;
 line-height: 1.6;
}
.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.1);
 padding-top: 30px;
 text-align: center;
 font-size: 0.9rem;
 color: #a0a0b0;
}

/* Page Specific */
.page-header-section {
 padding: 140px 0 80px;
 text-align: center;
 background: var(--bg-light);
}
.page-header-subtitle {
 max-width: 600px;
 margin: 1rem auto 0;
 font-size: 1.1rem;
 color: var(--text-muted);
}
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: center;
}
.media-object.reverse {
 grid-template-columns: 1fr 1fr;
}
.media-object.reverse .media-visual {
 order: -1;
}
.media-copy ul {
 list-style: none;
 padding-left: 0;
 margin-top: 1.5rem;
}
.media-copy ul li {
 padding-left: 28px;
 position: relative;
 margin-bottom: 12px;
}
.media-copy ul li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--primary-color);
 font-weight: bold;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}

.services-detailed-grid {
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.service-detailed-card {
 background-color: #fff;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 overflow: hidden;
 transition: var(--transition);
}
.service-detailed-card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-md);
}
.card-image {
 width: 100%;
 height: 220px;
 object-fit: cover;
}
.card-body {
 padding: 24px;
}
.card-body .card-title {
 font-size: 1.4rem;
 margin-bottom: 12px;
}
.card-body .card-text {
 color: var(--text-muted);
}

.team-section .team-grid {
 gap: 24px;
}
.team-member {
 text-align: center;
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 16px;
 box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--primary-color);
}
.team-member h3 {
 font-size: 1.25rem;
 margin-bottom: 4px;
}
.team-role {
 color: var(--primary-dark);
 font-weight: 500;
}
.legal-content h2 { margin: 40px 0 15px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content ul { margin-bottom: 20px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { font-weight: 500;}

/* Contact Page */
.contact-layout {
 display: grid;
 grid-template-columns: 1fr 1.5fr;
 gap: 60px;
 background: white;
 padding: 40px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.contact-details {
 display: flex;
 flex-direction: column;
 gap: 24px;
 margin-top: 30px;
}
.contact-detail-item {
 display: flex;
 gap: 16px;
 align-items: flex-start;
}
.contact-icon {
 flex-shrink: 0;
 width: 44px;
 height: 44px;
 border-radius: 50%;
 background: var(--bg-light);
 color: var(--primary-dark);
 display: flex;
 align-items: center;
 justify-content: center;
}
.contact-icon svg {
 width: 22px;
 height: 22px;
}
.contact-detail-item div > strong { display: block; margin-bottom: 4px; }
.contact-detail-item div > span, .contact-detail-item div > a { color: var(--text-muted); }

.contact-form .form-group {
 margin-bottom: 20px;
}
.contact-form label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-family: var(--font-main);
 font-size: 1rem;
 transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(0, 245, 195, 0.2);
}
.contact-form textarea {
 min-height: 120px;
 resize: vertical;
}
.form-group-checkbox {
 display: flex;
 align-items: center;
 gap: 10px;
 margin: 20px 0;
}
.form-group-checkbox label {
 font-size: 0.9rem;
 color: var(--text-muted);
}
.form-group-checkbox a { color: var(--primary-dark); }
.map-container {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 margin-top: 50px;
}
.map-container iframe {
 border: none;
}

.thank-you-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}
.text-center { text-align: center; }

.cookie-table { margin: 30px 0; }
.cookie-table table { width: 100%; border-collapse: collapse; }
.cookie-table th, .cookie-table td { padding: 12px; border: 1px solid var(--border-color); text-align: left;}
.cookie-table th { background: var(--bg-light); }

/* Form Validation */
.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.field-error {
 color: #c02626;
 font-size: 0.875rem;
 margin-top: 6px;
}
button[disabled] .spinner {
 display: inline-block;
 width: 16px;
 height: 16px;
 border-radius: 50%;
 border: 2px solid rgba(0,0,0,0.2);
 border-top-color: var(--text-dark);
 animation: spin 0.8s linear infinite;
 margin-right: 8px;
 vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--bg-dark);
 color: var(--text-light);
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: var(--primary-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; }
#cookie-banner .btn-primary { background: var(--primary-color); color: var(--text-dark); }
#cookie-banner .btn-secondary { background: transparent; color: white; border-color: white; }

/* Responsive */
@media(max-width: 992px) {
 .header { background: rgba(255, 255, 255, 0.95); }
 .nav-toggle { display: block; z-index: 1; }
 .nav-cta { display: none; }
 .nav-links {
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 height: 100vh;
 background: white;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 24px;
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-links a { font-size: 1.25rem; }
 .hero-container { grid-template-columns: 1fr; text-align: center; }
 .hero-actions, .hero-trust { justify-content: center; }
 .hero-visual { display: none; }
 .process-steps, .footer-grid, .contact-layout, .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 0; }
 .process-steps::before { display: none; }
 .footer-grid { text-align: center; }
 .footer-description{ margin: 0 auto 20px; }
 .footer-social { justify-content: center; }
 .contact-layout { padding: 24px; }
}

@media (max-width: 576px) {
 .grid-3 { grid-template-columns: 1fr; }
 .features-grid .feature-card { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
 .testimonials-grid { grid-template-columns: 1fr; }
 #cookie-banner { flex-direction: column; text-align: center; }
}