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

:root {
--primary-color: #1a252f;
--secondary-color: #d4af37;
--accent-color: #e8b923;
--text-dark: #1a1a1a;
--text-light: #666;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #e0e0e0;
}

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

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

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

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

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

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

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

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

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

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

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

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

.privacy-actions button {
background: var(--secondary-color);
color: var(--bg-white);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.privacy-actions button:hover {
background: #c0392b;
}

.header {
background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
padding: 12px 0;
position: relative;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--bg-white);
letter-spacing: -0.5px;
}

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

.nav a {
color: var(--bg-white);
font-size: 14px;
font-weight: 500;
padding: 8px 0;
position: relative;
}

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

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

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

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

.hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #1a252f 100%);
overflow: hidden;
padding: 100px 0 80px;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
pointer-events: none;
}

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

.shape {
position: absolute;
border-radius: 50%;
background: rgba(212,175,55,0.08);
animation: float 20s infinite ease-in-out;
}

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

.shape-2 {
width: 300px;
height: 300px;
bottom: -50px;
left: 5%;
animation-delay: 7s;
}

.shape-3 {
width: 200px;
height: 200px;
top: 40%;
right: 5%;
animation-delay: 14s;
}

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

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

.hero-text {
color: var(--bg-white);
}

.hero-badge {
display: inline-block;
background: rgba(212,175,55,0.15);
color: var(--secondary-color);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid rgba(212,175,55,0.3);
}

.hero-text h1 {
font-size: 3.5rem;
line-height: 1.15;
margin-bottom: 25px;
color: var(--bg-white);
}

.hero-text .highlight {
color: var(--secondary-color);
position: relative;
display: inline-block;
}

.hero-text p {
font-size: 1.15rem;
line-height: 1.7;
margin-bottom: 35px;
opacity: 0.9;
max-width: 550px;
}

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

.btn-outline {
display: inline-block;
background: transparent;
color: var(--bg-white);
padding: 12px 30px;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.3s ease;
}

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

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

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 2rem;
color: var(--secondary-color);
font-weight: 700;
line-height: 1;
margin-bottom: 5px;
}

.stat-item span {
font-size: 14px;
opacity: 0.8;
color: var(--bg-white);
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
border: 3px solid rgba(212,175,55,0.2);
}

.btn-primary {
display: inline-block;
background: var(--secondary-color);
color: var(--primary-color);
padding: 12px 30px;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
background: var(--accent-color);
border-color: var(--accent-color);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary-color);
padding: 12px 30px;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--primary-color);
transition: all 0.3s ease;
}

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

.features {
padding: 60px 0;
background: var(--bg-light);
}

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

.feature-card {
background: var(--bg-white);
padding: 30px 25px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
border-top: 3px solid var(--secondary-color);
}

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

.feature-card h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--primary-color);
}

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

.learning-approach {
padding: 70px 0;
background: var(--bg-light);
}

.learning-approach h2 {
text-align: center;
margin-bottom: 50px;
color: var(--primary-color);
font-size: 2.2rem;
}

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

.approach-card {
background: var(--bg-white);
padding: 35px 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border-top: 3px solid var(--secondary-color);
}

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

.approach-number {
font-size: 3rem;
font-weight: 700;
color: rgba(212,175,55,0.2);
line-height: 1;
margin-bottom: 15px;
}

.approach-card h3 {
margin-bottom: 12px;
color: var(--primary-color);
}

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

.student-work {
padding: 70px 0;
}

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

.student-work-text h2 {
margin-bottom: 20px;
color: var(--primary-color);
font-size: 2rem;
}

.student-work-text p {
margin-bottom: 15px;
color: var(--text-light);
line-height: 1.7;
}

.student-work-text .btn-secondary {
margin-top: 15px;
}

.student-work-image img {
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.enrollment-process {
padding: 70px 0;
background: var(--bg-light);
}

.enrollment-process h2 {
text-align: center;
margin-bottom: 50px;
color: var(--primary-color);
font-size: 2.2rem;
}

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

.process-step {
text-align: center;
padding: 30px 20px;
background: var(--bg-white);
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.process-step h3 {
margin-bottom: 12px;
color: var(--primary-color);
font-size: 1.2rem;
}

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

.about {
padding: 70px 0;
}

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

.about-text h2 {
margin-bottom: 20px;
color: var(--primary-color);
}

.about-text p {
margin-bottom: 15px;
color: var(--text-light);
line-height: 1.7;
}

.about-text .btn-secondary {
margin-top: 15px;
}

.about-image img {
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.courses-preview {
padding: 60px 0;
background: var(--bg-light);
text-align: center;
}

.courses-preview h2 {
margin-bottom: 40px;
color: var(--primary-color);
}

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

.course-preview-card {
background: var(--bg-white);
padding: 35px 25px;
border-radius: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
border-left: 4px solid var(--secondary-color);
}

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

.course-preview-card h3 {
margin-bottom: 12px;
color: var(--primary-color);
}

.course-preview-card p {
font-size: 14px;
color: var(--text-light);
}

.testimonials {
padding: 70px 0;
}

.testimonials h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

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

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

.testimonial-card p {
font-style: italic;
margin-bottom: 20px;
color: var(--text-dark);
line-height: 1.6;
}

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

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

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
text-align: center;
color: var(--bg-white);
position: relative;
overflow: hidden;
}

.final-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
opacity: 0.3;
}

.final-cta-content {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
}

.final-cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--bg-white);
}

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

.final-cta .btn-primary {
padding: 15px 40px;
font-size: 16px;
}

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

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

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
}

.products {
padding: 60px 0;
}

.products h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

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

.product-card {
background: var(--bg-white);
border: 2px solid var(--border-color);
border-radius: 10px;
padding: 35px 30px;
transition: all 0.3s ease;
position: relative;
}

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

.product-card.featured {
border-color: var(--secondary-color);
box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

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

.product-card h3 {
text-align: center;
margin-bottom: 15px;
color: var(--primary-color);
}

.product-card > p {
text-align: center;
color: var(--text-light);
margin-bottom: 20px;
font-size: 14px;
line-height: 1.6;
}

.product-features {
list-style: none;
margin: 25px 0;
}

.product-features li {
padding: 8px 0;
font-size: 14px;
color: var(--text-dark);
padding-left: 20px;
position: relative;
}

.product-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: 700;
}

.product-price {
text-align: center;
font-size: 2rem;
font-weight: 700;
color: var(--secondary-color);
margin: 25px 0;
}

.product-card .btn-primary {
width: 100%;
text-align: center;
}

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

.benefits h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

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

.benefit-item {
background: var(--bg-white);
padding: 30px 25px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
border-bottom: 3px solid var(--secondary-color);
}

.benefit-item h3 {
font-size: 1.1rem;
margin-bottom: 10px;
color: var(--primary-color);
}

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

.enrollment-cta {
padding: 60px 0;
text-align: center;
}

.enrollment-content h2 {
margin-bottom: 15px;
color: var(--primary-color);
}

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

.success-stories {
padding: 60px 0;
}

.story-card {
background: var(--bg-light);
padding: 40px;
border-radius: 10px;
margin-bottom: 30px;
border-left: 5px solid var(--secondary-color);
}

.story-content h2 {
color: var(--primary-color);
margin-bottom: 15px;
font-size: 1.6rem;
}

.story-author {
font-size: 14px;
color: var(--text-light);
margin-bottom: 20px;
}

.story-author strong {
color: var(--primary-color);
font-size: 15px;
}

.story-content p {
color: var(--text-dark);
margin-bottom: 15px;
line-height: 1.7;
}

.story-stats {
display: flex;
gap: 30px;
margin-top: 25px;
flex-wrap: wrap;
}

.stat {
display: flex;
align-items: center;
background: rgba(212,175,55,0.1);
padding: 10px 20px;
border-radius: 5px;
}

.stat span {
font-size: 14px;
font-weight: 600;
color: var(--primary-color);
}

.success-cta {
padding: 60px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
text-align: center;
color: var(--bg-white);
}

.success-cta .cta-content h2 {
color: var(--bg-white);
}

.contact-section {
padding: 60px 0;
}

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

.contact-form-container h2,
.contact-info-container h2 {
color: var(--primary-color);
margin-bottom: 20px;
}

.form-intro {
color: var(--text-light);
margin-bottom: 25px;
font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

.contact-form button {
align-self: flex-start;
}

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

.info-item {
display: flex;
gap: 15px;
padding: 20px;
background: var(--bg-light);
border-radius: 8px;
border-left: 3px solid var(--secondary-color);
}

.info-item strong {
display: block;
color: var(--primary-color);
margin-bottom: 5px;
font-size: 15px;
}

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

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

.map-section h2 {
text-align: center;
margin-bottom: 30px;
color: var(--primary-color);
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thankyou-main,
.error-main {
min-height: calc(100vh - 160px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-section,
.error-section {
padding: 60px 0;
text-align: center;
}

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

.thankyou-content h1,
.error-content h1 {
color: var(--primary-color);
margin-bottom: 20px;
}

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

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

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--secondary-color);
line-height: 1;
margin-bottom: 20px;
}

.policy-section {
padding: 60px 0;
}

.policy-section h1 {
color: var(--primary-color);
margin-bottom: 10px;
}

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

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

.policy-content h2 {
color: var(--primary-color);
margin-top: 35px;
margin-bottom: 15px;
font-size: 1.5rem;
}

.policy-content p {
color: var(--text-dark);
margin-bottom: 15px;
line-height: 1.7;
}

.policy-content ul {
margin: 15px 0 15px 25px;
}

.policy-content li {
color: var(--text-dark);
margin-bottom: 8px;
line-height: 1.6;
}

.policy-content strong {
color: var(--primary-color);
}

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

.footer {
background: var(--primary-color);
color: var(--bg-white);
padding: 25px 0;
margin-top: auto;
}

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

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

.footer-links a {
color: var(--bg-white);
font-size: 13px;
opacity: 0.9;
transition: opacity 0.3s ease;
}

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

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

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

.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-color);
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.nav.active {
max-height: 300px;
padding: 15px 0;
}

.nav a {
padding: 12px 20px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero {
min-height: auto;
padding: 60px 0 50px;
}

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

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

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

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

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

.stat-item strong {
font-size: 1.6rem;
}

.about-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.about-wrapper .about-image {
order: -1;
}

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

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

.features-grid,
.courses-grid,
.testimonials-grid,
.benefits-grid,
.approach-grid {
grid-template-columns: 1fr;
}

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

.process-timeline {
grid-template-columns: 1fr;
}

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

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

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

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

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

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

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

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

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

.hero-stats {
gap: 25px;
}

.stat-item strong {
font-size: 1.4rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 10px 25px;
font-size: 14px;
width: 100%;
text-align: center;
}

.hero-buttons {
width: 100%;
}

.hero-buttons a {
width: 100%;
}

.feature-card,
.benefit-item,
.course-preview-card {
padding: 25px 20px;
}

.product-card {
padding: 25px 20px;
}

.story-card {
padding: 25px 20px;
}

.approach-card {
padding: 25px 20px;
}

.process-step {
padding: 25px 15px;
}

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

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

.final-cta p {
font-size: 1rem;
}
}

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

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

.logo {
font-size: 1.2rem;
}

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

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

.hero-badge {
font-size: 11px;
padding: 6px 15px;
}

.stat-item strong {
font-size: 1.2rem;
}

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

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

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

.process-icon {
width: 50px;
height: 50px;
font-size: 1.3rem;
}

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

.final-cta p {
font-size: 0.95rem;
}
}
