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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    /*background: rgba(255,255,255,0.15);*/
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 2px dashed rgba(255,255,255,0.3);*/
    backdrop-filter: blur(10px);
}

.hero-image-placeholder i {
    font-size: 4em;
    opacity: 0.5;
    margin-bottom: 20px;
}

.hero-image-placeholder p {
    text-align: center;
    opacity: 0.7;
    font-size: 1.1em;
}

.hero-title {
    font-size: 3.2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-feature i {
    margin-right: 10px;
    font-size: 1.2em;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.6);
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0055b8;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #7f8c8d;
    margin-bottom: 60px;
}

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

.problem-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 5px solid #0055b8;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3em;
    color: #0055b8;
    margin-bottom: 20px;
}

.problem-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0055b8;
}

.problem-description {
    color: #7f8c8d;
    line-height: 1.7;
}

/* IPO Definition Section */
.ipo-definition-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
}

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

.definition-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.definition-visual {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.knowledge-link {
    display: inline-block;
    background: white;
    color: #0055b8;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    margin: 10px 10px 10px 0;
    border: 2px solid #0055b8;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 85, 184, 0.2);
}

.knowledge-link:hover {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    border-color: #00bcd4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

/* Intelligent Flow Section */
.intelligent-flow-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.flow-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.flow-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #0055b8;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Business Examples Section */
.business-examples-section {
    padding: 80px 0;
    background: white;
}

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

.example-card {
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.example-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.example-icon {
    font-size: 2em;
    margin-right: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.2);
    /*border-radius: 50%;*/
}

.template-download {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.template-download:hover {
    background: rgba(255,255,255,0.3);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.recommended {
    border: 3px solid #00bcd4;
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #00bcd4;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9em;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.card-icon.bpo { color: #95a5a6; }
.card-icon.bpaas { color: #42a5f5; }
.card-icon.ipo { color: #0055b8; }

.card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-subtitle {
    color: #7f8c8d;
    font-size: 0.9em;
}

.comparison-items {
    list-style: none;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-label {
    font-weight: bold;
    color: #0055b8;
}

.comparison-value {
    color: #7f8c8d;
}

.comparison-value.high { color: #e74c3c; }
.comparison-value.medium { color: #f39c12; }
.comparison-value.low { color: #00bcd4; }

/* Before/After Section */
.before-after-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
}

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

.persona-section {
    padding: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.persona-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.persona-tab {
    background: #ecf0f1;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.persona-tab.active {
    background: #0055b8;
    color: white;
}

.persona-content {
    display: none;
}

.persona-content.active {
    display: block;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-description {
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Implementation Steps Section */
.steps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0055b8;
    transform: translateX(-50%);
}

.step-item {
    position: relative;
    margin-bottom: 50px;
}

.step-item:nth-child(odd) .step-content {
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.step-item:nth-child(even) .step-content {
    margin-left: 50%;
    padding-left: 40px;
    text-align: left;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    background: #0055b8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* ROI Calculator */
.roi-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
}

/* Pricing Plans Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid #e0e0e0;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.recommended {
    border: 3px solid #00bcd4;
    transform: scale(1.05);
}

.pricing-card.recommended .recommended-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #00bcd4;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0055b8;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3em;
    font-weight: bold;
    color: #0055b8;
}

.price-period {
    font-size: 1.2em;
    color: #7f8c8d;
    margin-left: 5px;
}

.annual-discount {
    font-size: 1em;
    color: #00bcd4;
    font-weight: bold;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1em;
    color: #555;
}

.plan-features i {
    color: #00bcd4;
    margin-right: 10px;
    font-size: 1.1em;
}

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

.plan-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.free-button {
    background: white;
    color: #0055b8;
    border: 2px solid #0055b8;
}

.free-button:hover {
    background: #0055b8;
    color: white;
    transform: translateY(-2px);
}

.paid-button {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    border: 2px solid #00bcd4;
}

.paid-button:hover {
    background: linear-gradient(45deg, #0097a7, #006064);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.roi-calculator {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.calc-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #0055b8;
}

.form-group input, .form-group select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #00bcd4;
}

.calc-button {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.roi-results {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    border-radius: 15px;
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.result-value {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Case Studies */
.cases-section {
    padding: 80px 0;
    background: white;
}

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

.case-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.case-icon {
    font-size: 2.5em;
    margin-right: 15px;
    padding: 15px;
    width: 94px;
    text-align: center;
    /*border-radius: 50%;*/
    color: white;
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
}

.case-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #0055b8;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.8em;
    font-weight: bold;
    color: #00bcd4;
}

.metric-label {
    font-size: 0.9em;
    color: #7f8c8d;
}

.case-description {
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(135deg, #1976d2 0%, #0055b8 100%);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0055b8 0%, #1976d2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    opacity: 0.7;
}

/* Navigation Header */
.nav-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo a {
    text-decoration: none;
}
.nav-logo img {
    width: 100px;
}

.logo-badge {
    background: #0055b8;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1em;
}

.service-name {
    color: #0055b8;
    font-size: 1.2em;
    font-weight: 500;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0055b8;
}

.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0055b8;
}

.nav-cta {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.nav-download {
    background: #0055b8;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-download:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 85, 184, 0.3);
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Download Button */
.download-button {
    display: inline-block;
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
    border: 2px solid white;
}

.download-button:hover {
    background: linear-gradient(45deg, #0097a7, #006064);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 60px 0;
    }
    
    .hero-content, .definition-content, .before-after-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-title {
        font-size: 2.4em;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-primary {
        font-size: 1.1em;
        padding: 15px 30px;
        text-align: center;
        width: 100%;
        max-width: 320px;
    }

    .calc-form {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .comparison-card.recommended {
        transform: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.recommended {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .steps-timeline::before {
        left: 30px;
    }

    .step-item:nth-child(odd) .step-content,
    .step-item:nth-child(even) .step-content {
        margin: 0;
        margin-left: 60px;
        padding: 30px;
        text-align: left;
    }

    .step-number {
        left: 30px;
    }

    .nav-menu {
        display: none;
    }
    
    .nav-container {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .section-subtitle {
        font-size: 1.1em;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .persona-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .persona-tab {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 1.8em;
    }
    
    .section-subtitle {
        font-size: 1em;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-primary {
        font-size: 1em;
        padding: 12px 25px;
    }
    
    .hero-feature {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .problem-card, .example-card, .feature-card, .case-card {
        padding: 20px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95em;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
}