:root {
 --primary-color: #3b82f6; 
 --primary-dark: #2563eb;
 --secondary-color: #6b7280;
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --bg-light: #f9fafb;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
 scroll-behavior: smooth;
 -webkit-font-smoothing: antialiased;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.6;
 color: var(--text-light);
 background-color: var(--bg-white);
}

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

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

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

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;
}

/* Header & Nav */
.header {
 background-color: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 height: 70px;
}

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

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
}

.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
}

.nav-links a {
 color: var(--text-dark);
 font-weight: 500;
 position: relative;
 padding: 5px 0;
}

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

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

.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: 5px 0;
 transition: var(--transition);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 24px;
 border-radius: var(--radius-md);
 font-weight: 600;
 text-align: center;
 transition: var(--transition);
 border: 2px solid transparent;
 cursor: pointer;
}

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

.btn-primary:hover {
 background-color: var(--primary-dark);
 color: white;
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

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

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

.btn-full {
 width: 100%;
}
.nav-cta { display: block; }

/* Hero */
.hero {
 background-color: var(--bg-light);
 padding: 160px 0 80px;
 text-align: center;
}
.hero-small {
 background-color: var(--bg-light);
 padding: 120px 0 60px;
 text-align: center;
}
.hero-title { margin-bottom: 24px; }
.hero-subtitle {
 font-size: 1.25rem;
 max-width: 700px;
 margin: 0 auto 32px;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; }

/* Sections */
.section {
 padding: 80px 0;
}
.section.bg-light { 
 background-color: var(--bg-light); 
}
.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 50px;
}
.section-label {
 display: inline-block;
 background-color: #dbeafe;
 color: var(--primary-dark);
 padding: 4px 12px;
 border-radius: 999px;
 font-size: 0.875rem;
 font-weight: 600;
 margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.125rem; }

/* Grid & Cards */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 overflow: hidden;
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}
.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body {
 padding: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.card-title { margin-bottom: 12px; }
.card-text { 
 flex-grow: 1; 
 margin-bottom: 16px;
}
.card-meta {
 font-size: 0.85rem;
 color: var(--secondary-color);
 margin-bottom: 16px;
}
.card-link {
 font-weight: 600;
 align-self: flex-start;
}

/* Logo Cloud */
.logo-cloud {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 40px;
 opacity: 0.7;
}
.partner-logo {
 height: 30px;
 max-width: 120px;
 object-fit: contain;
 filter: grayscale(100%);
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.media-object.reverse .media-visual {
 order: 2;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.feature-list {
 list-style: none;
 margin: 24px 0;
 display: flex;
 flex-direction: column;
 gap: 16px;
}
.feature-list li {
 display: flex;
 align-items: flex-start;
}
.feature-list li::before {
 content: '';
 color: var(--primary-color);
 font-weight: 700;
 margin-right: 12px;
 margin-top:2px;
}

/* Testimonials */
.testimonial-card {
 background-color: var(--bg-light);
 padding: 24px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
 display: flex;
 flex-direction: column;
 height: 100%;
}
.testimonial-text {
 font-style: italic;
 flex-grow: 1;
 margin-bottom: 20px;
}
.testimonial-author {
 display: flex;
 align-items: center;
 gap: 12px;
}
.avatar {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 object-fit: cover;
}

/* CTA Section */
.cta-section {
 background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
 color: white;
 padding: 60px 0;
 border-radius: var(--radius-lg);
 margin: 80px 0;
}
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-title { color: white; margin-bottom: 16px; }
.cta-text { opacity: 0.9; margin-bottom: 24px; }
.newsletter-form {
 display: flex;
 gap: 10px;
}
.newsletter-form input {
 flex-grow: 1;
 padding: 14px;
 border-radius: var(--radius-md);
 border: none;
 font-size: 1rem;
}
.newsletter-form .btn { border: 2px solid white; color: var(--primary-color); background: white; }
.newsletter-form .btn:hover { background: var(--bg-light); }

/* Footer */
.footer {
 background-color: var(--text-dark);
 color: #a0aec0;
 padding: 60px 0 30px;
 margin-top: auto;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 16px; display: block; }
.footer-about { line-height: 1.7; }
.footer-heading { color: white; font-size: 1rem; font-weight: 600; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 0.5px;}
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 12px; }
.footer-links a, .footer-contact a { color: #a0aec0; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--primary-color); margin-top: 4px; }
.footer-bottom {
 border-top: 1px solid #4a5568;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}
.footer-legal a { margin-left: 20px; }

/* Icons */
@font-face {
 font-family: 'icomoon';
 src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff');
 font-weight: normal;
 font-style: normal;
 font-display: block;
}
[class^="icon-"], [class*=" icon-"] { font-family: 'icomoon' !important; speak: never; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.icon-chevron-down:before { content: "\e900"; }
.icon-clock:before { content: "\e901"; }
.icon-mail:before { content: "\e902"; }
.icon-map-pin:before { content: "\e903"; }
.icon-phone:before { content: "\e904"; }

/* Team Section */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
}
.team-member {
 text-align: center;
}
.team-photo {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 4px solid white;
 box-shadow: var(--shadow-lg);
}
.team-role {
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 8px;
}
.team-bio { font-size: 0.9rem; }

/* Value Cards */
.value-card {
 background-color: var(--bg-light);
 border-left: 4px solid var(--primary-color);
 padding: 24px;
 border-radius: var(--radius-md);
}

/* Pricing */
.pricing-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px;
 align-items: flex-start;
}
.pricing-card {
 border: 1px solid var(--border-color);
 border-radius: var(--radius-lg);
 padding: 30px;
 text-align: center;
 background-color: var(--bg-white);
 transition: var(--transition);
}
.pricing-card.popular {
 border-color: var(--primary-color);
 border-width: 2px;
 transform: scale(1.05);
 position: relative;
}
.popular-badge {
 position: absolute;
 top: -15px;
 left: 50%;
 transform: translateX(-50%);
 background-color: var(--primary-color);
 color: white;
 padding: 5px 15px;
 border-radius: 999px;
 font-size: 0.8rem;
 font-weight: 700;
}
.pricing-description { margin: 10px 0 20px; }
.price {
 font-size: 1.5rem;
 font-weight: 700;
 margin-bottom: 20px;
 color: var(--text-dark);
}
.pricing-card ul {
 list-style: none;
 margin: 30px 0;
 text-align: left;
 display: flex;
 flex-direction: column;
 gap: 15px;
}
.pricing-card ul li { display: flex; align-items: flex-start; }
.pricing-card ul li::before { content: ''; color: var(--primary-color); margin-right: 10px; }

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

/* Contact Page */
.contact-layout {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 60px;
}
.contact-form-container {
 background-color: var(--bg-light);
 padding: 40px;
 border-radius: var(--radius-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
 display: block;
 font-weight: 500;
 margin-bottom: 8px;
 color: var(--text-dark);
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 14px;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 font-size: 1rem;
 font-family: var(--font-main);
 transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.checkbox-group {
 display: flex;
 align-items: center;
 gap: 10px;
}
.checkbox-group input { width: auto; }
.checkbox-group label { margin-bottom: 0; font-weight: 400; font-size: 0.9rem;}
.contact-info-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 margin-bottom: 24px;
}
.contact-info-item i {
 font-size: 1.5rem;
 color: var(--primary-color);
 margin-top: 2px;
}
.contact-info-item strong {
 display: block;
 color: var(--text-dark);
 margin-bottom: 4px;
}
.map-container {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 margin-top: 40px;
}

/* Legal Pages */
.legal-page { padding: 120px 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { margin-bottom: 20px; }
.legal-page h3 { margin: 40px 0 15px; }
.legal-page p, .legal-page ul { margin-bottom: 15px; }
.legal-page ul { list-style-position: inside; }
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 20px 0;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.cookie-table th { background-color: 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: #dc2626;
 font-size: 0.85rem;
 margin-top: 4px;
}
.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; }

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--text-dark);
 color: white;
 padding: 20px;
 display: none;
 justify-content: space-between;
 align-items: center;
 gap: 20px;
 z-index: 2000;
 box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
.cookie-content p { margin: 0; }
.cookie-content a { color: var(--primary-color); font-weight: 500;}
.cookie-actions { display: flex; gap: 10px; }

/* Responsive */
@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .media-object { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 0; }
 .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-cta { display: none; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 max-width: 300px;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 padding: 100px 30px 30px;
 gap: 20px;
 box-shadow: var(--shadow-lg);
 transition: right 0.4s ease-in-out;
 }
 .nav-links.active { right: 0; }
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .hero-actions { flex-direction: column; }
 .footer-bottom { 
 flex-direction: column;
 gap: 20px;
 text-align: center;
 }
 .footer-legal a { margin: 0 10px; }
 .cookie-banner { flex-direction: column; }
}