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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #db2777;
--dark: #0f172a;
--light: #f1f5f9;
--gray: #64748b;
--border: #e2e8f0;
}

html {
scroll-behavior: smooth;
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 18px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

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

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--accent);
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
}

.privacy-actions a:hover {
color: white;
}

.privacy-actions button {
background: var(--primary);
color: white;
border: none;
padding: 8px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: background 0.3s;
}

.privacy-actions button:hover {
background: var(--primary-dark);
}

.header {
background: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transform: translateY(0);
transition: transform 0.3s ease;
}

.header.hidden {
transform: translateY(-100%);
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--primary);
letter-spacing: -0.5px;
}

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav a {
color: var(--dark);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
position: relative;
}

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

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

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

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

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

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

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

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

.hero-ultra {
position: relative;
padding: 120px 0 100px;
background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
overflow: hidden;
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.4;
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 500px;
height: 500px;
background: linear-gradient(135deg, #2563eb, #7c3aed);
top: -200px;
left: -100px;
}

.shape-2 {
width: 400px;
height: 400px;
background: linear-gradient(135deg, #db2777, #7c3aed);
top: 100px;
right: -150px;
animation-delay: -5s;
}

.shape-3 {
width: 350px;
height: 350px;
background: linear-gradient(135deg, #2563eb, #db2777);
bottom: -100px;
left: 50%;
animation-delay: -10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(30px, -30px) rotate(120deg); }
66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-wrapper {
display: grid;
grid-template-columns: 1fr 1.1fr;
gap: 80px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-label {
display: inline-flex;
align-items: center;
gap: 8px;
background: white;
padding: 8px 20px;
border-radius: 50px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
margin-bottom: 30px;
border: 1px solid var(--border);
}

.label-dot {
width: 8px;
height: 8px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.6; transform: scale(1.2); }
}

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

.hero-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 64px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 25px;
color: var(--dark);
}

.title-line {
display: block;
}

.gradient-text {
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-description {
font-size: 19px;
line-height: 1.7;
color: var(--gray);
margin-bottom: 40px;
max-width: 540px;
}

.hero-cta {
display: flex;
gap: 15px;
margin-bottom: 60px;
flex-wrap: wrap;
}

.btn-hero-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 16px 32px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.3s;
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-hero-primary svg {
transition: transform 0.3s;
}

.btn-hero-primary:hover svg {
transform: translateX(5px);
}

.btn-hero-secondary {
display: inline-flex;
align-items: center;
background: white;
color: var(--dark);
padding: 16px 32px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.3s;
border: 2px solid var(--border);
}

.btn-hero-secondary:hover {
border-color: var(--primary);
color: var(--primary);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-metrics {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.metric-box {
display: flex;
flex-direction: column;
}

.metric-value {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--dark);
margin-bottom: 5px;
}

.metric-label {
font-size: 14px;
color: var(--gray);
}

.hero-visual {
position: relative;
}

.visual-card {
position: relative;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 30px 80px rgba(0,0,0,0.15);
border: 1px solid var(--border);
background: white;
padding: 12px;
}

.visual-card img {
width: 100%;
height: auto;
border-radius: 16px;
display: block;
}

.visual-badge {
position: absolute;
background: white;
padding: 12px 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
display: flex;
align-items: center;
gap: 10px;
border: 1px solid var(--border);
animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.badge-1 {
top: 30px;
right: -20px;
animation-delay: 0.3s;
}

.badge-2 {
bottom: 40px;
left: -20px;
animation-delay: 0.6s;
}

.badge-icon {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 700;
}

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

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
border: 2px solid transparent;
}

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

.btn-primary:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.trust-section {
padding: 40px 0;
background: white;
border-bottom: 1px solid var(--border);
}

.trust-text {
text-align: center;
color: var(--gray);
font-size: 15px;
margin: 0;
}

.features-modern {
padding: 100px 0;
background: white;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 60px;
}

.section-tag {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
}

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
margin-bottom: 15px;
color: var(--dark);
}

.section-header p {
font-size: 17px;
color: var(--gray);
line-height: 1.7;
}

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

.feature-box {
padding: 40px 30px;
background: var(--light);
border-radius: 12px;
transition: all 0.3s;
border: 2px solid transparent;
}

.feature-box:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.feature-icon {
font-size: 48px;
margin-bottom: 20px;
display: block;
}

.feature-box h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
}

.feature-box p {
font-size: 15px;
color: var(--gray);
line-height: 1.7;
}

.showcase-section {
padding: 100px 0;
background: var(--light);
}

.showcase-section.reverse {
background: white;
}

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

.showcase-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 40px;
margin-bottom: 20px;
color: var(--dark);
}

.showcase-content p {
font-size: 16px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 20px;
}

.check-list {
list-style: none;
margin: 25px 0 30px;
}

.check-list li {
padding: 10px 0;
font-size: 15px;
color: var(--dark);
position: relative;
padding-left: 30px;
}

.check-list li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
font-size: 18px;
}

.showcase-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.pricing-modern {
padding: 100px 0;
background: white;
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
max-width: 1100px;
margin: 0 auto;
}

.price-card {
background: var(--light);
border-radius: 16px;
padding: 45px 35px;
border: 2px solid var(--border);
transition: all 0.3s;
position: relative;
}

.price-card.featured {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
transform: scale(1.05);
border-color: transparent;
}

.popular-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: white;
padding: 6px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.plan-header h3 {
font-size: 26px;
margin-bottom: 10px;
}

.plan-header p {
font-size: 14px;
opacity: 0.8;
margin-bottom: 25px;
}

.plan-price {
margin-bottom: 30px;
}

.plan-price .currency {
font-size: 24px;
vertical-align: top;
}

.plan-price .amount {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
}

.plan-price .period {
font-size: 16px;
opacity: 0.8;
}

.plan-features {
list-style: none;
margin-bottom: 35px;
}

.plan-features li {
padding: 12px 0;
border-bottom: 1px solid var(--border);
font-size: 14px;
}

.price-card.featured .plan-features li {
border-bottom-color: rgba(255,255,255,0.2);
}

.btn-plan {
display: block;
text-align: center;
padding: 14px;
background: var(--primary);
color: white;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
}

.price-card.featured .btn-plan {
background: white;
color: var(--primary);
}

.btn-plan:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-section {
padding: 100px 0;
background: var(--light);
}

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

.testimonial-card {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card p {
font-size: 15px;
line-height: 1.8;
color: var(--dark);
margin-bottom: 25px;
font-style: italic;
}

.testimonial-author strong {
display: block;
font-size: 16px;
color: var(--dark);
margin-bottom: 5px;
}

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

.process-section {
padding: 100px 0;
background: white;
}

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

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

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

.timeline-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
}

.timeline-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.integration-section {
padding: 100px 0;
background: var(--light);
}

.integration-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
}

.integration-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 40px;
margin-bottom: 20px;
color: var(--dark);
}

.integration-text p {
font-size: 16px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 20px;
}

.integration-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.faq-section {
padding: 100px 0;
background: white;
}

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

.faq-item {
padding: 30px;
background: var(--light);
border-radius: 12px;
}

.faq-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
}

.faq-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

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

.cta-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 46px;
margin-bottom: 20px;
}

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

.btn-primary-large {
display: inline-block;
background: white;
color: var(--primary);
padding: 16px 48px;
border-radius: 10px;
text-decoration: none;
font-weight: 700;
font-size: 16px;
transition: all 0.3s;
}

.btn-primary-large:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-note {
font-size: 14px;
margin-top: 15px;
opacity: 0.85;
}

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

.page-hero-modern h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
margin-bottom: 15px;
}

.page-hero-modern p {
font-size: 19px;
opacity: 0.95;
}

.benefits-section {
padding: 100px 0;
background: white;
}

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

.benefit-card {
padding: 35px;
background: var(--light);
border-radius: 12px;
}

.benefit-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--primary);
}

.benefit-card p {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
}

.stats-showcase {
padding: 80px 0;
background: var(--light);
}

.stats-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

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

.stat-box {
text-align: center;
padding: 40px 30px;
background: white;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-box strong {
font-family: 'Space Grotesk', sans-serif;
font-size: 52px;
color: var(--primary);
display: block;
margin-bottom: 10px;
}

.stat-box span {
font-size: 15px;
color: var(--gray);
}

.data-section {
padding: 100px 0;
background: var(--light);
}

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

.data-card {
padding: 40px 30px;
background: white;
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.data-icon {
font-size: 48px;
margin-bottom: 20px;
display: block;
}

.data-card h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--dark);
}

.data-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.use-cases {
padding: 100px 0;
background: white;
}

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

.case-item {
padding: 35px;
background: var(--light);
border-radius: 12px;
}

.case-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
}

.case-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.contact-main-modern {
padding: 100px 0;
background: white;
}

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

.contact-info-modern h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 15px;
color: var(--dark);
}

.contact-info-modern > p {
font-size: 15px;
color: var(--gray);
margin-bottom: 35px;
}

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

.info-box {
display: flex;
gap: 20px;
padding: 25px;
background: var(--light);
border-radius: 12px;
}

.info-icon {
font-size: 32px;
flex-shrink: 0;
}

.info-details h3 {
font-size: 16px;
margin-bottom: 8px;
color: var(--dark);
font-weight: 600;
}

.info-details p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
margin: 0;
}

.contact-form-modern h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 10px;
color: var(--dark);
}

.contact-form-modern > p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
}

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

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

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

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

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

.form-field input:focus,
.form-field textarea:focus {
outline: none;
border-color: var(--primary);
}

.form-field textarea {
resize: vertical;
min-height: 130px;
}

.form-checkbox {
display: flex;
align-items: flex-start;
gap: 10px;
}

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

.form-checkbox label {
font-size: 13px;
color: var(--gray);
cursor: pointer;
}

.form-checkbox a {
color: var(--primary);
text-decoration: none;
}

.form-checkbox a:hover {
text-decoration: underline;
}

.map-section-modern {
padding: 100px 0;
background: var(--light);
}

.map-section-modern h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
text-align: center;
margin-bottom: 40px;
color: var(--dark);
}

.map-wrapper {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thankyou-content,
.error-content {
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
background: var(--light);
}

.thankyou-box,
.error-box {
text-align: center;
max-width: 600px;
background: white;
padding: 60px 40px;
border-radius: 12px;
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thankyou-box i {
font-size: 72px;
color: var(--success);
margin-bottom: 25px;
}

.error-box .error-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 120px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
}

.thankyou-box h1,
.error-box h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
color: var(--dark);
}

.thankyou-box p,
.error-box p {
font-size: 16px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 30px;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-content {
padding: 80px 0;
background: white;
}

.policy-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
margin-bottom: 15px;
color: var(--dark);
}

.policy-date {
font-size: 14px;
color: var(--gray);
margin-bottom: 40px;
}

.policy-section {
margin-bottom: 40px;
}

.policy-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
margin-bottom: 20px;
color: var(--dark);
}

.policy-section h3 {
font-size: 20px;
margin: 20px 0 12px;
color: var(--dark);
}

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

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

.footer-content {
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
gap: 25px;
margin-bottom: 15px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

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

.copyright {
font-size: 13px;
opacity: 0.8;
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateX(-100%);
transition: transform 0.3s;
}

.nav.active {
transform: translateX(0);
}

.hero-ultra {
padding: 80px 0 60px;
}

.hero-wrapper {
grid-template-columns: 1fr;
gap: 50px;
}

.hero-title {
font-size: 42px;
}

.hero-description {
font-size: 17px;
}

.hero-metrics {
gap: 30px;
}

.metric-value {
font-size: 30px;
}

.visual-badge {
padding: 10px 16px;
}

.badge-1,
.badge-2 {
position: static;
margin: 15px auto;
}

.section-header h2,
.showcase-content h2,
.integration-text h2,
.stats-content h2 {
font-size: 32px;
}

.cta-content h2,
.page-hero-modern h1 {
font-size: 36px;
}

.features-layout,
.pricing-cards,
.testimonial-grid,
.process-timeline,
.faq-grid,
.benefits-grid,
.stats-numbers,
.data-grid,
.cases-grid {
grid-template-columns: 1fr;
}

.showcase-grid,
.integration-content,
.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}

.price-card.featured {
transform: scale(1);
}

.plan-price .amount {
font-size: 48px;
}
}

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

.container {
padding: 0 15px;
}

.hero-ultra {
padding: 60px 0 50px;
}

.hero-title {
font-size: 32px;
}

.hero-description {
font-size: 16px;
}

.hero-metrics {
gap: 25px;
}

.metric-value {
font-size: 26px;
}

.hero-cta {
flex-direction: column;
width: 100%;
}

.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
justify-content: center;
padding: 14px 28px;
}

.section-header h2 {
font-size: 28px;
}

.showcase-content h2,
.integration-text h2 {
font-size: 28px;
}

.cta-content h2 {
font-size: 32px;
}

.page-hero-modern h1 {
font-size: 32px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 11px 28px;
font-size: 14px;
}

.btn-primary-large {
padding: 14px 36px;
font-size: 15px;
}

.feature-box,
.price-card,
.testimonial-card,
.benefit-card,
.data-card,
.case-item,
.faq-item {
padding: 28px 22px;
}

.plan-price .amount {
font-size: 42px;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

.hero-actions a {
width: 100%;
text-align: center;
}

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

.thankyou-actions a,
.error-actions a {
width: 100%;
}

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

@media (max-width: 320px) {
.hero-title {
font-size: 28px;
}

.section-header h2 {
font-size: 24px;
}

.showcase-content h2,
.integration-text h2 {
font-size: 24px;
}

.cta-content h2 {
font-size: 28px;
}

.page-hero-modern h1 {
font-size: 28px;
}

.metric-value {
font-size: 22px;
}

.plan-price .amount {
font-size: 38px;
}
}

.thankyou-content,
.error-content {
min-height: calc(100vh - 170px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
background: var(--light);
}

.thankyou-box,
.error-box {
text-align: center;
max-width: 650px;
background: white;
padding: 60px 50px;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.success-icon {
width: 90px;
height: 90px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
font-weight: 700;
margin: 0 auto 30px;
}

.error-box .error-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 120px;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 20px;
}

.thankyou-box h1,
.error-box h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 34px;
margin-bottom: 20px;
color: var(--dark);
}

.thankyou-box p,
.error-box p {
font-size: 16px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 35px;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}


.thankyou-box,
.error-box {
padding: 45px 30px;
}

.error-box .error-number {
font-size: 90px;
}
