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

:root {
--primary: #1a1d3f;
--secondary: #6366f1;
--accent: #f59e0b;
--tertiary: #10b981;
--text: #1f2937;
--light: #f9fafb;
--white: #ffffff;
--gray: #6b7280;
}

body {
font-family: 'Crimson Pro', serif;
color: var(--text);
line-height: 1.6;
font-size: 16px;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
line-height: 1.2;
}

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

.header-unique {
background: var(--white);
padding: 18px 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}

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

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

.nav-menu {
display: flex;
gap: 30px;
}

.nav-menu a {
color: var(--text);
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: color 0.3s;
font-family: 'Space Grotesk', sans-serif;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
color: var(--primary);
cursor: pointer;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary);
color: var(--white);
padding: 16px;
z-index: 9999;
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;
font-size: 14px;
}

.privacy-content a {
color: var(--accent);
text-decoration: underline;
}

#acceptPrivacy {
background: var(--accent);
color: var(--white);
border: none;
padding: 10px 24px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 13px;
white-space: nowrap;
}

.hero-mega {
position: relative;
background: linear-gradient(135deg, var(--primary) 0%, #2d3166 100%);
padding: 80px 0 100px;
overflow: hidden;
}

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

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: var(--secondary);
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--accent);
bottom: -80px;
left: -80px;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--tertiary);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

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

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

.hero-badge {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
border: 1px solid rgba(255,255,255,0.2);
}

.hero-text h1 {
font-size: 48px;
margin-bottom: 20px;
line-height: 1.1;
}

.hero-text p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
line-height: 1.6;
}

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

.btn-primary {
display: inline-block;
background: var(--accent);
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: transform 0.3s, box-shadow 0.3s;
font-family: 'Space Grotesk', sans-serif;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid rgba(255,255,255,0.3);
transition: background 0.3s, border-color 0.3s;
font-family: 'Space Grotesk', sans-serif;
}

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

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

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

.stat-number {
font-size: 32px;
font-weight: 700;
color: var(--accent);
font-family: 'Space Grotesk', sans-serif;
}

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

.hero-visual {
position: relative;
}

.hero-card {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-card.floating {
animation: floating 3s ease-in-out infinite;
}

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

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

.hero-text-center {
text-align: center;
color: var(--white);
max-width: 800px;
margin: 0 auto;
}

.hero-text-center h1 {
font-size: 48px;
margin-bottom: 20px;
}

.hero-text-center p {
font-size: 18px;
opacity: 0.9;
}

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

.section-header.centered {
text-align: center;
}

.section-tag {
display: inline-block;
color: var(--secondary);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
font-family: 'Space Grotesk', sans-serif;
}

.section-header h2 {
font-size: 38px;
color: var(--primary);
margin-bottom: 15px;
}

.section-header p {
font-size: 17px;
color: var(--gray);
max-width: 700px;
margin: 0 auto;
}

.methodology-section {
padding: 80px 0;
background: var(--light);
}

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

.method-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
transition: transform 0.3s, box-shadow 0.3s;
border: 1px solid #e5e7eb;
}

.method-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.method-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.method-icon i {
font-size: 28px;
color: var(--white);
}

.method-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary);
}

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

.transformation-section {
padding: 80px 0;
}

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

.transformation-wrapper.reverse {
direction: rtl;
}

.transformation-wrapper.reverse > * {
direction: ltr;
}

.transformation-content h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--primary);
}

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

.transformation-features {
margin: 30px 0;
display: flex;
flex-direction: column;
gap: 15px;
}

.feature-item {
display: flex;
align-items: center;
gap: 12px;
}

.feature-item i {
font-size: 22px;
color: var(--tertiary);
}

.feature-item span {
font-size: 15px;
color: var(--text);
font-weight: 500;
}

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

.btn-secondary {
display: inline-block;
background: var(--secondary);
color: var(--white);
padding: 12px 30px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: opacity 0.3s;
font-family: 'Space Grotesk', sans-serif;
margin-top: 10px;
}

.btn-secondary:hover {
opacity: 0.9;
}

.resources-section {
padding: 80px 0;
background: var(--light);
}

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

.resource-card {
background: var(--white);
padding: 40px;
border-radius: 12px;
text-align: center;
border: 2px solid #e5e7eb;
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
}

.resource-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.resource-card.featured {
border-color: var(--accent);
}

.resource-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--accent);
color: var(--white);
padding: 4px 12px;
border-radius: 12px;
font-size: 12px;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
}

.resource-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.resource-icon i {
font-size: 32px;
color: var(--white);
}

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

.resource-card p {
font-size: 15px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.6;
}

.resource-price {
margin: 25px 0;
}

.price-amount {
display: block;
font-size: 36px;
font-weight: 700;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
}

.price-period {
font-size: 13px;
color: var(--gray);
}

.resource-btn {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 28px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: background 0.3s;
font-family: 'Space Grotesk', sans-serif;
}

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

.testimonials-modern {
padding: 80px 0;
}

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

.testimonial-modern {
background: var(--white);
padding: 35px;
border-radius: 12px;
border-left: 4px solid var(--accent);
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 15px;
}

.testimonial-rating i {
color: var(--accent);
font-size: 16px;
}

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

.testimonial-author-modern {
display: flex;
align-items: center;
gap: 15px;
}

.author-info strong {
display: block;
font-size: 15px;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 3px;
}

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

.insights-section {
padding: 80px 0;
background: var(--light);
}

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

.insights-content h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--primary);
}

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

.insights-stats {
display: grid;
gap: 20px;
}

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

.stat-big {
display: block;
font-size: 42px;
font-weight: 700;
color: var(--secondary);
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 10px;
}

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

.approach-section {
padding: 80px 0;
}

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

.approach-card {
background: var(--white);
padding: 40px;
border-radius: 12px;
border: 2px solid #e5e7eb;
transition: border-color 0.3s;
}

.approach-card:hover {
border-color: var(--secondary);
}

.approach-number {
display: inline-block;
font-size: 48px;
font-weight: 700;
color: var(--accent);
opacity: 0.3;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 15px;
}

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

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

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary) 0%, #2d3166 100%);
text-align: center;
}

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

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

.cta-content p {
font-size: 17px;
color: rgba(255,255,255,0.9);
margin-bottom: 30px;
}

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

.btn-cta-large:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.cta-note {
display: block;
margin-top: 15px;
font-size: 13px;
color: rgba(255,255,255,0.7);
}

.contact-main-modern {
padding: 80px 0;
}

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

.contact-form-modern h2 {
font-size: 32px;
margin-bottom: 10px;
color: var(--primary);
}

.form-subtitle {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
}

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

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

.form-group-modern label {
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--text);
font-family: 'Space Grotesk', sans-serif;
}

.form-group-modern input,
.form-group-modern textarea {
padding: 14px;
border: 2px solid #e5e7eb;
border-radius: 8px;
font-size: 15px;
font-family: 'Crimson Pro', serif;
transition: border-color 0.3s;
}

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

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

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

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

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

.btn-submit-modern {
background: var(--accent);
color: var(--white);
padding: 14px 32px;
border: none;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s;
font-family: 'Space Grotesk', sans-serif;
}

.btn-submit-modern:hover {
transform: translateY(-2px);
}

.contact-info-modern h2 {
font-size: 28px;
margin-bottom: 30px;
color: var(--primary);
}

.info-cards {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.info-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.info-icon i {
font-size: 24px;
color: var(--white);
}

.info-text h3 {
font-size: 16px;
margin-bottom: 5px;
color: var(--primary);
}

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

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

.map-section-modern h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
color: var(--primary);
}

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

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

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

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

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

.policy-content h3 {
font-size: 19px;
margin-top: 20px;
margin-bottom: 12px;
color: var(--secondary);
}

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

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

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

.thankyou-content i {
font-size: 70px;
color: var(--tertiary);
margin-bottom: 25px;
}

.thankyou-content h1 {
font-size: 34px;
margin-bottom: 20px;
color: var(--primary);
}

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

.error-content h1 {
font-size: 100px;
color: var(--secondary);
margin-bottom: 15px;
}

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

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

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

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

.footer-info p {
font-size: 14px;
}

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

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

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

@media (max-width: 968px) {
.hero-grid,
.transformation-wrapper,
.insights-wrapper,
.contact-grid-modern {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text h1,
.hero-text-center h1 {
font-size: 36px;
}

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

@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 65px;
left: -100%;
width: 100%;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
transition: left 0.3s;
gap: 15px;
}

.nav-menu.active {
left: 0;
}

.menu-toggle {
display: block;
}

.hero-mega {
padding: 60px 0 70px;
}

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

.hero-text p {
font-size: 16px;
}

.hero-stats {
gap: 25px;
}

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

.methodology-grid,
.resources-grid,
.testimonials-grid-modern,
.approach-grid {
grid-template-columns: 1fr;
}

.transformation-content h2,
.insights-content h2 {
font-size: 28px;
}

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

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

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

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

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

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

.hero-text p {
font-size: 15px;
}

.hero-buttons {
flex-direction: column;
}

.btn-primary,
.btn-outline,
.btn-secondary,
.btn-cta-large {
width: 100%;
text-align: center;
}

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

.method-card,
.resource-card,
.testimonial-modern,
.approach-card {
padding: 25px;
}

.stat-item {
flex: 1 1 100%;
}

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

.transformation-features {
gap: 12px;
}

.feature-item {
font-size: 14px;
}

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

.contact-form-modern h2 {
font-size: 26px;
}
}

@media (max-width: 360px) {
.hero-text h1 {
font-size: 24px;
}

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

.logo {
font-size: 16px;
}

.method-icon,
.resource-icon {
width: 50px;
height: 50px;
}

.method-icon i,
.resource-icon i {
font-size: 24px;
}
}

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

.hero-text h1 {
font-size: 22px;
}

.hero-text p {
font-size: 14px;
}

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

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

.method-card h3,
.resource-card h3 {
font-size: 18px;
}

.price-amount {
font-size: 30px;
}

.stat-big {
font-size: 36px;
}
}

.hero-simple {
background: linear-gradient(135deg, var(--primary) 0%, #2d3166 100%);
padding: 80px 0;
position: relative;
overflow: hidden;
}

.hero-simple::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
pointer-events: none;
}

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

.hero-content-simple {
color: var(--white);
}

.hero-label {
display: inline-block;
background: rgba(245, 158, 11, 0.2);
color: var(--accent);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-content-simple h1 {
font-size: 54px;
margin-bottom: 20px;
line-height: 1.1;
color: var(--white);
}

.hero-content-simple p {
font-size: 17px;
margin-bottom: 32px;
opacity: 0.9;
line-height: 1.6;
}

.hero-buttons-simple {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.hero-image-simple img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
.hero-simple {
padding: 60px 0;
}

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

.hero-image-simple {
order: 2;
}

.hero-content-simple {
order: 1;
}

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

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

.hero-simple {
padding: 70px 0;
}

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

.hero-content-simple p {
font-size: 17px;
}
}

@media (max-width: 480px) {
.hero-content-simple h1 {
font-size: 28px;
}

.hero-buttons-simple {
flex-direction: column;
}

.hero-buttons-simple .btn-primary,
.hero-buttons-simple .btn-outline {
width: 100%;
}

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

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

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

.hero-buttons-simple .btn-primary,
.hero-buttons-simple .btn-outline {
width: 100%;
}
}

@media (max-width: 320px) {
.hero-content-simple h1 {
font-size: 24px;
}

.hero-content-simple p {
font-size: 15px;
}

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

.hero-content-simple p {
font-size: 15px;
}
}

.hero-decoration {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
pointer-events: none;
}

.deco-circle {
position: absolute;
border-radius: 50%;
background: rgba(245, 158, 11, 0.08);
}

.deco-1 {
width: 300px;
height: 300px;
top: -100px;
right: 10%;
}

.deco-2 {
width: 200px;
height: 200px;
bottom: -50px;
left: 5%;
background: rgba(99, 102, 241, 0.08);
}

.image-frame {
position: relative;
}

.image-frame img {
position: relative;
z-index: 2;
}

.image-accent {
position: absolute;
top: 20px;
left: -20px;
right: 20px;
bottom: -20px;
background: linear-gradient(135deg, var(--accent), var(--secondary));
border-radius: 12px;
z-index: 1;
opacity: 0.15;
}

.hero-label i {
font-size: 14px;
margin-right: 6px;
}

.hero-content-simple h1 .highlight {
color: var(--accent);
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 8px;
}

.btn-primary i {
font-size: 18px;
transition: transform 0.3s;
}

.btn-primary:hover i {
transform: translateX(4px);
}

.hero-stats-mini {
display: flex;
gap: 30px;
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.15);
}

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

.stat-num {
font-size: 24px;
font-weight: 700;
color: var(--accent);
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 4px;
}

.stat-text {
font-size: 12px;
color: rgba(255,255,255,0.7);
text-transform: uppercase;
letter-spacing: 0.5px;
}

@media (max-width: 768px) {
.deco-1, .deco-2 {
display: none;
}

.image-accent {
display: none;
}

.hero-stats-mini {
gap: 20px;
margin-top: 30px;
padding-top: 20px;
}
}

@media (max-width: 480px) {
.hero-stats-mini {
flex-wrap: wrap;
}

.stat-mini {
flex: 1 1 30%;
}
}
