/* Premium Cost Optimization Page Styles */
.cost-optimization-page {
    background: linear-gradient(180deg, #fdfdf5 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Hero Section with Parallax Effect */
.cost-hero {
    position: relative;
    height: 50vh;
    min-height: 280px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A1F1A 0%, #1A3D35 50%, #2D5F52 100%);
    overflow: hidden;
}

.cost-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.cost-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(218,165,32,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.cost-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.cost-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cost-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-hero,
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #D4AF37, #E8C547);
    color: #0A1F1A;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.btn-primary-hero:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary-hero {
    background: transparent;
    color: #FAFAFA;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Value Proposition Section */
.cost-value-section {
    padding: 2.5rem 0;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 197, 71, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    color: #B8941F;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #0A1F1A;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #6B6B6B;
    line-height: 1.7;
}

.cost-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #FAFAFA;
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-card h3 {
    font-size: 1.15rem;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
}

.benefit-metrics {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.metric-main {
    display: flex;
    align-items: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.75rem;
    color: #666666;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

/* Cost Breakdown Section */
.cost-breakdown-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.cost-breakdown-section::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(212,175,55,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.breakdown-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breakdown-content .section-tag,
.breakdown-content .section-title {
    text-align: left;
}

.breakdown-intro {
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breakdown-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.breakdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.breakdown-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.breakdown-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.breakdown-info h4 {
    font-size: 1rem;
    color: #1A3D35;
    font-weight: 600;
    margin: 0;
}

.breakdown-percentage {
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4AF37;
}

.breakdown-bar {
    width: 100%;
    height: 8px;
    background: #F0F0F0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #E8C547);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.breakdown-item p {
    font-size: 0.85rem;
    color: #6B6B6B;
    line-height: 1.5;
    margin: 0;
}

.breakdown-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.savings-circle {
    position: relative;
    width: 250px;
    height: 250px;
}

.circle-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-progress {
    stroke-dasharray: 301.59 502.65;
    stroke-dashoffset: 0;
    animation: drawCircle 2s ease-in-out;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #D4AF37;
}

.circle-label {
    font-size: 0.9rem;
    color: #6B6B6B;
    font-weight: 500;
}

/* Process Section */
.cost-process-section {
    padding: 2.5rem 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #E8C547);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.process-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37, #E8C547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0A1F1A;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.process-icon-box {
    margin-bottom: 1rem;
}

.process-icon {
    font-size: 2rem;
}

.process-card h3 {
    font-size: 1.1rem;
    color: #1A3D35;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-card p {
    font-size: 0.9rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-features li {
    font-size: 0.8rem;
    color: #6B6B6B;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.process-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: 600;
}

/* Calculator Section */
.calculator-section-premium {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
}

.calculator-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-subtitle {
    font-size: 1rem;
    color: #6B6B6B;
    margin-top: 0.5rem;
}

.calculator-inputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A3D35;
    margin-bottom: 0.5rem;
}

.input-icon {
    font-size: 1.2rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    color: #6B6B6B;
    font-weight: 600;
    z-index: 2;
}

.calculator-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.calculator-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.calculate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D4AF37, #E8C547);
    color: #0A1F1A;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.savings-result-premium {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #F8F9FA, white);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.result-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.result-header h3 {
    font-size: 1.3rem;
    color: #1A3D35;
    margin-bottom: 0.5rem;
}

.result-total {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
}

.result-breakdown {
    margin-bottom: 1.5rem;
}

.breakdown-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.breakdown-item-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.breakdown-icon-small {
    font-size: 1.2rem;
}

.breakdown-details {
    display: flex;
    flex-direction: column;
}

.breakdown-label {
    font-size: 0.8rem;
    color: #6B6B6B;
    font-weight: 500;
}

.breakdown-value {
    font-size: 1rem;
    color: #1A3D35;
    font-weight: 700;
}

.roi-info {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.roi-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #1A3D35;
}

.result-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.result-cta p {
    margin-bottom: 0.75rem;
    color: #6B6B6B;
}

.result-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #D4AF37, #E8C547);
    color: #0A1F1A;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.result-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Success Stories Section */
.success-stories-section {
    padding: 2.5rem 0;
    background: white;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.1rem;
    color: #1A3D35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-savings {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.savings-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #D4AF37;
}

.savings-period {
    font-size: 0.8rem;
    color: #6B6B6B;
    font-weight: 500;
}

.success-content p {
    font-size: 0.9rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.success-metrics {
    display: flex;
    gap: 1rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    flex: 1;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4AF37;
}

.metric-text {
    font-size: 0.7rem;
    color: #6B6B6B;
    text-align: center;
}

/* CTA Section */
.cost-cta-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #D4AF37, #E8C547);
    color: #0A1F1A;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-cta-secondary:hover {
    background: #f8fafc;
    border-color: #D4AF37;
    color: #2c3e50;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #D4AF37, #E8C547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #0A1F1A;
    font-weight: 700;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-card h4 {
    font-size: 1rem;
    color: #1A3D35;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.9rem;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    color: #6B6B6B;
}

/* Related Services Section */
.related-services-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.related-service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.related-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.related-service-card h3 {
    font-size: 1rem;
    color: #1A3D35;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.related-service-card p {
    font-size: 0.8rem;
    color: #6B6B6B;
    margin: 0;
}

.related-arrow {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-left: auto;
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes drawCircle {
    from {
        stroke-dashoffset: 502.65;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cost-hero {
        height: 45vh;
        min-height: 300px;
    }
    
    .breakdown-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .breakdown-content .section-tag,
    .breakdown-content .section-title {
        text-align: center;
    }
    
    .breakdown-visual {
        order: 1;
    }
    
    .savings-circle {
        width: 200px;
        height: 200px;
    }
    
    .cost-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cost-hero {
        height: auto;
        min-height: 280px;
        padding: 2.5rem 0;
    }
    
    .cost-hero-content {
        padding: 0 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cost-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cost-value-section,
    .cost-breakdown-section,
    .cost-process-section,
    .calculator-section-premium,
    .success-stories-section,
    .cost-cta-section {
        padding: 1.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .calculator-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .calculator-inputs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cost-hero {
        min-height: 240px;
        padding: 2rem 0;
    }
    
    .cost-hero-content {
        padding: 0 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .cost-hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .cost-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .cost-value-section,
    .cost-breakdown-section,
    .cost-process-section,
    .calculator-section-premium,
    .success-stories-section,
    .cost-cta-section {
        padding: 1.25rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .calculator-wrapper {
        padding: 1rem;
        margin: 0 0.75rem;
    }
    
    .benefit-card,
    .process-card,
    .success-card {
        padding: 1rem;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .cost-hero,
    .cost-breakdown-section,
    .calculator-section-premium,
    .cost-cta-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-cta-group,
    .cta-buttons,
    .contact-cards {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}