:root {
--primary-color: #2C3E50;
--secondary-color: #3498DB;
--accent-color: #E74C3C;
--text-color: #2C3E50;
--text-light: #7F8C8D;
--bg-color: #FFFFFF;
--bg-light: #F8F9FA;
--bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--border-color: #E1E8ED;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
--radius-sm: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
--space-xl: 3rem;
--transition: all 0.3s ease;
--font-primary: 'Space Grotesk', sans-serif;
--font-secondary: 'Inter', sans-serif;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: var(--font-secondary);
color: var(--text-color);
background-color: var(--bg-color);
line-height: 1.6;
font-size: 0.9375rem;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--space-sm);
}

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-primary);
font-weight: 600;
line-height: 1.3;
margin-bottom: var(--space-sm);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

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

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

ul {
list-style: none;
}

button {
border: none;
background: none;
cursor: pointer;
font-family: inherit;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary-color);
color: white;
padding: var(--space-sm);
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
box-shadow: var(--shadow-lg);
}

.privacy-popup.show {
transform: translateY(0);
}

.popup-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-sm);
flex-wrap: wrap;
}

.popup-content p {
margin: 0;
font-size: 0.875rem;
}

.popup-content a {
color: var(--secondary-color);
text-decoration: underline;
}

.popup-btn {
background: white;
color: var(--primary-color);
padding: 0.5rem 1.5rem;
border-radius: var(--radius-sm);
font-weight: 500;
font-size: 0.875rem;
transition: var(--transition);
}

.popup-btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.main-header {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
padding: var(--space-sm) 0;
position: relative;
z-index: 1000;
}

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

.logo {
font-family: var(--font-primary);
font-size: 1.25rem;
font-weight: 700;
color: var(--primary-color);
letter-spacing: -0.5px;
}

.main-nav {
display: flex;
gap: var(--space-md);
}

.main-nav a {
font-size: 0.9375rem;
font-weight: 500;
color: var(--text-color);
position: relative;
padding: 0.5rem 0;
}

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

.main-nav a:hover::after {
width: 100%;
}

.burger-menu {
display: none;
flex-direction: column;
gap: 0.25rem;
padding: 0.5rem;
}

.burger-menu span {
width: 1.5rem;
height: 2px;
background: var(--primary-color);
transition: var(--transition);
}

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

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

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

.hero-section {
padding: 4rem 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
position: relative;
overflow: hidden;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-xl);
align-items: center;
}

.hero-text h1 {
font-size: 2.5rem;
margin-bottom: var(--space-md);
color: var(--primary-color);
}

.hero-text p {
font-size: 1.125rem;
color: var(--text-light);
margin-bottom: var(--space-lg);
line-height: 1.7;
}

.hero-actions {
display: flex;
gap: var(--space-sm);
flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
padding: 0.75rem 1.75rem;
border-radius: var(--radius-md);
font-weight: 500;
font-size: 0.9375rem;
transition: var(--transition);
display: inline-block;
}

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

.btn-primary:hover {
background: #1a252f;
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

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

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

.hero-visual {
position: relative;
height: 300px;
}

.floating-card {
position: absolute;
background: white;
padding: var(--space-sm) var(--space-md);
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
display: flex;
align-items: center;
gap: 0.75rem;
animation: float 3s ease-in-out infinite;
}

.floating-card i {
font-size: 1.5rem;
color: var(--secondary-color);
}

.floating-card span {
font-weight: 500;
font-size: 0.875rem;
}

.card-1 {
top: 20%;
left: 10%;
animation-delay: 0s;
}

.card-2 {
top: 50%;
right: 10%;
animation-delay: 1s;
}

.card-3 {
bottom: 20%;
left: 30%;
animation-delay: 2s;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

.features-section, .process-section, .showcase-section, .stats-section, .testimonials-section {
padding: 4rem 0;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto var(--space-xl);
}

.section-header h2 {
font-size: 2rem;
margin-bottom: var(--space-sm);
}

.section-header p {
color: var(--text-light);
font-size: 1.0625rem;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--space-lg);
}

.feature-card {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
transition: var(--transition);
border: 1px solid var(--border-color);
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}

.feature-icon {
width: 3.5rem;
height: 3.5rem;
background: linear-gradient(135deg, var(--secondary-color), #667eea);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--space-md);
}

.feature-icon i {
font-size: 1.5rem;
color: white;
}

.feature-card h3 {
margin-bottom: var(--space-sm);
}

.feature-card p {
color: var(--text-light);
font-size: 0.9375rem;
line-height: 1.6;
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: var(--space-md);
}

.process-step {
text-align: center;
padding: var(--space-md);
}

.step-number {
width: 3.5rem;
height: 3.5rem;
background: var(--bg-gradient);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
font-weight: 700;
margin: 0 auto var(--space-md);
}

.process-step h3 {
margin-bottom: var(--space-sm);
}

.process-step p {
color: var(--text-light);
font-size: 0.875rem;
}
.showcase-section {
background: var(--bg-light);
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--space-lg);
}

.showcase-item {
background: white;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

.showcase-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}

.showcase-item img {
width: 100%;
height: 250px;
object-fit: cover;
}

.showcase-content {
padding: var(--space-md);
}

.showcase-content h3 {
margin-bottom: var(--space-sm);
}

.showcase-content p {
color: var(--text-light);
font-size: 0.9375rem;
}

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

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: var(--space-lg);
}

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

.stat-number {
font-size: 3rem;
font-weight: 700;
font-family: var(--font-primary);
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 1rem;
opacity: 0.9;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--space-lg);
}

.testimonial-card {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
margin-bottom: var(--space-md);
}

.testimonial-text p {
font-style: italic;
color: var(--text-light);
line-height: 1.7;
}

.testimonial-author strong {
display: block;
color: var(--primary-color);
margin-bottom: 0.25rem;
}

.testimonial-author span {
font-size: 0.875rem;
color: var(--text-light);
}

.cta-section {
padding: 4rem 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
}

.cta-content h2 {
font-size: 2rem;
margin-bottom: var(--space-md);
color: white;
}

.cta-content p {
font-size: 1.125rem;
margin-bottom: var(--space-lg);
opacity: 0.95;
}

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

.cta-content .btn-primary:hover {
background: var(--bg-light);
}

.main-footer {
background: var(--primary-color);
color: white;
padding: var(--space-md) 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: var(--space-sm);
}

.footer-info p {
font-size: 0.875rem;
opacity: 0.9;
}

.footer-links {
display: flex;
gap: var(--space-md);
}

.footer-links a {
font-size: 0.875rem;
opacity: 0.9;
transition: var(--transition);
}

.footer-links a:hover {
opacity: 1;
color: var(--secondary-color);
}

.page-hero {
padding: 4rem 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
animation: movePattern 20s linear infinite;
opacity: 0.3;
}

@keyframes movePattern {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}

.page-hero .container {
position: relative;
z-index: 1;
}

.page-hero h1 {
font-size: 3rem;
margin-bottom: var(--space-md);
color: white;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
font-weight: 700;
}

.page-hero p {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.95);
font-weight: 400;
max-width: 600px;
margin: 0 auto;
}

.services-detail-section {
padding: 4rem 0;
background: var(--bg-light);
}

.service-detail {
display: grid;
grid-template-columns: 1fr;
gap: var(--space-xl);
margin-bottom: 4rem;
background: white;
padding: var(--space-xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: var(--transition);
border: 1px solid var(--border-color);
}

.service-detail:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--secondary-color);
}

.service-detail.reverse {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.service-detail-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.service-icon-large {
width: 6rem;
height: 6rem;
background: var(--bg-gradient);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-lg);
box-shadow: var(--shadow-md);
transition: var(--transition);
position: relative;
}

.service-detail:hover .service-icon-large {
transform: scale(1.1) rotate(5deg);
box-shadow: var(--shadow-lg);
}

.service-icon-large::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: var(--bg-gradient);
opacity: 0.3;
transform: scale(1.3);
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% {
opacity: 0.3;
transform: scale(1.3);
}
50% {
opacity: 0.1;
transform: scale(1.5);
}
}

.service-icon-large i {
font-size: 2.75rem;
color: white;
position: relative;
z-index: 1;
}

.service-detail-content h2 {
margin-bottom: var(--space-md);
font-size: 2rem;
color: var(--primary-color);
position: relative;
display: inline-block;
}

.service-detail-content h2::after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--bg-gradient);
border-radius: 2px;
}

.service-detail-content p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: var(--space-lg);
font-size: 1.0625rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.service-features {
display: inline-grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-sm);
text-align: left;
margin-top: var(--space-lg);
width: 100%;
max-width: 600px;
background: var(--bg-light);
padding: var(--space-lg);
border-radius: var(--radius-md);
}

.service-features li {
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--text-color);
font-weight: 500;
padding: 0.5rem;
background: white;
border-radius: var(--radius-sm);
transition: var(--transition);
}

.service-features li:hover {
transform: translateX(5px);
box-shadow: var(--shadow-sm);
}

.service-features i {
color: var(--secondary-color);
font-size: 1rem;
background: rgba(52, 152, 219, 0.1);
padding: 0.5rem;
border-radius: 50%;
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.technology-section {
padding: 4rem 0;
background: white;
position: relative;
overflow: hidden;
}

.technology-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
z-index: 0;
}

.technology-section .container {
position: relative;
z-index: 1;
}

.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: var(--space-lg);
}

.tech-item {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
text-align: center;
box-shadow: var(--shadow-sm);
transition: var(--transition);
border: 2px solid var(--border-color);
position: relative;
overflow: hidden;
}

.tech-item::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
transition: left 0.5s ease;
}

.tech-item:hover::before {
left: 100%;
}

.tech-item:hover {
transform: translateY(-8px) scale(1.05);
box-shadow: var(--shadow-lg);
border-color: var(--secondary-color);
}

.tech-item i {
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: var(--space-md);
transition: var(--transition);
display: block;
}

.tech-item:hover i {
transform: scale(1.2) rotate(5deg);
color: var(--primary-color);
}

.tech-item span {
display: block;
font-weight: 600;
font-size: 1rem;
color: var(--text-color);
position: relative;
z-index: 1;
}

.pricing-section {
padding: 4rem 0;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--space-lg);
}

.pricing-card {
background: white;
border-radius: var(--radius-lg);
padding: var(--space-lg);
box-shadow: var(--shadow-md);
border: 2px solid var(--border-color);
transition: var(--transition);
position: relative;
}

.pricing-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--secondary-color);
}

.pricing-card.featured {
border-color: var(--secondary-color);
box-shadow: var(--shadow-lg);
}

.featured-badge {
position: absolute;
top: -12px;
right: var(--space-md);
background: var(--secondary-color);
color: white;
padding: 0.375rem 1rem;
border-radius: var(--radius-sm);
font-size: 0.75rem;
font-weight: 600;
}

.pricing-header {
text-align: center;
padding-bottom: var(--space-md);
border-bottom: 1px solid var(--border-color);
margin-bottom: var(--space-md);
}

.pricing-header h2 {
font-size: 1.5rem;
margin-bottom: var(--space-md);
}

.price {
display: flex;
align-items: flex-start;
justify-content: center;
margin-bottom: var(--space-sm);
}

.currency {
font-size: 1.5rem;
font-weight: 600;
margin-top: 0.5rem;
}

.amount {
font-size: 3rem;
font-weight: 700;
font-family: var(--font-primary);
line-height: 1;
}

.price-description {
color: var(--text-light);
font-size: 0.9375rem;
}

.pricing-features {
margin-bottom: var(--space-lg);
}

.pricing-features li {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
border-bottom: 1px solid var(--bg-light);
font-size: 0.9375rem;
}

.pricing-features i {
color: var(--secondary-color);
font-size: 0.875rem;
}

.btn-pricing {
width: 100%;
padding: 0.875rem;
background: var(--primary-color);
color: white;
border-radius: var(--radius-md);
font-weight: 500;
text-align: center;
display: block;
transition: var(--transition);
}

.btn-pricing:hover {
background: #1a252f;
transform: translateY(-2px);
}

.comparison-section {
padding: 4rem 0;
background: var(--bg-light);
}

.comparison-table-wrapper {
overflow-x: auto;
}

.comparison-table {
width: 100%;
background: white;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
border-collapse: collapse;
}

.comparison-table thead {
background: var(--primary-color);
color: white;
}

.comparison-table th,
.comparison-table td {
padding: var(--space-sm) var(--space-md);
text-align: left;
border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
font-weight: 600;
font-size: 0.9375rem;
}

.comparison-table td {
font-size: 0.9375rem;
}

.comparison-table tbody tr:hover {
background: var(--bg-light);
}

.comparison-table i {
font-size: 1.125rem;
}

.comparison-table .fa-check {
color: var(--secondary-color);
}

.comparison-table .fa-minus {
color: var(--text-light);
}

.addons-section {
padding: 4rem 0;
}

.addons-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: var(--space-lg);
}

.addon-card {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
text-align: center;
transition: var(--transition);
border: 1px solid var(--border-color);
}

.addon-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.addon-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: var(--space-sm);
}

.addon-card h3 {
margin-bottom: var(--space-sm);
font-size: 1.125rem;
}

.addon-price {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: var(--space-sm);
}

.addon-card p {
color: var(--text-light);
font-size: 0.875rem;
}

.faq-section {
padding: 4rem 0;
background: var(--bg-light);
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--space-lg);
}

.faq-item {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
}

.faq-item h3 {
font-size: 1rem;
margin-bottom: var(--space-sm);
color: var(--primary-color);
}

.faq-item p {
color: var(--text-light);
font-size: 0.9375rem;
line-height: 1.6;
}
.contact-section {
padding: 4rem 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-xl);
}

.contact-intro {
margin-bottom: var(--space-lg);
}

.contact-intro h2 {
margin-bottom: var(--space-md);
}

.contact-intro p {
color: var(--text-light);
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}

.contact-item {
display: flex;
gap: var(--space-md);
}

.contact-icon {
width: 3rem;
height: 3rem;
background: var(--bg-gradient);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
font-size: 1.25rem;
color: white;
}

.contact-text h3 {
font-size: 1rem;
margin-bottom: 0.5rem;
}

.contact-text p {
color: var(--text-light);
font-size: 0.9375rem;
line-height: 1.6;
}

.contact-text a {
color: var(--secondary-color);
}

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

.contact-form-wrapper {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
}

.contact-form {
display: flex;
flex-direction: column;
gap: var(--space-md);
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-weight: 500;
margin-bottom: 0.5rem;
font-size: 0.9375rem;
color: var(--text-color);
}

.form-group input,
.form-group textarea {
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: var(--radius-sm);
font-family: inherit;
font-size: 0.9375rem;
transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary-color);
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 0.75rem;
cursor: pointer;
font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
margin-top: 0.25rem;
cursor: pointer;
}

.checkbox-label a {
color: var(--secondary-color);
text-decoration: underline;
}

.map-section {
padding: 4rem 0;
background: var(--bg-light);
}

.map-wrapper {
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
}

.contact-cta-section {
padding: 4rem 0;
}

.contact-cta-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--space-lg);
}

.cta-card {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
text-align: center;
transition: var(--transition);
border: 1px solid var(--border-color);
}

.cta-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.cta-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: var(--space-md);
}

.cta-card h3 {
margin-bottom: var(--space-sm);
}

.cta-card p {
color: var(--text-light);
font-size: 0.9375rem;
}

.thanks-section {
padding: 5rem 0;
text-align: center;
}

.thanks-content {
max-width: 600px;
margin: 0 auto;
}

.thanks-icon {
width: 5rem;
height: 5rem;
background: linear-gradient(135deg, #52c234 0%, #61d345 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-lg);
}

.thanks-icon i {
font-size: 2.5rem;
color: white;
}

.thanks-content h1 {
font-size: 2.5rem;
margin-bottom: var(--space-md);
}

.thanks-content p {
font-size: 1.125rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: var(--space-lg);
}

.thanks-actions {
display: flex;
gap: var(--space-sm);
justify-content: center;
flex-wrap: wrap;
}

.next-steps-section {
padding: 4rem 0;
background: var(--bg-light);
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--space-lg);
}

.step-card {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
text-align: center;
}

.step-icon {
width: 4rem;
height: 4rem;
background: var(--bg-gradient);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-md);
}

.step-icon i {
font-size: 1.75rem;
color: white;
}

.step-card h3 {
margin-bottom: var(--space-sm);
}

.step-card p {
color: var(--text-light);
font-size: 0.9375rem;
}

.error-section {
padding: 5rem 0;
text-align: center;
}

.error-content {
max-width: 600px;
margin: 0 auto;
}

.error-code {
font-size: 8rem;
font-weight: 700;
font-family: var(--font-primary);
color: var(--secondary-color);
line-height: 1;
margin-bottom: var(--space-md);
opacity: 0.2;
}

.error-content h1 {
font-size: 2.5rem;
margin-bottom: var(--space-md);
}

.error-content p {
font-size: 1.125rem;
color: var(--text-light);
margin-bottom: var(--space-lg);
}

.error-actions {
display: flex;
gap: var(--space-sm);
justify-content: center;
flex-wrap: wrap;
}

.helpful-links-section {
padding: 4rem 0;
background: var(--bg-light);
}

.helpful-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--space-lg);
}

.helpful-card {
background: white;
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
text-align: center;
transition: var(--transition);
display: block;
}

.helpful-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.helpful-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: var(--space-md);
}

.helpful-card h3 {
margin-bottom: var(--space-sm);
}

.helpful-card p {
color: var(--text-light);
font-size: 0.9375rem;
}

.policy-section {
padding: 4rem 0;
}

.policy-content {
max-width: 800px;
margin: 0 auto;
background: white;
padding: var(--space-xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
}

.policy-content h2 {
margin-top: var(--space-lg);
margin-bottom: var(--space-md);
color: var(--primary-color);
}

.policy-content h3 {
margin-top: var(--space-md);
margin-bottom: var(--space-sm);
color: var(--primary-color);
}

.policy-content p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: var(--space-md);
}

.policy-content ul {
margin-bottom: var(--space-md);
padding-left: var(--space-lg);
}

.policy-content li {
list-style: disc;
color: var(--text-light);
margin-bottom: 0.5rem;
line-height: 1.6;
}

.policy-content a {
color: var(--secondary-color);
text-decoration: underline;
}

@media (max-width: 768px) {
.main-nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: var(--space-md);
box-shadow: var(--shadow-lg);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: var(--transition);
}

.main-nav.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.burger-menu {
display: flex;
}

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

.hero-text h1 {
font-size: 2rem;
}

.hero-visual {
height: 250px;
}

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

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

.comparison-table {
font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
padding: 0.5rem;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }

.error-code {
font-size: 5rem;
}

.policy-content {
padding: var(--space-md);
}

.service-detail {
padding: var(--space-lg);
}

.service-features {
grid-template-columns: 1fr;
}

.page-hero h1 {
font-size: 2rem;
}

.page-hero p {
font-size: 1.0625rem;
}

.service-detail-content h2 {
font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.hero-text h1 {
font-size: 1.75rem;
}

.hero-text p {
font-size: 1rem;
}

.page-hero h1 {
font-size: 2rem;
}

.thanks-content h1,
.error-content h1 {
font-size: 2rem;
}

.stat-number {
font-size: 2.5rem;
}

.amount {
font-size: 2.5rem;
}

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