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

:root {
--primary: #0066FF;
--secondary: #00D4FF;
--dark: #0A1628;
--accent: #FF6B35;
}

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

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

h1 { font-size: clamp(1.75rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.1rem); }

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;
}

.header-unique {
padding: 18px 0;
background: #ffffff;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

.nav-menu a {
font-size: 14px;
font-weight: 500;
color: var(--dark);
position: relative;
white-space: nowrap;
}

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

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

.menu-toggle span {
width: 25px;
height: 3px;
background: var(--dark);
border-radius: 2px;
transition: all 0.3s ease;
}

.mega-hero {
position: relative;
padding: clamp(60px, 10vw, 100px) 0 clamp(50px, 8vw, 80px);
overflow: hidden;
background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

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

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

.hero-shape.shape-1 {
width: clamp(200px, 40vw, 400px);
height: clamp(200px, 40vw, 400px);
background: linear-gradient(135deg, var(--primary), var(--secondary));
top: -100px;
right: -100px;
}

.hero-shape.shape-2 {
width: clamp(150px, 30vw, 300px);
height: clamp(150px, 30vw, 300px);
background: linear-gradient(135deg, var(--secondary), var(--primary));
bottom: -80px;
left: -80px;
}

.hero-shape.shape-3 {
width: clamp(100px, 20vw, 200px);
height: clamp(100px, 20vw, 200px);
background: var(--accent);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0.3;
}

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

.hero-badge {
display: inline-block;
padding: 8px 20px;
background: rgba(255,255,255,0.9);
border-radius: 30px;
font-size: clamp(12px, 2vw, 13px);
font-weight: 600;
color: var(--primary);
margin-bottom: 25px;
}

.mega-hero-content h1 {
margin-bottom: 20px;
color: var(--dark);
}

.mega-hero-content p {
font-size: clamp(15px, 3vw, 17px);
color: #4a5568;
margin-bottom: 35px;
line-height: 1.7;
}

.hero-cta-group {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 50px;
}

.btn-hero-primary, .btn-hero-secondary {
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: clamp(14px, 2.5vw, 15px);
display: inline-block;
text-align: center;
min-width: 180px;
}

.btn-hero-primary {
background: var(--primary);
color: #ffffff;
border: 2px solid var(--primary);
}

.btn-hero-primary:hover {
background: #0052cc;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,102,255,0.3);
}

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

.btn-hero-secondary:hover {
background: var(--primary);
color: #ffffff;
}

.hero-stats {
display: flex;
gap: clamp(20px, 5vw, 40px);
justify-content: center;
flex-wrap: wrap;
}

.stat-box {
text-align: center;
min-width: 100px;
}

.stat-value {
font-size: clamp(1.8rem, 5vw, 2.2rem);
font-weight: 700;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 5px;
}

.stat-label {
font-size: clamp(12px, 2vw, 13px);
color: #64748b;
}

.expertise-section, .visual-story-section, .packages-section, 
.case-insights-section, .why-choose-section, .industries-section,
.approach-detail-section, .benefits-showcase-section, 
.contact-main-section, .map-section {
padding: clamp(50px, 10vw, 80px) 0;
}

.section-intro-text {
max-width: 700px;
margin-bottom: 50px;
}

.section-intro-text.centered {
text-align: center;
margin-left: auto;
margin-right: auto;
}

.section-label {
display: inline-block;
padding: 6px 16px;
background: #e6f2ff;
color: var(--primary);
border-radius: 20px;
font-size: clamp(12px, 2vw, 13px);
font-weight: 600;
margin-bottom: 15px;
}

.section-intro-text h2 {
margin-bottom: 15px;
}

.section-intro-text p {
color: #64748b;
font-size: clamp(14px, 2.5vw, 16px);
line-height: 1.7;
}

.expertise-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
gap: 25px;
}

.expertise-card {
background: #ffffff;
padding: clamp(25px, 5vw, 35px);
border-radius: 12px;
border: 1px solid #e2e8f0;
position: relative;
transition: all 0.3s ease;
}

.expertise-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

.card-number {
position: absolute;
top: 20px;
right: 20px;
font-size: clamp(2rem, 6vw, 3rem);
font-weight: 700;
color: #1e518c;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
}

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

.expertise-card p {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
line-height: 1.7;
}

.visual-story-grid {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
align-items: center;
}

.visual-story-grid.reverse {
direction: ltr;
}

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

.story-image img {
border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
width: 100%;
}

.story-content h2 {
margin-bottom: 20px;
}

.story-content p {
color: #64748b;
margin-bottom: 15px;
line-height: 1.7;
font-size: clamp(14px, 2vw, 15px);
}

.story-highlight {
background: #fff4ed;
border-left: 4px solid var(--accent);
padding: 20px;
margin-top: 25px;
border-radius: 6px;
}

.story-highlight p {
margin: 0;
color: var(--dark);
font-weight: 500;
font-size: clamp(14px, 2vw, 15px);
}

.story-points {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 25px;
}

.point-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

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

.point-icon svg {
color: #ffffff;
width: 24px;
height: 24px;
}

.point-text h4 {
margin-bottom: 6px;
}

.point-text p {
font-size: clamp(13px, 2vw, 14px);
margin: 0;
}

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

.package-card {
background: #ffffff;
border: 2px solid #e2e8f0;
border-radius: 16px;
padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
position: relative;
transition: all 0.3s ease;
}

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

.package-card.featured {
border-color: var(--primary);
background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.package-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: #ffffff;
padding: 6px 20px;
border-radius: 20px;
font-size: clamp(11px, 2vw, 12px);
font-weight: 600;
white-space: nowrap;
}

.package-tier {
font-size: clamp(1.2rem, 3vw, 1.4rem);
font-weight: 700;
color: var(--dark);
margin-bottom: 15px;
}

.package-price {
margin-bottom: 15px;
}

.currency {
font-size: clamp(1.2rem, 3vw, 1.5rem);
color: var(--primary);
font-weight: 600;
}

.amount {
font-size: clamp(2.2rem, 6vw, 3rem);
font-weight: 700;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
}

.package-desc {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid #e2e8f0;
line-height: 1.6;
}

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

.package-features li {
padding: 10px 0;
font-size: clamp(13px, 2vw, 14px);
color: #64748b;
position: relative;
padding-left: 25px;
}

.package-features li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

.btn-package {
display: block;
text-align: center;
padding: 12px;
background: var(--primary);
color: #ffffff;
border-radius: 8px;
font-weight: 600;
font-size: clamp(13px, 2vw, 14px);
transition: all 0.3s ease;
}

.btn-package:hover {
background: #0052cc;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,102,255,0.3);
}

.insights-layout {
max-width: 1000px;
margin: 0 auto;
}

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

.insights-header h2 {
margin-bottom: 15px;
}

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

.insight-card {
background: #ffffff;
padding: clamp(25px, 5vw, 35px);
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
}

.insight-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

.insight-metric {
font-size: clamp(2rem, 6vw, 3rem);
font-weight: 700;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 15px;
line-height: 1;
}

.insight-card h3 {
margin-bottom: 12px;
}

.insight-card p {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
line-height: 1.7;
margin-bottom: 20px;
}

.insight-client {
font-size: clamp(12px, 2vw, 13px);
color: var(--dark);
font-weight: 600;
font-style: italic;
}

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

.why-content h2 {
margin-bottom: 20px;
}

.why-content > p {
color: #64748b;
margin-bottom: 30px;
line-height: 1.7;
font-size: clamp(14px, 2vw, 15px);
}

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

.why-item h4 {
margin-bottom: 8px;
color: var(--dark);
}

.why-item p {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
line-height: 1.7;
}

.visual-stats-card {
background: linear-gradient(135deg, var(--primary), var(--secondary));
padding: clamp(30px, 6vw, 50px);
border-radius: 16px;
display: flex;
flex-direction: column;
gap: 30px;
}

.vstat {
text-align: center;
}

.vstat-number {
font-size: clamp(2.2rem, 6vw, 3rem);
font-weight: 700;
color: #ffffff;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 10px;
line-height: 1;
}

.vstat-text {
color: #ffffff;
font-size: clamp(13px, 2vw, 14px);
opacity: 0.95;
}

.industries-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
gap: 25px;
}

.industry-item {
background: #ffffff;
padding: clamp(20px, 4vw, 30px);
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
}

.industry-item:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
border-color: var(--primary);
}

.industry-item h3 {
margin-bottom: 10px;
color: var(--primary);
}

.industry-item p {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
line-height: 1.7;
}

.final-cta-section {
padding: clamp(50px, 10vw, 80px) 0;
background: linear-gradient(135deg, var(--dark) 0%, #1a2942 100%);
}

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

.final-cta-content h2 {
margin-bottom: 20px;
color: #ffffff;
}

.final-cta-content p {
font-size: clamp(15px, 3vw, 17px);
margin-bottom: 30px;
opacity: 0.9;
line-height: 1.7;
}

.btn-final-cta {
display: inline-block;
padding: 16px 40px;
background: var(--accent);
color: #ffffff;
border-radius: 8px;
font-weight: 600;
font-size: clamp(14px, 2.5vw, 16px);
transition: all 0.3s ease;
}

.btn-final-cta:hover {
background: #ff5722;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.cta-note {
margin-top: 20px;
font-size: clamp(12px, 2vw, 13px);
opacity: 0.7;
}

.approach-detail-section {
background: #f8fafc;
}

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

.approach-card {
background: #ffffff;
padding: clamp(25px, 5vw, 35px);
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
}

.approach-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

.approach-number {
display: inline-block;
padding: 6px 16px;
background: var(--primary);
color: #ffffff;
border-radius: 20px;
font-size: clamp(11px, 2vw, 12px);
font-weight: 600;
margin-bottom: 15px;
}

.approach-card h3 {
margin-bottom: 12px;
}

.approach-card p {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
line-height: 1.7;
}

.benefits-layout {
max-width: 1000px;
margin: 0 auto;
}

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

.benefits-header h2 {
margin-bottom: 15px;
}

.benefits-header p {
color: #64748b;
font-size: clamp(14px, 2.5vw, 16px);
}

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

.benefit-showcase-item {
background: #ffffff;
padding: clamp(25px, 5vw, 35px);
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
}

.benefit-showcase-item:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

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

.benefit-icon-modern svg {
color: #ffffff;
width: 28px;
height: 28px;
}

.benefit-showcase-item h3 {
margin-bottom: 12px;
}

.benefit-showcase-item p {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
line-height: 1.7;
}

.page-hero-modern {
position: relative;
padding: clamp(60px, 10vw, 80px) 0;
overflow: hidden;
background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.hero-modern-content {
position: relative;
z-index: 1;
max-width: 700px;
text-align: center;
margin: 0 auto;
}

.hero-modern-content h1 {
margin-bottom: 20px;
}

.hero-modern-content p {
font-size: clamp(15px, 3vw, 17px);
color: #4a5568;
line-height: 1.7;
}

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

.form-header {
margin-bottom: 35px;
}

.form-header h2 {
margin-bottom: 10px;
}

.form-header p {
color: #64748b;
font-size: clamp(14px, 2vw, 15px);
}

.modern-form {
background: #f8fafc;
padding: clamp(25px, 5vw, 40px);
border-radius: 12px;
}

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

.form-field label {
display: block;
margin-bottom: 8px;
font-weight: 500;
font-size: clamp(13px, 2vw, 14px);
color: var(--dark);
}

.form-field input,
.form-field textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: clamp(13px, 2vw, 14px);
background: #ffffff;
transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

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

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

.checkbox-field input[type="checkbox"] {
margin-top: 4px;
min-width: 16px;
}

.checkbox-field label {
font-size: clamp(12px, 2vw, 13px);
color: #64748b;
line-height: 1.6;
}

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

.btn-form-submit {
width: 100%;
padding: 14px;
background: var(--primary);
color: #ffffff;
border: none;
border-radius: 8px;
font-weight: 600;
font-size: clamp(14px, 2.5vw, 15px);
cursor: pointer;
transition: all 0.3s ease;
}

.btn-form-submit:hover {
background: #0052cc;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,102,255,0.3);
}

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

.info-card {
background: #f8fafc;
padding: clamp(20px, 4vw, 25px);
border-radius: 12px;
}

.info-card h3 {
margin-bottom: 12px;
color: var(--dark);
font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.info-card p {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
line-height: 1.7;
margin: 0;
word-break: break-word;
}

.info-note {
display: block;
margin-top: 8px;
font-size: clamp(12px, 2vw, 13px);
color: #94a3b8;
}

.map-section {
background: #f8fafc;
}

.map-section h2 {
text-align: center;
margin-bottom: 40px;
}

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

.map-container iframe {
width: 100%;
height: 400px;
border: 0;
}

.thankyou-section, .error-section {
padding: clamp(60px, 12vw, 100px) 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

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

.success-icon {
width: clamp(80px, 15vw, 100px);
height: clamp(80px, 15vw, 100px);
background: linear-gradient(135deg, #10b981, #059669);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

.success-icon svg {
color: #ffffff;
width: clamp(40px, 8vw, 50px);
height: clamp(40px, 8vw, 50px);
}

.thankyou-wrapper h1 {
margin-bottom: 20px;
}

.thankyou-wrapper p {
color: #64748b;
margin-bottom: 35px;
font-size: clamp(14px, 2.5vw, 16px);
line-height: 1.7;
}

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

.error-code {
font-size: clamp(4rem, 12vw, 8rem);
font-weight: 700;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 20px;
line-height: 1;
}

.error-wrapper h1 {
margin-bottom: 15px;
}

.error-wrapper p {
color: #64748b;
margin-bottom: 35px;
font-size: clamp(14px, 2.5vw, 16px);
line-height: 1.7;
}

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

.error-suggestions {
padding-top: 30px;
border-top: 1px solid #e2e8f0;
}

.error-suggestions p {
margin-bottom: 15px;
font-weight: 500;
color: var(--dark);
}

.suggestion-links {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.suggestion-links a {
color: var(--primary);
text-decoration: underline;
font-size: clamp(13px, 2vw, 14px);
}

.footer {
background: var(--dark);
color: #ffffff;
padding: 40px 0 20px;
}

.footer-content {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
gap: 30px;
flex-wrap: wrap;
}

.footer-brand {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(1.1rem, 3vw, 1.3rem);
font-weight: 700;
margin-bottom: 15px;
}

.footer-info p {
font-size: clamp(12px, 2vw, 13px);
margin-bottom: 6px;
opacity: 0.85;
word-break: break-word;
}

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

.footer-links a {
font-size: clamp(12px, 2vw, 13px);
opacity: 0.85;
transition: all 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
color: var(--secondary);
}

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

.footer-bottom p {
font-size: clamp(12px, 2vw, 13px);
opacity: 0.7;
}

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: #ffffff;
padding: 20px;
z-index: 10000;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
display: none;
}

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

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

.cookie-content p {
font-size: clamp(13px, 2vw, 14px);
margin: 0;
flex: 1;
min-width: 200px;
}

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

.btn-accept {
padding: 10px 25px;
background: var(--primary);
color: #ffffff;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: 500;
font-size: clamp(13px, 2vw, 14px);
transition: all 0.3s ease;
}

.btn-accept:hover {
background: #0052cc;
}

.btn-learn {
padding: 10px 25px;
background: transparent;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 6px;
font-size: clamp(13px, 2vw, 14px);
transition: all 0.3s ease;
}

.btn-learn:hover {
background: rgba(255,255,255,0.1);
}

.policy-section {
padding: clamp(50px, 10vw, 80px) 0;
}

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

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

.policy-date {
color: #64748b;
font-size: clamp(13px, 2vw, 14px);
margin-bottom: 40px;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 15px;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
}

.policy-content p {
margin-bottom: 15px;
color: #64748b;
line-height: 1.8;
font-size: clamp(14px, 2vw, 15px);
word-break: break-all;
}

.policy-content ul, .policy-content ol {
margin-bottom: 15px;
padding-left: 25px;
color: #64748b;
line-height: 1.8;
}

.policy-content li {
margin-bottom: 8px;
font-size: clamp(14px, 2vw, 15px);
}

@media (min-width: 768px) {
.visual-story-grid {
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.visual-story-grid.reverse {
direction: rtl;
}

.why-grid {
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-layout {
grid-template-columns: 1.5fr 1fr;
gap: 60px;
}
}

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

.nav-menu {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
background: #ffffff;
flex-direction: column;
padding: 30px 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: left 0.3s ease;
z-index: 1000;
}

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

.nav-menu a {
padding: 10px 0;
border-bottom: 1px solid #e2e8f0;
}

.menu-toggle {
display: flex;
z-index: 1001;
position: relative;
}

.hero-cta-group {
flex-direction: column;
align-items: stretch;
}

.btn-hero-primary, .btn-hero-secondary {
width: 100%;
}

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

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

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

.industries-grid {
grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.approach-cards {
grid-template-columns: 1fr;
}

.benefits-showcase {
grid-template-columns: 1fr;
}

.footer-content {
flex-direction: column;
gap: 25px;
}

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

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

.cookie-actions {
justify-content: center;
width: 100%;
}

.btn-accept, .btn-learn {
flex: 1;
min-width: 120px;
}
}

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

.header-unique {
padding: 14px 0;
}

.hero-stats {
gap: 20px;
}

.stat-box {
min-width: 80px;
}

.expertise-card, .package-card, .insight-card, 
.approach-card, .benefit-showcase-item, .industry-item {
padding: 20px;
}

.card-number {
font-size: 2rem;
top: 15px;
right: 15px;
}

.point-icon {
width: 40px;
height: 40px;
min-width: 40px;
}

.point-icon svg {
width: 20px;
height: 20px;
}

.package-features li {
padding: 8px 0;
padding-left: 20px;
}

.visual-stats-card {
padding: 25px;
gap: 25px;
}

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

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

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

body {
font-size: 14px;
}

.hero-badge {
padding: 6px 16px;
}

.section-label {
padding: 5px 14px;
font-size: 11px;
}

.expertise-card, .package-card, .insight-card,
.approach-card, .benefit-showcase-item, .industry-item,
.info-card {
padding: 18px;
}

.modern-form {
padding: 20px;
}

.form-field input, .form-field textarea {
padding: 10px 14px;
}

.btn-hero-primary, .btn-hero-secondary,
.btn-final-cta, .btn-package, .btn-form-submit {
padding: 12px 20px;
}

.hero-cta-group {
margin-bottom: 40px;
}

.story-points {
gap: 20px;
}

.why-features {
gap: 20px;
}

.package-badge {
font-size: 10px;
padding: 5px 16px;
}
}

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

body {
font-size: 13px;
}

.header-unique {
padding: 12px 0;
}

.logo {
font-size: 1.1rem;
}

.menu-toggle span {
width: 22px;
height: 2px;
}

.hero-badge {
padding: 5px 14px;
font-size: 11px;
}

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

.hero-cta-group {
gap: 12px;
margin-bottom: 35px;
}

.btn-hero-primary, .btn-hero-secondary {
padding: 11px 18px;
font-size: 13px;
min-width: 150px;
}

.hero-stats {
gap: 15px;
}

.stat-box {
min-width: 70px;
}

.stat-value {
font-size: 1.5rem;
}

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

.section-label {
padding: 4px 12px;
font-size: 10px;
}

.section-intro-text {
margin-bottom: 35px;
}

.expertise-grid, .packages-grid, .insights-grid,
.industries-grid, .approach-cards, .benefits-showcase {
gap: 20px;
}

.expertise-card, .package-card, .insight-card,
.approach-card, .benefit-showcase-item, .industry-item {
padding: 16px;
}

.card-number {
font-size: 1.8rem;
top: 12px;
right: 12px;
}

.point-item {
gap: 12px;
}

.point-icon {
width: 38px;
height: 38px;
min-width: 38px;
}

.point-icon svg {
width: 18px;
height: 18px;
}

.story-points {
gap: 18px;
margin-top: 25px;
}

.story-highlight {
padding: 16px;
}

.package-badge {
font-size: 10px;
padding: 4px 14px;
top: -12px;
}

.package-tier {
font-size: 1.1rem;
margin-bottom: 12px;
}

.currency {
font-size: 1.1rem;
}

.amount {
font-size: 2rem;
}

.package-desc {
margin-bottom: 20px;
padding-bottom: 20px;
}

.package-features {
margin-bottom: 25px;
}

.package-features li {
padding: 7px 0;
padding-left: 18px;
font-size: 12px;
}

.btn-package {
padding: 10px;
font-size: 13px;
}

.insight-metric {
font-size: 1.8rem;
margin-bottom: 12px;
}

.why-features {
gap: 18px;
}

.visual-stats-card {
padding: 20px;
gap: 20px;
}

.vstat-number {
font-size: 2rem;
margin-bottom: 8px;
}

.vstat-text {
font-size: 12px;
}

.benefit-icon-modern {
width: 50px;
height: 50px;
margin-bottom: 16px;
}

.benefit-icon-modern svg {
width: 24px;
height: 24px;
}

.modern-form {
padding: 18px;
}

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

.form-field label {
margin-bottom: 6px;
font-size: 12px;
}

.form-field input, .form-field textarea {
padding: 10px 12px;
font-size: 13px;
}

.form-field textarea {
min-height: 100px;
}

.btn-form-submit {
padding: 12px;
font-size: 13px;
}

.info-card {
padding: 16px;
}

.contact-info-area {
gap: 20px;
}

.success-icon {
width: 70px;
height: 70px;
margin-bottom: 25px;
}

.success-icon svg {
width: 35px;
height: 35px;
}

.error-code {
font-size: 3.5rem;
margin-bottom: 15px;
}

.thankyou-actions, .error-actions {
gap: 12px;
margin-bottom: 30px;
}

.error-suggestions {
padding-top: 25px;
}

.suggestion-links {
gap: 12px;
}

.footer {
padding: 30px 0 15px;
}

.footer-content {
margin-bottom: 25px;
gap: 20px;
}

.footer-brand {
margin-bottom: 12px;
}

.footer-info p {
font-size: 11px;
margin-bottom: 5px;
}

.footer-links {
gap: 8px;
}

.footer-links a {
font-size: 11px;
}

.footer-bottom {
padding-top: 15px;
}

.footer-bottom p {
font-size: 11px;
}

.cookie-popup {
padding: 16px;
}

.cookie-content {
gap: 16px;
}

.cookie-content p {
font-size: 12px;
}

.cookie-actions {
gap: 12px;
}

.btn-accept, .btn-learn {
padding: 8px 20px;
font-size: 12px;
min-width: 100px;
}

.btn-final-cta {
padding: 14px 30px;
font-size: 14px;
}

.cta-note {
font-size: 11px;
}

.approach-number {
padding: 5px 14px;
font-size: 10px;
}
}
