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

:root {
--primary-color: #6366f1;
--secondary-color: #8b5cf6;
--accent-color: #ec4899;
--dark-color: #1e293b;
--light-color: #f8fafc;
--text-color: #334155;
--border-color: #e2e8f0;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.2;
color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

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

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

.section-header h2 {
margin-bottom: 12px;
}

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

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

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

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

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

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

.btn-accept, .btn-learn {
padding: 8px 18px;
border-radius: 6px;
font-size: 13px;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}

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

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

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

.btn-learn:hover {
background: white;
color: var(--dark-color);
}

.header {
background: white;
padding: 14px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
z-index: 100;
}

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

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

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

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

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.4rem;
color: var(--dark-color);
cursor: pointer;
}

.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
padding: 90px 0;
position: relative;
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 0.3; }
50% { opacity: 0.6; }
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 0;
}

.shape {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(40px);
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
left: -100px;
animation: float 20s ease-in-out infinite;
}

.shape-2 {
width: 300px;
height: 300px;
top: 50%;
right: -80px;
animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
width: 250px;
height: 250px;
bottom: -50px;
left: 30%;
animation: float 18s ease-in-out infinite;
animation-delay: 2s;
}

@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-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-text {
color: white;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.25);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
margin-bottom: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.3);
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.hero-badge:hover {
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.hero-text h1 {
color: white;
margin-bottom: 20px;
font-size: 2.8rem;
text-shadow: 0 2px 20px rgba(0,0,0,0.2);
line-height: 1.2;
}

.hero-text p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.7;
text-shadow: 0 1px 10px rgba(0,0,0,0.1);
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
}

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s;
font-size: 14px;
}

.btn-primary {
background: white;
color: var(--primary-color);
position: relative;
overflow: hidden;
}

.btn-primary::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(99, 102, 241, 0.1);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
width: 300px;
height: 300px;
}

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

.btn-outline {
background: transparent;
color: white;
border: 2px solid white;
position: relative;
overflow: hidden;
z-index: 1;
}

.btn-outline::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: white;
transition: left 0.4s ease;
z-index: -1;
}

.btn-outline:hover::before {
left: 0;
}

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

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

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

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

.hero-stat {
display: flex;
flex-direction: column;
transition: transform 0.3s ease;
}

.hero-stat:hover {
transform: translateY(-5px);
}

.hero-stat strong {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 4px;
display: inline;
}

.hero-stat .counter {
display: inline;
}

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

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

.hero-image .image-wrapper {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 30px 60px rgba(0,0,0,0.4);
position: relative;
transition: transform 0.3s ease;
border: 3px solid rgba(255,255,255,0.2);
}

.hero-image .image-wrapper::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
transform: rotate(45deg);
animation: shine 3s infinite;
}

@keyframes shine {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-image:hover .image-wrapper {
transform: scale(1.02) rotate(-1deg);
}

.hero-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}

.hero-image:hover img {
transform: scale(1.05);
}

/* Animation Classes */
.animate-fade-in {
animation: fadeIn 1s ease-out forwards;
opacity: 0;
}

.animate-slide-up {
animation: slideUp 0.8s ease-out forwards;
opacity: 0;
transform: translateY(30px);
}

.delay-1 {
animation-delay: 0.2s;
}

.delay-2 {
animation-delay: 0.4s;
}

.delay-3 {
animation-delay: 0.6s;
}

.animate-float {
animation: floatImage 6s ease-in-out infinite;
}

@keyframes fadeIn {
to {
opacity: 1;
}
}

@keyframes slideUp {
to {
opacity: 1;
transform: translateY(0);
}
}

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

.features {
padding: 70px 0;
background: white;
}

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

.feature-card {
padding: 30px 25px;
border-radius: 12px;
transition: all 0.3s;
border: 1px solid var(--border-color);
}

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

.feature-icon {
margin-bottom: 18px;
}

.feature-icon svg {
stroke: var(--primary-color);
}

.feature-card h3 {
margin-bottom: 12px;
font-size: 1.15rem;
}

.feature-card p {
font-size: 14px;
line-height: 1.6;
}

.courses-preview {
padding: 70px 0;
background: var(--light-color);
}

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

.course-category {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.course-category:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.category-image {
width: 100%;
height: 240px;
overflow: hidden;
}

.category-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

.course-category:hover .category-image img {
transform: scale(1.05);
}

.category-content {
padding: 30px;
}

.category-content h3 {
margin-bottom: 15px;
}

.category-content p {
margin-bottom: 25px;
font-size: 14px;
line-height: 1.7;
}

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

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

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

.step-number {
font-size: 2.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 15px;
}

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

.step-item p {
font-size: 14px;
line-height: 1.6;
}

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

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

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

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

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

.testimonials {
padding: 70px 0;
background: white;
}

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

.testimonial-card {
background: var(--light-color);
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--primary-color);
}

.testimonial-text p {
font-style: italic;
margin-bottom: 20px;
font-size: 14px;
line-height: 1.7;
}

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

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

.career-outcomes {
padding: 70px 0;
background: var(--light-color);
}

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

.outcomes-text h2 {
margin-bottom: 20px;
}

.outcomes-text > p {
margin-bottom: 25px;
font-size: 15px;
line-height: 1.7;
}

.outcomes-list {
list-style: none;
margin-bottom: 30px;
}

.outcomes-list li {
padding-left: 30px;
margin-bottom: 12px;
position: relative;
font-size: 14px;
}

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

.outcomes-stats {
display: grid;
gap: 25px;
}

.outcome-stat {
background: white;
padding: 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.outcome-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 8px;
}

.outcome-label {
font-size: 14px;
color: var(--text-color);
}

.final-cta {
padding: 70px 0;
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

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

.cta-text {
color: white;
}

.cta-text h2 {
color: white;
margin-bottom: 15px;
}

.cta-text p {
font-size: 1.05rem;
opacity: 0.95;
line-height: 1.7;
}

.cta-action {
text-align: center;
}

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

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

.cta-note {
margin-top: 12px;
font-size: 13px;
color: white;
opacity: 0.9;
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 70px 0;
position: relative;
overflow: hidden;
}

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

.page-hero-content h1 {
color: white;
margin-bottom: 18px;
}

.page-hero-content p {
font-size: 1.05rem;
opacity: 0.95;
line-height: 1.7;
}

.products {
padding: 70px 0;
background: white;
}

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

.product-card {
background: var(--light-color);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-image {
width: 100%;
height: 220px;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-info {
padding: 28px;
}

.product-info h3 {
margin-bottom: 14px;
font-size: 1.2rem;
}

.product-info p {
font-size: 14px;
margin-bottom: 20px;
line-height: 1.7;
}

.product-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
}

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

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

.benefit-item {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.benefit-icon {
margin-bottom: 18px;
}

.benefit-icon svg {
stroke: var(--primary-color);
}

.benefit-item h3 {
margin-bottom: 12px;
font-size: 1.1rem;
}

.benefit-item p {
font-size: 14px;
line-height: 1.6;
}

.learning-path {
padding: 70px 0;
background: white;
}

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

.path-step {
text-align: center;
padding: 30px 20px;
}

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

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

.path-step p {
font-size: 14px;
line-height: 1.6;
}

.contact-hero {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 70px 0;
position: relative;
overflow: hidden;
}

.contact-section {
padding: 70px 0;
background: white;
}

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

.contact-info h2 {
margin-bottom: 15px;
}

.contact-info > p {
margin-bottom: 35px;
font-size: 14px;
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 28px;
}

.contact-item {
display: flex;
gap: 18px;
}

.contact-icon {
flex-shrink: 0;
}

.contact-icon svg {
stroke: var(--primary-color);
}

.contact-item strong {
display: block;
margin-bottom: 6px;
color: var(--dark-color);
font-size: 15px;
}

.contact-item p {
font-size: 14px;
margin: 0;
line-height: 1.6;
}

.contact-form-wrapper {
background: var(--light-color);
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

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

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

.checkbox-label input[type="checkbox"] {
width: 18px;
height: 18px;
cursor: pointer;
}

.contact-form button {
padding: 12px 30px;
background: var(--primary-color);
color: white;
border: none;
border-radius: 8px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
}

.contact-form button:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

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

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

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

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

.thankyou-icon {
font-size: 4rem;
color: var(--primary-color);
margin-bottom: 25px;
}

.thankyou-content h1, .error-content h1 {
margin-bottom: 20px;
}

.thankyou-content p, .error-content p {
font-size: 1.05rem;
margin-bottom: 35px;
line-height: 1.7;
}

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

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

.policy-section {
padding: 70px 0;
background: white;
}

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

.policy-content h1 {
margin-bottom: 10px;
}

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

.policy-content h2 {
margin-top: 35px;
margin-bottom: 15px;
font-size: 1.5rem;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 15px;
line-height: 1.7;
}

.policy-content ul, .policy-content ol {
margin-bottom: 15px;
padding-left: 25px;
}

.policy-content li {
margin-bottom: 8px;
line-height: 1.7;
}

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

.footer-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
}

.footer-links {
display: flex;
gap: 18px;
flex-wrap: wrap;
justify-content: center;
}

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

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

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

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

@media (max-width: 968px) {
.hero {
min-height: auto;
}

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

.hero-image {
max-width: 500px;
margin: 0 auto;
}

.shape-1, .shape-2, .shape-3 {
width: 200px;
height: 200px;
}

.outcomes-content {
grid-template-columns: 1fr;
gap: 40px;
}

.cta-box {
grid-template-columns: 1fr;
gap: 35px;
text-align: center;
}
}

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

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

.nav.active {
display: flex;
}

.menu-toggle {
display: block;
}

.hero {
padding: 60px 0;
}

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

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

.hero-stats {
gap: 25px;
}

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

.features, .courses-preview, .how-it-works, .stats, .testimonials, .career-outcomes, .final-cta, .products, .course-benefits, .learning-path, .contact-section, .map-section {
padding: 50px 0;
}

.features-grid, .courses-grid, .steps-grid, .stats-grid, .testimonials-grid, .products-grid, .benefits-grid, .path-steps {
grid-template-columns: 1fr;
gap: 25px;
}

.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

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

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

.privacy-buttons {
justify-content: center;
}

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

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

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

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

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

h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }

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

.hero {
padding: 50px 0;
}

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

.hero-buttons {
flex-direction: column;
gap: 12px;
}

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

.feature-card, .benefit-item, .step-item, .path-step {
padding: 25px 18px;
}

.product-info, .testimonial-card {
padding: 22px;
}

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

.thankyou-icon {
font-size: 3rem;
}

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

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

@media (max-width: 320px) {
body { font-size: 13px; }
h1 { font-size: 1.4rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.05rem; }

.logo {
font-size: 1.05rem;
}

.btn-primary, .btn-secondary, .btn-outline {
padding: 9px 20px;
font-size: 12px;
}

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

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

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

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

.product-price {
font-size: 1.6rem;
}

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

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

.btn-primary-large {
padding: 12px 28px;
font-size: 14px;
}

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

.path-step .step-number {
width: 50px;
height: 50px;
font-size: 1.3rem;
}
}
