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

:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #8b5cf6;
--accent: #ec4899;
--dark: #0f172a;
--dark-light: #1e293b;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
--success: #10b981;
--shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

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

.header {
background: var(--white);
padding: 15px 0;
position: relative;
z-index: 100;
border-bottom: 1px solid var(--light);
}

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

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

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

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

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

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

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

.hero-modern {
padding: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
position: relative;
overflow: hidden;
min-height: 650px;
}

.hero-grid-layout {
display: grid;
grid-template-columns: 1fr 1fr;
max-width: 1200px;
margin: 0 auto;
padding: 80px 20px;
gap: 60px;
align-items: center;
min-height: 650px;
}

.hero-content-side {
color: var(--white);
z-index: 2;
}

.hero-visual-side {
position: relative;
height: 550px;
display: flex;
align-items: center;
justify-content: center;
}

.hero-phone-mockup {
position: relative;
z-index: 1;
}

.phone-frame {
width: 280px;
height: 550px;
background: var(--dark);
border-radius: 40px;
padding: 12px;
box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
position: relative;
}

.phone-frame::before {
content: '';
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 25px;
background: var(--dark);
border-radius: 0 0 20px 20px;
z-index: 2;
}

.phone-screen {
width: 100%;
height: 100%;
background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
border-radius: 32px;
position: relative;
overflow: hidden;
}

.phone-screen::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
animation: shimmer 3s infinite;
}

@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

.floating-card {
position: absolute;
background: var(--white);
padding: 15px 20px;
border-radius: 12px;
box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 12px;
animation: float-card 3s ease-in-out infinite;
}

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

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

.card-3 {
bottom: 15%;
left: -5%;
animation-delay: 2s;
}

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

.card-icon {
font-size: 24px;
}

.card-text {
font-size: 13px;
font-weight: 600;
color: var(--dark);
white-space: nowrap;
}

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

.hero-content-side h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
margin-bottom: 25px;
line-height: 1.2;
}

.hero-content-side > p {
font-size: 17px;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

.hero-stats {
display: flex;
gap: 35px;
margin-bottom: 35px;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 36px;
font-weight: 700;
margin-bottom: 5px;
}

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

.hero-actions {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--white);
transition: all 0.3s;
}

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

.btn-primary {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
}

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

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--primary);
transition: all 0.3s;
}

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

.features {
padding: 70px 0;
background: var(--white);
}

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

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

.feature-card {
padding: 30px;
background: var(--light);
border-radius: 12px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon,
.benefit-icon,
.tech-icon,
.integration-icon,
.contact-icon,
.feature-icon-large {
font-size: 40px;
margin-bottom: 20px;
display: block;
}

.feature-icon-large {
font-size: 45px;
flex-shrink: 0;
}

.check-icon,
.check-mark {
color: var(--success);
font-weight: 700;
font-size: 18px;
}

.success-icon {
font-size: 80px;
color: var(--success);
margin-bottom: 25px;
display: block;
font-weight: 700;
}

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

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

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

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

.showcase-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

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

.showcase-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 25px;
}

.showcase-list {
list-style: none;
}

.showcase-list li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 15px;
font-size: 14px;
}

.products {
padding: 70px 0;
background: var(--white);
}

.products h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.product-card {
background: var(--light);
border-radius: 12px;
padding: 35px;
text-align: center;
position: relative;
transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-card.featured {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
}

.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--accent);
color: var(--white);
padding: 5px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.product-card h3 {
font-size: 22px;
margin-bottom: 15px;
font-weight: 600;
}

.product-card p {
font-size: 14px;
margin-bottom: 20px;
opacity: 0.9;
}

.product-price {
font-size: 36px;
font-weight: 700;
margin-bottom: 20px;
}

.product-features {
list-style: none;
margin-bottom: 25px;
text-align: left;
}

.product-features li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
font-size: 13px;
}

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

.technology h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 15px;
}

.section-subtitle {
text-align: center;
font-size: 16px;
opacity: 0.8;
margin-bottom: 50px;
}

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

.tech-item {
text-align: center;
padding: 25px;
}

.tech-item h4 {
font-size: 20px;
margin-bottom: 12px;
}

.tech-item p {
font-size: 14px;
opacity: 0.85;
}

.integration {
padding: 70px 0;
background: var(--white);
}

.integration h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 15px;
}

.integration-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 50px;
}

.integration-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

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

.integration-icon {
font-size: 50px;
margin-bottom: 20px;
}

.integration-card h4 {
font-size: 20px;
margin-bottom: 12px;
}

.integration-card p {
font-size: 14px;
color: var(--gray);
}

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

.testimonials h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: var(--shadow);
}

.testimonial-text {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
color: var(--dark);
font-style: italic;
}

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

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

.security {
padding: 70px 0;
background: var(--white);
}

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

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

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

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

.security-feature {
display: flex;
gap: 20px;
align-items: flex-start;
}

.security-icon {
font-size: 35px;
flex-shrink: 0;
}

.security-feature h4 {
font-size: 18px;
margin-bottom: 8px;
}

.security-feature p {
font-size: 14px;
color: var(--gray);
}

.security-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
}

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

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

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

.btn-cta {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 16px 40px;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 16px;
transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}

.cta-note {
font-size: 13px;
margin-top: 20px;
opacity: 0.85;
}

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

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

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

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

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

.footer-links a:hover {
opacity: 1;
}

.page-hero {
padding: 50px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
text-align: center;
}

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

.page-hero p {
font-size: 16px;
opacity: 0.9;
}

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

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

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

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

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

.content-text p {
font-size: 15px;
color: var(--gray);
margin-bottom: 20px;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.benefits {
padding: 70px 0;
background: var(--light);
}

.benefits h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.benefit-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
}

.benefit-card h3 {
font-size: 20px;
margin-bottom: 12px;
}

.benefit-card p {
font-size: 14px;
color: var(--gray);
}

.how-it-works {
padding: 70px 0;
background: var(--white);
}

.how-it-works h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.step-item {
text-align: center;
padding: 25px;
}

.step-number {
width: 60px;
height: 60px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
margin: 0 auto 20px;
}

.step-item h3 {
font-size: 20px;
margin-bottom: 12px;
}

.step-item p {
font-size: 14px;
color: var(--gray);
}

.features-detailed {
padding: 70px 0;
background: var(--white);
}

.features-detailed h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

.features-list {
max-width: 900px;
margin: 0 auto;
}

.feature-detailed {
display: flex;
gap: 25px;
margin-bottom: 35px;
padding: 25px;
background: var(--light);
border-radius: 12px;
align-items: flex-start;
}

.feature-detailed-content h3 {
font-size: 20px;
margin-bottom: 10px;
}

.feature-detailed-content p {
font-size: 14px;
color: var(--gray);
}

.automation-benefits {
padding: 70px 0;
background: var(--light);
}

.automation-benefits h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

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

.benefit-column {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: var(--shadow);
}

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

.benefit-column p {
font-size: 14px;
color: var(--gray);
}

.contact-section {
padding: 70px 0;
background: var(--light);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
background: var(--white);
border-radius: 12px;
padding: 50px;
box-shadow: var(--shadow-lg);
}

.contact-info-side h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
margin-bottom: 15px;
}

.contact-info-side > p {
font-size: 14px;
color: var(--gray);
margin-bottom: 30px;
}

.contact-methods {
margin-bottom: 30px;
}

.contact-method {
display: flex;
gap: 20px;
margin-bottom: 25px;
align-items: flex-start;
}

.contact-method h3 {
font-size: 16px;
margin-bottom: 5px;
}

.contact-method p {
font-size: 14px;
color: var(--gray);
}

.contact-hours {
background: var(--light);
padding: 20px;
border-radius: 8px;
}

.contact-hours h3 {
font-size: 16px;
margin-bottom: 10px;
}

.contact-hours p {
font-size: 13px;
color: var(--gray);
margin-bottom: 5px;
}

.contact-form-side h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
margin-bottom: 25px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-size: 14px;
font-family: 'Sora', sans-serif;
transition: border-color 0.3s;
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-bottom: 25px;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
cursor: pointer;
}

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

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

.contact-form button {
width: 100%;
}

.map-section {
padding: 70px 0;
background: var(--white);
}

.map-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 40px;
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}

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

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

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

.thankyou-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

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

.error-code {
font-size: 100px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 15px;
}

.error-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
}

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

.policy-section {
padding: 70px 0;
background: var(--light);
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: var(--white);
padding: 50px;
border-radius: 12px;
box-shadow: var(--shadow);
}

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

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

.policy-block {
margin-bottom: 35px;
}

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

.policy-block h3 {
font-size: 18px;
margin-bottom: 12px;
margin-top: 20px;
color: var(--dark);
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 1000;
box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
display: none;
}

.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 {
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

.privacy-buttons a {
color: var(--white);
text-decoration: underline;
font-size: 13px;
}

.privacy-buttons button {
background: var(--primary);
color: var(--white);
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

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

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 20px;
transition: left 0.3s;
box-shadow: var(--shadow-lg);
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

.hero-grid-layout {
grid-template-columns: 1fr;
padding: 60px 20px;
min-height: auto;
gap: 40px;
}

.hero-content-side {
text-align: center;
}

.hero-content-side h1 {
font-size: 36px;
}

.hero-content-side > p {
font-size: 16px;
}

.hero-stats {
justify-content: center;
gap: 25px;
}

.stat-number {
font-size: 28px;
}

.hero-actions {
justify-content: center;
}

.hero-visual-side {
height: 400px;
}

.phone-frame {
width: 220px;
height: 440px;
}

.floating-card {
padding: 12px 16px;
}

.card-icon {
font-size: 20px;
}

.card-text {
font-size: 11px;
}

.showcase-grid,
.content-grid,
.security-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.features h2,
.products h2,
.technology h2,
.benefits h2,
.how-it-works h2,
.features-detailed h2,
.automation-benefits h2,
.map-section h2,
.integration h2,
.testimonials h2 {
font-size: 28px;
}

.showcase-content h2,
.content-text h2,
.security-content h2 {
font-size: 26px;
}

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

.contact-wrapper {
grid-template-columns: 1fr;
padding: 30px;
}

.policy-content {
padding: 30px;
}

.policy-content h1 {
font-size: 28px;
}

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

.footer-links {
justify-content: center;
}
}

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

.logo {
font-size: 16px;
}

.hero-grid-layout {
padding: 40px 15px;
}

.hero-content-side h1 {
font-size: 28px;
}

.hero-content-side > p {
font-size: 14px;
}

.hero-stats {
gap: 20px;
}

.stat-number {
font-size: 24px;
}

.stat-label {
font-size: 12px;
}

.hero-visual-side {
height: 350px;
}

.phone-frame {
width: 180px;
height: 360px;
border-radius: 30px;
padding: 10px;
}

.phone-screen {
border-radius: 24px;
}

.floating-card {
padding: 10px 14px;
}

.card-icon {
font-size: 18px;
}

.card-text {
font-size: 10px;
}

.features,
.showcase,
.products,
.technology,
.content-section,
.benefits,
.how-it-works,
.features-detailed,
.automation-benefits,
.contact-section,
.map-section,
.policy-section,
.integration,
.testimonials,
.security,
.final-cta {
padding: 50px 0;
}

.features h2,
.products h2,
.technology h2,
.benefits h2,
.how-it-works h2,
.features-detailed h2,
.automation-benefits h2,
.map-section h2,
.integration h2,
.testimonials h2 {
font-size: 24px;
margin-bottom: 35px;
}

.feature-card,
.benefit-card,
.product-card,
.integration-card,
.testimonial-card {
padding: 25px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 10px 22px;
font-size: 13px;
}

.btn-cta {
padding: 14px 32px;
font-size: 15px;
}

.contact-wrapper {
padding: 25px;
}

.contact-info-side h2,
.contact-form-side h2 {
font-size: 22px;
}

.policy-content {
padding: 25px;
}

.policy-content h1 {
font-size: 24px;
}

.policy-block h2 {
font-size: 20px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 26px;
}

.error-code {
font-size: 70px;
}

.success-icon {
font-size: 60px;
}

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

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

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

@media (max-width: 320px) {
.logo {
font-size: 14px;
}

.hero-content-side h1 {
font-size: 24px;
}

.hero-stats {
flex-direction: column;
gap: 15px;
}

.stat-number {
font-size: 20px;
}

.hero-visual-side {
height: 300px;
}

.phone-frame {
width: 160px;
height: 320px;
}

.floating-card {
padding: 8px 12px;
}

.card-text {
font-size: 9px;
}

.features h2,
.products h2 {
font-size: 20px;
}

.feature-icon,
.benefit-icon,
.tech-icon,
.integration-icon {
font-size: 32px;
}

.product-price {
font-size: 28px;
}

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