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

:root {
--primary-color: #6366f1;
--secondary-color: #8b5cf6;
--accent-color: #ec4899;
--dark-color: #0f172a;
--text-dark: #1e293b;
--text-light: #64748b;
--bg-light: #f8fafc;
--bg-white: #ffffff;
--border-color: #e2e8f0;
--success-color: #10b981;
}

html {
scroll-behavior: smooth;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--text-dark);
font-size: 14px;
background: var(--bg-white);
}

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

header {
background: var(--bg-white);
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
position: relative;
z-index: 100;
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 15px;
max-width: 1200px;
margin: 0 auto;
}

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}

nav ul {
display: flex;
list-style: none;
gap: 20px;
}

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

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

.hero-mega {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

.hero-shape {
position: absolute;
background: rgba(255,255,255,0.1);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
left: -100px;
animation-delay: 0s;
}

.shape-2 {
width: 300px;
height: 300px;
top: 50%;
right: -50px;
animation-delay: 5s;
}

.shape-3 {
width: 250px;
height: 250px;
bottom: -50px;
left: 30%;
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-content {
position: relative;
z-index: 10;
max-width: 800px;
color: var(--bg-white);
text-align: center;
margin: 0 auto;
padding: 60px 15px;
}

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

.hero-title {
font-size: 48px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 20px;
}

.hero-title .highlight {
background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-description {
font-size: 18px;
line-height: 1.6;
opacity: 0.95;
margin-bottom: 30px;
}

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

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

.stat-mini strong {
display: block;
font-size: 28px;
font-weight: 700;
margin-bottom: 4px;
}

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

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

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

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

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

.btn-hero-secondary {
background: rgba(255,255,255,0.2);
color: var(--bg-white);
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
background: rgba(255,255,255,0.3);
border-color: rgba(255,255,255,0.5);
}

section {
padding: 40px 15px;
}

h2 {
font-size: 24px;
margin-bottom: 20px;
text-align: center;
color: var(--text-dark);
font-weight: 700;
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--text-dark);
font-weight: 600;
}

.section-label {
display: block;
text-align: center;
color: var(--primary-color);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 10px;
}

.features {
background: var(--bg-light);
}

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

.feature-card {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
transition: transform 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
}

.feature-icon {
font-size: 36px;
margin-bottom: 15px;
display: block;
}

.feature-card h3 {
margin-bottom: 10px;
}

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

.showcase {
background: var(--bg-light);
}

.showcase-header {
text-align: center;
margin-bottom: 40px;
}

.showcase-grid {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
}

.showcase-item {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
align-items: center;
}

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

.showcase-content {
padding: 30px;
}

.showcase-content h3 {
font-size: 24px;
margin-bottom: 15px;
}

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

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

.btn-showcase:hover {
background: var(--secondary-color);
transform: translateX(5px);
}

.category-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 24px;
}

.category-item {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
border: 1px solid var(--border-color);
transition: all 0.3s;
}

.category-item:hover {
border-color: var(--primary-color);
box-shadow: 0 4px 15px rgba(99,102,241,0.1);
}

.category-icon {
font-size: 36px;
margin-bottom: 15px;
display: block;
}

.category-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

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

.trust {
background: var(--bg-white);
}

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

.trust-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-stat {
margin-bottom: 30px;
}

.trust-stat h3 {
font-size: 36px;
color: var(--primary-color);
margin-bottom: 10px;
}

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

.process {
background: var(--bg-light);
}

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

.process-step {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
position: relative;
}

.process-number {
position: absolute;
top: -15px;
left: 30px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
width: 50px;
height: 50px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 700;
box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

.process-step h3 {
margin-top: 20px;
margin-bottom: 12px;
}

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

.testimonials {
background: var(--bg-light);
}

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

.testimonial {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

.testimonial-author {
margin-top: 15px;
}

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

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

.benefits {
background: var(--bg-white);
}

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

.benefit-card {
background: var(--bg-light);
padding: 25px;
border-radius: 10px;
border-left: 4px solid var(--primary-color);
transition: all 0.3s;
}

.benefit-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-card h3 {
margin-bottom: 10px;
color: var(--text-dark);
}

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

.final-cta {
background: linear-gradient(135deg, var(--dark-color) 0%, var(--text-dark) 100%);
color: var(--bg-white);
padding: 80px 15px;
}

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

.cta-content h2 {
color: var(--bg-white);
font-size: 32px;
margin-bottom: 15px;
}

.cta-content p {
font-size: 16px;
opacity: 0.9;
margin-bottom: 30px;
line-height: 1.7;
}

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
padding: 14px 32px;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}

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

.btn-cta-primary:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(99,102,241,0.4);
}

.btn-cta-secondary {
background: transparent;
color: var(--bg-white);
border: 2px solid rgba(255,255,255,0.3);
}

.btn-cta-secondary:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.5);
}

.cta-button {
display: inline-block;
background: var(--primary-color);
color: var(--bg-white);
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

.cta-button:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(99,102,241,0.3);
}

footer {
background: var(--text-dark);
color: var(--bg-white);
padding: 40px 15px 20px;
}

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

.footer-section h4 {
font-size: 16px;
margin-bottom: 12px;
color: var(--bg-white);
}

.footer-section p,
.footer-section li {
font-size: 13px;
color: rgba(255,255,255,0.8);
line-height: 1.8;
}

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

.footer-section a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s;
}

.footer-section a:hover {
color: var(--bg-white);
}

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

.footer-bottom p {
font-size: 12px;
color: rgba(255,255,255,0.7);
}

.page-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 50px 15px;
text-align: center;
}

.page-header h1 {
font-size: 28px;
margin-bottom: 10px;
}

.page-header p {
font-size: 15px;
opacity: 0.95;
}

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

.product-card {
background: var(--bg-white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
transition: transform 0.3s;
position: relative;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.product-card.featured {
border: 2px solid var(--primary-color);
}

.badge {
position: absolute;
top: 10px;
right: 10px;
background: var(--success-color);
color: var(--bg-white);
padding: 4px 10px;
border-radius: 4px;
font-size: 11px;
font-weight: 600;
z-index: 10;
}

.product-card img {
width: 100%;
height: auto;
display: block;
}

.product-card h3 {
padding: 12px 16px 8px;
font-size: 17px;
}

.product-card p {
padding: 0 16px;
font-size: 13px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 12px;
}

.price {
display: block;
padding: 0 16px;
font-size: 20px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 12px;
}

.btn-product {
display: block;
margin: 0 16px 16px;
padding: 10px 16px;
background: var(--primary-color);
color: var(--bg-white);
text-align: center;
text-decoration: none;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

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

.updates-list {
margin-top: 24px;
}

.update-item {
background: var(--bg-white);
padding: 20px;
border-radius: 10px;
border-left: 4px solid var(--primary-color);
margin-bottom: 16px;
}

.update-date {
display: block;
font-size: 12px;
color: var(--text-light);
margin-bottom: 8px;
}

.update-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

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

.coming-soon {
background: var(--bg-light);
text-align: center;
}

.coming-soon p {
margin-bottom: 20px;
color: var(--text-light);
line-height: 1.7;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

.reason-item {
background: var(--bg-light);
padding: 25px;
border-radius: 10px;
text-align: center;
}

.reason-item h3 {
margin-bottom: 10px;
}

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

.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 24px;
}

.review-card {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.review-card p {
font-size: 14px;
color: var(--text-dark);
margin-bottom: 15px;
line-height: 1.7;
}

.reviewer {
display: block;
font-size: 13px;
color: var(--text-light);
font-weight: 600;
margin-bottom: 4px;
}

.review-date {
display: block;
font-size: 12px;
color: var(--text-light);
}

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

.contact-form-wrapper,
.contact-info-wrapper {
background: var(--bg-white);
padding: 24px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
font-size: 20px;
text-align: left;
margin-bottom: 12px;
}

.contact-form-wrapper p {
font-size: 13px;
color: var(--text-light);
margin-bottom: 20px;
}

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

label {
display: block;
font-size: 13px;
font-weight: 600;
margin-bottom: 6px;
color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 6px;
font-size: 13px;
font-family: inherit;
transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
outline: none;
border-color: var(--primary-color);
}

textarea {
resize: vertical;
}

.checkbox-group {
display: flex;
align-items: flex-start;
gap: 8px;
}

.checkbox-group input[type="checkbox"] {
margin-top: 4px;
width: 16px;
height: 16px;
cursor: pointer;
}

.checkbox-group label {
font-size: 12px;
font-weight: 400;
margin-bottom: 0;
cursor: pointer;
}

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

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

.submit-btn {
width: 100%;
padding: 12px;
background: var(--primary-color);
color: var(--bg-white);
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

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

.contact-details {
margin-top: 20px;
}

.contact-item {
margin-bottom: 20px;
}

.contact-item h3 {
font-size: 15px;
margin-bottom: 6px;
}

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

.map-wrapper {
margin-top: 20px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-list {
margin-top: 24px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.faq-item {
background: var(--bg-white);
padding: 20px;
border-radius: 10px;
margin-bottom: 16px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.faq-item h3 {
font-size: 15px;
margin-bottom: 8px;
}

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

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.thankyou-container,
.error-container {
text-align: center;
padding: 40px 20px;
}

.thankyou-content,
.error-content {
background: var(--bg-white);
padding: 40px 30px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
max-width: 500px;
margin: 0 auto;
}

.success-icon {
width: 70px;
height: 70px;
background: var(--success-color);
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
margin: 0 auto 20px;
}

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

.thankyou-content p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 12px;
line-height: 1.6;
}

.thankyou-info {
font-size: 13px;
color: var(--text-light);
margin-bottom: 24px;
}

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

.btn-primary,
.btn-secondary {
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-size: 13px;
font-weight: 600;
transition: transform 0.3s;
}

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

.btn-primary:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.btn-secondary {
background: var(--bg-light);
color: var(--text-dark);
}

.btn-secondary:hover {
background: var(--border-color);
transform: translateY(-2px);
}

.error-code {
font-size: 80px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 12px;
}

.error-content h2 {
font-size: 24px;
margin-bottom: 12px;
color: var(--text-dark);
}

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

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

.policy-page {
padding: 40px 15px;
}

.policy-page .container {
max-width: 900px;
}

.policy-page h1 {
font-size: 32px;
margin-bottom: 12px;
color: var(--text-dark);
}

.last-updated {
font-size: 13px;
color: var(--text-light);
margin-bottom: 30px;
}

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

.policy-section h2 {
font-size: 22px;
text-align: left;
margin-bottom: 16px;
color: var(--text-dark);
}

.policy-section h3 {
font-size: 17px;
margin-top: 16px;
margin-bottom: 10px;
color: var(--text-dark);
}

.policy-section p {
font-size: 14px;
line-height: 1.7;
color: var(--text-dark);
margin-bottom: 12px;
}

.policy-section ul,
.policy-section ol {
margin-left: 24px;
margin-bottom: 12px;
}

.policy-section li {
font-size: 14px;
line-height: 1.7;
color: var(--text-dark);
margin-bottom: 6px;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 16px;
z-index: 1000;
box-shadow: 0 -2px 10px 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;
margin: 0;
flex: 1;
min-width: 250px;
}

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

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

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

.privacy-buttons button:hover {
background: var(--secondary-color);
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 12px;
}
nav ul {
flex-wrap: wrap;
justify-content: center;
gap: 12px;
}
.hero-mega {
min-height: 70vh;
}
.hero-title {
font-size: 32px;
}
.hero-description {
font-size: 16px;
}
.hero-stats {
gap: 25px;
}
.stat-mini strong {
font-size: 24px;
}
.showcase-item {
grid-template-columns: 1fr;
}
.trust-content {
grid-template-columns: 1fr;
gap: 30px;
}
.shape-1,
.shape-2,
.shape-3 {
display: none;
}
h2 {
font-size: 20px;
}
.thankyou-content,
.error-content {
padding: 30px 20px;
}
.error-code {
font-size: 60px;
}
}

@media (max-width: 480px) {
body {
font-size: 13px;
}
.logo {
font-size: 16px;
}
nav a {
font-size: 12px;
}
.hero-mega {
min-height: 60vh;
}
.hero-content {
padding: 40px 15px;
}
.hero-title {
font-size: 26px;
}
.hero-description {
font-size: 14px;
}
.hero-stats {
flex-direction: column;
gap: 15px;
}
.hero-actions {
flex-direction: column;
width: 100%;
}
.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
}
section {
padding: 30px 15px;
}
h2 {
font-size: 18px;
}
.features-grid,
.products-grid,
.category-list,
.process-grid,
.testimonial-grid,
.reasons-grid,
.reviews-grid,
.benefits-grid {
grid-template-columns: 1fr;
}
.contact-grid {
grid-template-columns: 1fr;
}
.thankyou-actions,
.error-actions,
.cta-buttons {
flex-direction: column;
width: 100%;
}
.btn-primary,
.btn-secondary,
.btn-cta-primary,
.btn-cta-secondary {
width: 100%;
}
.cta-content h2 {
font-size: 24px;
}
.final-cta {
padding: 50px 15px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 10px;
}
.hero-title {
font-size: 22px;
}
.hero-badge {
font-size: 11px;
padding: 6px 15px;
}
h2 {
font-size: 16px;
}
.feature-card,
.product-card,
.category-item,
.process-step,
.benefit-card {
padding: 15px;
}
.showcase-content {
padding: 20px;
}
.trust-stat h3 {
font-size: 28px;
}
.cta-content h2 {
font-size: 20px;
}
}
