/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a192f;
    --primary-blue: #112240;
    --accent-blue: #2563eb;
    --accent-gold: #0e92f8;
    --light-blue: #233554;
    --text-white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body.premium-banking {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.premium-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Animation */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-core {
    position: relative;
    width: 200px;
    height: 200px;
}

.banking-loader {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bank-structure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 80px;
}

.banking-hall {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15px;
    background: var(--accent-gold);
    border-radius: 3px;
    animation: banking-flow 2s infinite linear;
}

.atm-unit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 25px;
    height: 25px;
    background: var(--light-blue);
    border-radius: 5px;
    transform: rotate(0deg);
    animation: atm-pulse 1.5s infinite alternate;
}

.teller-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 3px;
    animation: counter-glow 2s infinite alternate;
}

.bank-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.security-shield {
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 3px solid var(--accent-blue);
    border-radius: 50%;
}

.security-shield:first-child {
    top: 20px;
    left: 20px;
    animation: shield-rotate 4s infinite linear;
}

.security-shield:nth-child(2) {
    bottom: 20px;
    right: 20px;
    animation: shield-rotate-reverse 3s infinite linear;
}

.data-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 4px;
    animation: data-move 2s infinite linear;
}

.loader-text {
    margin-top: 30px;
    font-size: 18px;
    color: var(--accent-blue);
    letter-spacing: 2px;
    animation: text-pulse 2s infinite alternate;
}

/* Enhanced Hero Section - Dark Background */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
    color: var(--text-white);
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation: orbit-rotate 20s infinite linear;
}

.ring-2 {
    width: 500px;
    height: 500px;
    animation: orbit-rotate 25s infinite linear reverse;
}

.ring-3 {
    width: 700px;
    height: 700px;
    animation: orbit-rotate 30s infinite linear;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.3;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: particle-float 15s infinite linear;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: particle-float 20s infinite linear;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation: particle-float 18s infinite linear;
}

.particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation: particle-float 22s infinite linear;
}

.particle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation: particle-float 25s infinite linear;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text-content {
    z-index: 2;
}

.bank-breadcrumb {
    margin-bottom: 30px;
}

.bank-breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
}

.bank-breadcrumb a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}

.bank-breadcrumb a:hover {
    color: var(--text-white);
}

.bank-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-gray);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    transform: translateY(20px);
    opacity: 0;
    animation: title-line-appear 0.8s forwards;
}

.title-line.accent {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
}

.critical-indicators {
    display: flex;
    gap: 30px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(17, 34, 64, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
}

.indicator:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.indicator-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.indicator-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.indicator-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-visual-content {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bank-layout {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.banking-floor {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: var(--primary-blue);
    border-radius: 10px;
    overflow: hidden;
}

.customer-area {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.customer-spot {
    width: 25px;
    height: 25px;
    background: var(--light-blue);
    border-radius: 50%;
    position: relative;
}

.customer-spot[data-status="active"] {
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.customer-spot[data-status="waiting"] {
    background: var(--accent-gold);
}

.cooling-unit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    animation: cooling-pulse 2s infinite alternate;
}

.control-center {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monitor-display {
    width: 60px;
    height: 40px;
    background: var(--primary-dark);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.monitor-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: monitor-scan 3s infinite linear;
}

.temp-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 20px;
    background: var(--primary-dark);
    border-radius: 5px;
    overflow: hidden;
}

.temp-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: var(--accent-blue);
    border-radius: 5px;
    animation: indicator-fluctuate 4s infinite alternate;
}

.air-circulation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.air-circulation::before,
.air-circulation::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--accent-blue);
    opacity: 0.3;
    animation: airflow-move 3s infinite linear;
}

.air-circulation::before {
    left: 30%;
}

.air-circulation::after {
    right: 30%;
}

.bank-performance {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
}

.performance-panel {
    display: flex;
    justify-content: space-around;
    background: rgba(17, 34, 64, 0.8);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.performance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.performance-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.performance-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.performance-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.performance-status.optimal {
    background: var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue);
}

/* Banking Areas Section - White Background */
.banking-areas-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.area-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s ease;
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.area-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 2rem;
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background: var(--accent-blue);
    color: var(--bg-white);
    transform: rotateY(180deg);
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.area-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.area-spec {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Solutions Showcase - Light Background */
.solutions-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .card-glow {
    opacity: 1;
}

.card-inner {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-right: 15px;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    animation: icon-pulse 2s infinite;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-ideal {
    background: rgba(37, 99, 235, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--accent-blue);
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.feature-list i {
    color: var(--accent-blue);
    margin-right: 10px;
    margin-top: 3px;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.performance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Benefits Section - White Background */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefits-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.benefit-visual {
    margin-bottom: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

.equipment-protection {
    position: relative;
    width: 100%;
    height: 100%;
}

.server-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 60px;
    border: 2px solid var(--text-gray);
    border-radius: 5px;
}

.safety-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    animation: shield-pulse 3s infinite;
}

.customer-comfort {
    position: relative;
    width: 100%;
    height: 100%;
}

.comfort-gauge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
}

.satisfaction-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    transform-origin: left center;
    animation: satisfaction-rise 2s infinite alternate;
}

.energy-optimization {
    position: relative;
    width: 100%;
    height: 100%;
}

.power-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
}

.optimization-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: core-pulse 2s infinite alternate;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    background: rgba(37, 99, 235, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* CTA Section - Light Background */
.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-call {
    background: var(--accent-blue);
    color: var(--bg-white);
}

.cta-call:hover {
    background: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-email {
    background: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.cta-email:hover {
    background: var(--accent-blue);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes banking-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes atm-pulse {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(0deg) scale(1.1); }
}

@keyframes counter-glow {
    0% { box-shadow: 0 0 5px var(--accent-gold); }
    100% { box-shadow: 0 0 15px var(--accent-gold); }
}

@keyframes shield-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shield-rotate-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes data-move {
    0% { transform: translate(-50%, -50%); }
    100% { transform: translate(calc(-50% + 20px), -50%); }
}

@keyframes text-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

@keyframes title-line-appear {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes cooling-pulse {
    0% { box-shadow: 0 0 5px var(--accent-blue); }
    100% { box-shadow: 0 0 20px var(--accent-blue); }
}

@keyframes monitor-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes indicator-fluctuate {
    0% { height: 50%; }
    100% { height: 80%; }
}

@keyframes airflow-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes icon-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes shield-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes satisfaction-rise {
    0% { transform: translate(-50%, -50%) rotate(-30deg); }
    100% { transform: translate(-50%, -50%) rotate(30deg); }
}

@keyframes core-pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-content {
        height: 400px;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .premium-container {
        padding: 0 15px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .critical-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-header h2,
    .showcase-title,
    .benefits-header h2,
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .card-inner {
        padding: 20px;
    }
    
    .area-card,
    .benefit-card {
        padding: 30px 20px;
    }
}