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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Poppins', sans-serif;
background: #f5f7fb;
color: #1d1d1f;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
font-size: 16px;
}

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

/* Header - optimizat pentru CLS */
.site-header {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(0,0,0,0.05);
min-height: 70px;
}

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

.logo a {
font-size: 22px;
font-weight: 700;
color: #1d1d1f;
text-decoration: none;
}

.nav-menu {
display: flex;
gap: 25px;
list-style: none;
align-items: center;
}

.nav-menu a {
text-decoration: none;
color: #6e6e73;
font-weight: 500;
transition: color 0.2s;
}

.nav-menu a:hover {
color: #0071e3;
}

/* Hero - optimizat pentru LCP */
.hero-section {
padding: 80px 0 60px;
text-align: center;
background: linear-gradient(180deg, #ffffff, #f0f3f9);
}

.hero-content h1 {
font-size: clamp(28px, 5vw, 48px);
font-weight: 700;
margin-bottom: 20px;
letter-spacing: -0.5px;
line-height: 1.2;
}

.hero-subtitle {
font-size: clamp(16px, 2.5vw, 20px);
color: #6e6e73;
margin-bottom: 30px;
}

/* Buttons - optimizat pentru interactie */
.btn-primary {
display: inline-block;
background: #0071e3;
color: #fff;
padding: 12px 32px;
border-radius: 10px;
font-weight: 600;
border: none;
cursor: pointer;
text-decoration: none;
transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
background: #0077ed;
transform: translateY(-1px);
}

.btn-primary:active {
transform: translateY(0);
}

/* Sections */
section {
padding: 60px 0;
}

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

.section-header h2 {
font-size: clamp(28px, 4vw, 36px);
margin-bottom: 10px;
font-weight: 700;
}

.section-header p {
font-size: 18px;
color: #6e6e73;
}

/* Intro Grid */
.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}

.intro-text h2 {
font-size: clamp(24px, 3.5vw, 32px);
margin-bottom: 20px;
font-weight: 700;
}

.intro-text p {
margin-bottom: 20px;
color: #515154;
}

.features-list {
margin-top: 30px;
}

.feature-item {
display: flex;
gap: 15px;
margin-bottom: 20px;
align-items: start;
}

.feature-item i {
color: #0071e3;
font-size: 20px;
font-style: normal;
min-width: 24px;
}

.feature-item h4 {
margin-bottom: 5px;
font-size: 18px;
}

.feature-item p {
color: #6e6e73;
font-size: 15px;
}

/* Cards - redus shadow pentru performance */
.card {
background: #fff;
border-radius: 16px;
padding: 30px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Services Grid */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

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

.service-icon {
font-size: 40px;
margin-bottom: 15px;
}

.service-card h3 {
margin-bottom: 10px;
font-size: 20px;
font-weight: 600;
}

.service-card p {
color: #6e6e73;
font-size: 15px;
}

/* Pricing */
.pricing-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}

.pricing-info {
padding: 30px;
}

.pricing-info h3 {
margin-bottom: 15px;
font-size: 22px;
}

.pricing-info ul {
margin: 15px 0 15px 25px;
}

.pricing-info li {
margin-bottom: 8px;
color: #515154;
}

.pricing-estimates {
margin-top: 25px;
padding-top: 25px;
border-top: 1px solid #e5e5e5;
}

.pricing-estimates h4 {
margin-bottom: 10px;
}

.discount-note {
margin-top: 15px;
padding: 12px;
background: #f0f9ff;
border-radius: 8px;
color: #0071e3;
}

.disclaimer-box {
padding: 25px;
border-radius: 12px;
background: #fff5f5;
border-left: 4px solid #ff3b30;
}

.disclaimer-box h3 {
margin-bottom: 10px;
color: #d32f2f;
font-size: 18px;
}

.disclaimer-box h4 {
margin: 15px 0 8px;
font-size: 16px;
}

.disclaimer-box ul {
margin-left: 25px;
}

/* Contact */
.contact-grid {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px;
}

.contact-info h2 {
font-size: 28px;
margin-bottom: 20px;
}

.contact-methods {
padding: 25px;
}

.contact-item {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
border-bottom: none;
}

.contact-item strong {
display: block;
margin-bottom: 5px;
color: #1d1d1f;
}

.contact-item a {
color: #0071e3;
text-decoration: none;
}

.contact-item a:hover {
text-decoration: underline;
}

.contact-form {
background: #fff;
padding: 35px;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form h3 {
margin-bottom: 25px;
font-size: 22px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px 16px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #d1d1d6;
font-family: inherit;
font-size: 15px;
transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: #0071e3;
}

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

.consent {
display: flex;
gap: 10px;
align-items: start;
margin: 20px 0;
font-size: 14px;
color: #6e6e73;
cursor: pointer;
}

.consent input[type="checkbox"] {
margin: 4px 0 0 0;
width: auto;
cursor: pointer;
}

/* Footer */
.site-footer {
background: #fff;
padding: 50px 0 20px;
border-top: 1px solid #e5e5e5;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 30px;
}

.footer-col h3 {
margin-bottom: 15px;
font-size: 18px;
font-weight: 600;
}

.footer-col p {
color: #6e6e73;
font-size: 15px;
margin-bottom: 8px;
}

.footer-col ul {
list-style: none;
}

.footer-col li {
margin-bottom: 8px;
}

.footer-col a {
color: #6e6e73;
text-decoration: none;
transition: color 0.2s;
}

.footer-col a:hover {
color: #0071e3;
}

.footer-bottom {
text-align: center;
font-size: 14px;
color: #86868b;
padding-top: 20px;
border-top: 1px solid #f0f0f0;
}

/* Legal Pages */
.legal-page {
padding: 60px 0;
background: #fff;
}

.legal-content {
max-width: 900px;
margin: 0 auto;
}

.legal-content h1 {
font-size: clamp(28px, 4vw, 36px);
margin-bottom: 10px;
}

.last-update {
color: #86868b;
font-size: 14px;
margin-bottom: 40px;
}

.legal-content h2 {
font-size: 24px;
margin-top: 40px;
margin-bottom: 15px;
font-weight: 600;
}

.legal-content h3 {
font-size: 20px;
margin-top: 25px;
margin-bottom: 10px;
font-weight: 600;
}

.legal-content p {
margin-bottom: 15px;
line-height: 1.7;
color: #515154;
}

.legal-content ul {
margin: 15px 0 15px 30px;
line-height: 1.7;
}

.legal-content li {
margin-bottom: 8px;
color: #515154;
}

.legal-content a {
color: #0071e3;
text-decoration: none;
}

.legal-content a:hover {
text-decoration: underline;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
padding: 12px;
text-align: left;
border: 1px solid #e5e5e5;
}

.cookie-table th {
background: #f5f7fb;
font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(255,255,255,0.98);
backdrop-filter: blur(10px);
padding: 20px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
z-index: 9999;
}

.cookie-banner-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.cookie-banner p {
margin: 0;
flex: 1;
font-size: 15px;
}

.cookie-banner a {
color: #0071e3;
text-decoration: none;
}

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

.btn-accept,
.btn-reject {
padding: 10px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
transition: background 0.2s;
}

.btn-accept {
background: #0071e3;
color: #fff;
}

.btn-accept:hover {
background: #0077ed;
}

.btn-reject {
background: #e5e5e5;
color: #1d1d1f;
}

.btn-reject:hover {
background: #d5d5d5;
}

/* Language Switch */
.lang-switch {
background: #0071e3 !important;
color: #fff !important;
padding: 6px 14px !important;
border-radius: 6px !important;
font-weight: 600 !important;
font-size: 14px !important;
}

.lang-switch:hover {
background: #0077ed !important;
}

/* Alert messages */
.alert-success {
background: #d4edda;
color: #155724;
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
border: 1px solid #c3e6cb;
}

.alert-error {
background: #f8d7da;
color: #721c24;
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
border: 1px solid #f5c6cb;
}

/* Mobile Menu Toggle */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}

.menu-toggle span {
display: block;
width: 24px;
height: 2px;
background: #1d1d1f;
margin: 5px 0;
transition: 0.3s;
border-radius: 2px;
}

/* Responsive - Mobile First Approach */
@media (max-width: 768px) {
.menu-toggle {
display: block;
}

.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background: rgba(255,255,255,0.98);
backdrop-filter: blur(10px);
width: 100%;
padding: 20px;
transition: left 0.3s;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
align-items: flex-start;
}

.nav-menu.active {
left: 0;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section {
padding: 60px 0 40px;
}

.intro-grid,
.pricing-content,
.contact-grid {
grid-template-columns: 1fr;
gap: 30px;
}

section {
padding: 40px 0;
}

.services-grid {
grid-template-columns: 1fr;
}

.cookie-banner-content {
flex-direction: column;
text-align: center;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
.container {
padding: 0 30px;
}

.intro-grid {
gap: 35px;
}
}