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

:root {
--color-primary: #667eea;
--color-secondary: #764ba2;
--color-accent: #f093fb;
--color-highlight: #4facfe;
--text-dark: #1a202c;
--text-medium: #4a5568;
--text-light: #718096;
--bg-light: #f7fafc;
--bg-white: #ffffff;
--border-color: #e2e8f0;
}

body {
font-family: 'Sora', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-dark);
background: var(--bg-white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

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

.container-full {
width: 100%;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 16px 20px;
z-index: 9999;
display: none;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.privacy-popup.show {
display: block;
}

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

.privacy-content p {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

.btn-accept, .btn-learn {
padding: 8px 18px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: all 0.3s ease;
}

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

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

.btn-learn {
background: transparent;
color: white;
border: 1px solid white;
}

.btn-learn:hover {
background: rgba(255,255,255,0.1);
}

.header {
background: var(--bg-white);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.2rem;
font-weight: 700;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav {
display: flex;
gap: 28px;
}

.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
position: relative;
}

.nav-link:hover, .nav-link.active {
color: var(--color-primary);
}

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

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

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--text-dark);
transition: all 0.3s ease;
}

.mega-hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 100px 0 80px;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #1a1a2e;
z-index: 0;
overflow: hidden;
}

.gradient-orb {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.7;
mix-blend-mode: screen;
}

.orb-1 {
width: 400px;
height: 400px;
background: #667eea;
animation: collide1 8s ease-in-out infinite;
}

.orb-2 {
width: 350px;
height: 350px;
background: #f093fb;
animation: collide2 8s ease-in-out infinite;
}

.orb-3 {
width: 300px;
height: 300px;
background: #4facfe;
animation: collide3 8s ease-in-out infinite;
}

@keyframes collide1 {
0% {
top: 10%;
left: 10%;
transform: scale(1);
}
25% {
top: 50%;
left: 50%;
transform: scale(1.5);
}
50% {
top: 50%;
left: 50%;
transform: scale(0.8);
}
75% {
top: 20%;
left: 70%;
transform: scale(1.2);
}
100% {
top: 10%;
left: 10%;
transform: scale(1);
}
}

@keyframes collide2 {
0% {
top: 60%;
right: 10%;
transform: scale(1);
}
25% {
top: 50%;
right: 50%;
transform: scale(1.5);
}
50% {
top: 50%;
right: 50%;
transform: scale(0.8);
}
75% {
top: 70%;
right: 60%;
transform: scale(1.3);
}
100% {
top: 60%;
right: 10%;
transform: scale(1);
}
}

@keyframes collide3 {
0% {
top: 70%;
left: 40%;
transform: scale(1);
}
25% {
top: 50%;
left: 50%;
transform: scale(1.6);
}
50% {
top: 50%;
left: 50%;
transform: scale(0.7);
}
75% {
top: 30%;
left: 30%;
transform: scale(1.4);
}
100% {
top: 70%;
left: 40%;
transform: scale(1);
}
}

.mega-hero-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 900px;
margin: 0 auto;
color: white;
}

.hero-badge {
display: inline-block;
padding: 8px 20px;
background: rgba(255,255,255,0.2);
backdrop-filter: blur(10px);
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid rgba(255,255,255,0.3);
}

.mega-hero-content h1 {
font-size: 3.5rem;
margin-bottom: 25px;
line-height: 1.1;
}

.mega-hero-content p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

.hero-cta-group {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

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

.btn-hero-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
background: transparent;
color: white;
border: 2px solid white;
}

.btn-hero-secondary:hover {
background: rgba(255,255,255,0.1);
}

.hero-stats-mini {
display: flex;
gap: 40px;
justify-content: center;
flex-wrap: wrap;
}

.stat-mini {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-mini strong {
font-size: 1.8rem;
font-weight: 700;
display: block;
margin-bottom: 5px;
}

.stat-mini span {
font-size: 13px;
opacity: 0.9;
}

.hero-scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
color: white;
opacity: 0.8;
animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
font-size: 12px;
}

.hero-scroll-indicator i {
font-size: 16px;
}

@keyframes bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(10px); }
}

.section-label {
display: inline-block;
padding: 6px 16px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 15px;
}

.services {
padding: 80px 0;
background: var(--bg-light);
}

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

.section-header h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.section-header p {
font-size: 1.05rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.service-card {
background: white;
padding: 35px 25px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
position: relative;
border: 1px solid var(--border-color);
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
border-color: var(--color-primary);
}

.service-number {
position: absolute;
top: 20px;
right: 20px;
font-size: 2.5rem;
font-weight: 700;
color: var(--color-primary);
opacity: 0.1;
}

.service-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
margin-top: 10px;
}

.service-card p {
color: var(--text-light);
margin-bottom: 20px;
font-size: 14px;
line-height: 1.7;
}

.service-link {
color: var(--color-primary);
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
}

.service-link:hover {
gap: 12px;
}

.showcase {
padding: 80px 0;
}

.showcase-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.showcase-content h2 {
margin-bottom: 20px;
}

.showcase-content p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.showcase-features {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 30px;
}

.feature-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
background: var(--bg-light);
border-radius: 25px;
font-size: 13px;
font-weight: 500;
}

.feature-badge i {
color: var(--color-primary);
font-size: 16px;
}

.showcase-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.results {
padding: 80px 0;
background: var(--bg-light);
}

.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
}

.result-card {
background: white;
padding: 35px 25px;
border-radius: 12px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.result-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.result-icon i {
font-size: 26px;
color: white;
}

.result-number {
font-size: 3rem;
font-weight: 700;
color: var(--color-primary);
margin-bottom: 10px;
}

.result-card p {
font-size: 14px;
color: var(--text-medium);
line-height: 1.5;
}

.packages {
padding: 80px 0;
}

.packages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.package-card {
background: white;
border-radius: 12px;
padding: 35px 28px;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
position: relative;
border: 2px solid var(--border-color);
}

.package-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.package-card.featured {
border-color: var(--color-primary);
}

.package-badge {
position: absolute;
top: -12px;
right: 20px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

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

.package-header h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}

.package-desc {
font-size: 13px;
color: var(--text-light);
margin-bottom: 20px;
}

.package-price {
display: flex;
align-items: flex-start;
justify-content: center;
gap: 3px;
}

.package-price .currency {
font-size: 1.2rem;
font-weight: 600;
margin-top: 8px;
}

.package-price .amount {
font-size: 2.8rem;
font-weight: 700;
color: var(--color-primary);
}

.package-price .period {
font-size: 1rem;
color: var(--text-light);
margin-top: 18px;
}

.package-features {
list-style: none;
margin-bottom: 25px;
}

.package-features li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: var(--text-medium);
}

.package-features i {
color: var(--color-primary);
font-size: 14px;
}

.btn-package {
display: block;
width: 100%;
text-align: center;
padding: 13px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-package:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

.testimonials {
padding: 80px 0;
background: var(--bg-light);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 15px;
}

.testimonial-rating i {
color: #fbbf24;
font-size: 16px;
}

.testimonial-card p {
font-size: 14px;
line-height: 1.7;
color: var(--text-medium);
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
display: block;
font-size: 15px;
margin-bottom: 3px;
}

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

.process {
padding: 80px 0;
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
}

.process-item {
position: relative;
padding: 30px 25px;
background: var(--bg-light);
border-radius: 12px;
}

.process-number {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 18px;
margin-bottom: 20px;
}

.process-item h3 {
font-size: 1.2rem;
margin-bottom: 12px;
}

.process-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
color: white;
}

.final-cta-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.final-cta-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.final-cta-content p {
font-size: 1.1rem;
margin-bottom: 35px;
opacity: 0.95;
}

.cta-actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.btn-cta-large {
padding: 16px 40px;
background: white;
color: var(--color-primary);
border-radius: 8px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
}

.btn-cta-large:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-contact {
display: flex;
flex-direction: column;
gap: 5px;
}

.cta-contact span {
font-size: 14px;
opacity: 0.9;
}

.cta-contact strong {
font-size: 1.5rem;
}

.footer {
background: var(--text-dark);
color: white;
padding: 35px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: 1.5fr 2fr;
gap: 40px;
margin-bottom: 25px;
}

.footer-logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 15px;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.footer-info p {
font-size: 13px;
opacity: 0.8;
margin-bottom: 8px;
}

.footer-links {
display: flex;
flex-wrap: wrap;
gap: 15px 25px;
}

.footer-links a {
font-size: 13px;
opacity: 0.8;
transition: all 0.3s ease;
}

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

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
font-size: 13px;
opacity: 0.7;
}

.page-hero {
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
color: white;
padding: 70px 0;
text-align: center;
}

.page-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.15rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

.seo-intro, .social-intro {
padding: 80px 0;
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.intro-grid.reverse {
direction: rtl;
}

.intro-grid.reverse > * {
direction: ltr;
}

.intro-content h2 {
margin-bottom: 20px;
}

.intro-content p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.intro-visual img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.seo-process, .social-platforms, .social-services {
padding: 80px 0;
background: var(--bg-light);
}

.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.process-step {
background: white;
padding: 30px 25px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
border: 1px solid var(--border-color);
}

.step-number {
position: absolute;
top: -15px;
left: 25px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
width: 42px;
height: 42px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
}

.step-icon {
font-size: 38px;
color: var(--color-primary);
margin: 20px 0;
}

.process-step h3 {
font-size: 1.2rem;
margin-bottom: 12px;
}

.process-step p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.seo-benefits, .social-approach {
padding: 80px 0;
}

.benefits-layout {
max-width: 1000px;
margin: 0 auto;
}

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

.benefits-header h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}

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

.benefits-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.benefit-item {
display: flex;
gap: 20px;
}

.benefit-item i {
font-size: 28px;
color: var(--color-primary);
flex-shrink: 0;
}

.benefit-text h3 {
font-size: 1.1rem;
margin-bottom: 8px;
}

.benefit-text p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.platforms-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 25px;
}

.platform-card {
background: white;
padding: 30px 20px;
border-radius: 12px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}

.platform-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
border-color: var(--color-primary);
}

.platform-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.platform-icon i {
font-size: 26px;
color: white;
}

.platform-card h3 {
font-size: 1.2rem;
margin-bottom: 12px;
}

.platform-card p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.services-columns {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.service-column {
display: flex;
flex-direction: column;
gap: 25px;
}

.service-item {
display: flex;
gap: 15px;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-item i {
font-size: 22px;
color: var(--color-primary);
flex-shrink: 0;
}

.service-item h3 {
font-size: 1rem;
margin-bottom: 8px;
}

.service-item p {
font-size: 13px;
color: var(--text-light);
line-height: 1.6;
}

.approach-content {
max-width: 1000px;
margin: 0 auto;
}

.approach-content h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
}

.approach-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
}

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

.approach-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.approach-icon i {
font-size: 28px;
color: white;
}

.approach-step h3 {
font-size: 1.1rem;
margin-bottom: 12px;
}

.approach-step p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.contact-hero {
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
color: white;
padding: 70px 0;
}

.contact-hero-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.contact-hero-content h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.contact-hero-content p {
font-size: 1.15rem;
opacity: 0.95;
}

.contact-main {
padding: 80px 0;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info-section {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-info-card {
background: var(--bg-light);
padding: 25px;
border-radius: 12px;
border: 1px solid var(--border-color);
}

.info-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.info-icon i {
font-size: 20px;
color: white;
}

.contact-info-card h3 {
font-size: 1.1rem;
margin-bottom: 10px;
}

.contact-info-card p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 5px;
}

.info-note {
font-size: 13px;
font-style: italic;
}

.contact-form-section {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
border: 1px solid var(--border-color);
}

.form-header {
margin-bottom: 30px;
}

.form-header h2 {
font-size: 1.8rem;
margin-bottom: 10px;
}

.form-header p {
font-size: 14px;
color: var(--text-light);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.form-group label {
font-size: 14px;
font-weight: 600;
color: var(--text-dark);
}

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid var(--border-color);
border-radius: 8px;
font-size: 14px;
font-family: 'Sora', sans-serif;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.checkbox-label {
display: flex;
gap: 10px;
font-size: 13px;
color: var(--text-light);
cursor: pointer;
}

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

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

.btn-submit {
padding: 14px 30px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
border: none;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

.map-section {
margin-top: 50px;
}

.map-container {
width: 100%;
height: 450px;
border-radius: 12px;
overflow: hidden;
}

.map-container iframe {
width: 100%;
height: 100%;
border: 0;
}

.thankyou-section, .error-section {
padding: 100px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon {
width: 100px;
height: 100px;
background: linear-gradient(135deg, #10b981, #059669);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

.thankyou-icon i {
font-size: 48px;
color: white;
}

.thankyou-content h1 {
font-size: 2.2rem;
margin-bottom: 20px;
color: var(--text-dark);
}

.thankyou-content p {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.8;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 30px;
flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
padding: 12px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-primary {
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

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

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

.thankyou-info p {
font-size: 14px;
color: var(--text-light);
}

.error-number {
font-size: 8rem;
font-weight: 700;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-size: 2rem;
margin-bottom: 20px;
}

.error-content p {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 30px;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 40px;
flex-wrap: wrap;
}

.error-links {
margin-top: 30px;
}

.error-links p {
font-size: 14px;
font-weight: 600;
margin-bottom: 15px;
}

.quick-links {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.quick-links a {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: var(--bg-light);
border-radius: 8px;
font-size: 14px;
color: var(--text-dark);
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}

.quick-links a:hover {
background: var(--color-primary);
color: white;
border-color: var(--color-primary);
}

.policy-hero {
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
color: white;
padding: 60px 0;
text-align: center;
}

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

.policy-date {
font-size: 14px;
opacity: 0.9;
}

.policy-content {
padding: 70px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
font-size: 1.6rem;
margin-top: 40px;
margin-bottom: 20px;
color: var(--text-dark);
}

.policy-text h3 {
font-size: 1.2rem;
margin-top: 25px;
margin-bottom: 15px;
color: var(--text-dark);
}

.policy-text p {
font-size: 14px;
line-height: 1.8;
color: var(--text-light);
margin-bottom: 15px;
}

.policy-text strong {
color: var(--text-dark);
font-weight: 600;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.container {
padding: 0 15px;
}

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

.privacy-buttons {
width: 100%;
}

.btn-accept, .btn-learn {
flex: 1;
}

.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
gap: 0;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: none;
}

.nav.active {
display: flex;
}

.nav-link {
padding: 12px 0;
border-bottom: 1px solid var(--border-color);
}

.nav-link:last-child {
border-bottom: none;
}

.mega-hero {
min-height: 80vh;
padding: 80px 0 60px;
}

.mega-hero-content h1 {
font-size: 2.2rem;
}

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

.hero-cta-group {
flex-direction: column;
}

.btn-hero-primary, .btn-hero-secondary {
width: 100%;
text-align: center;
}

.hero-stats-mini {
gap: 25px;
}

.stat-mini strong {
font-size: 1.5rem;
}

.services, .packages, .showcase, .results, .testimonials, .process, .final-cta, .seo-intro, .social-intro, .seo-process, .seo-benefits, .social-platforms, .social-services, .social-approach, .contact-main, .policy-content {
padding: 60px 0;
}

.section-header h2, .benefits-header h2, .approach-content h2, .final-cta-content h2 {
font-size: 1.8rem;
}

.services-grid, .packages-grid, .results-grid, .testimonials-grid, .process-timeline, .process-grid, .benefits-list, .platforms-grid, .approach-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.showcase-grid, .intro-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.intro-grid.reverse {
direction: ltr;
}

.footer-content {
grid-template-columns: 1fr;
gap: 25px;
}

.footer-links {
flex-direction: column;
gap: 10px;
}

.contact-layout {
grid-template-columns: 1fr;
gap: 30px;
}

.contact-form-section {
padding: 30px 20px;
}

.thankyou-actions, .error-actions {
flex-direction: column;
}

.thankyou-actions .btn-primary,
.thankyou-actions .btn-secondary,
.error-actions .btn-primary,
.error-actions .btn-secondary {
width: 100%;
text-align: center;
}

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

.quick-links {
flex-direction: column;
}

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

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

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

@media (max-width: 480px) {
body {
font-size: 14px;
}

h1 { font-size: 1.7rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }

.mega-hero {
min-height: 70vh;
padding: 60px 0 50px;
}

.mega-hero-content h1 {
font-size: 1.8rem;
}

.hero-badge {
font-size: 12px;
padding: 6px 16px;
}

.btn-hero-primary, .btn-hero-secondary, .btn-primary, .btn-secondary, .btn-submit, .btn-cta-large {
padding: 12px 24px;
font-size: 14px;
}

.service-card, .package-card, .process-step, .testimonial-card {
padding: 25px 20px;
}

.contact-form-section {
padding: 25px 15px;
}

.thankyou-icon {
width: 80px;
height: 80px;
}

.thankyou-icon i {
font-size: 38px;
}

.thankyou-content h1, .error-content h1 {
font-size: 1.7rem;
}

.error-number {
font-size: 4rem;
}

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

.policy-text h2 {
font-size: 1.4rem;
}

.policy-text h3 {
font-size: 1.1rem;
}

.final-cta-content h2 {
font-size: 1.8rem;
}

.cta-contact strong {
font-size: 1.3rem;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1rem; }

.mega-hero-content h1 {
font-size: 1.6rem;
}

.package-price .amount {
font-size: 2.3rem;
}

.result-number {
font-size: 2rem;
}

.hero-stats-mini {
gap: 20px;
}

.stat-mini strong {
font-size: 1.3rem;
}
}
