/* Global Styles */
:root {
    --primary-blue: #003366;
    --accent-orange: #FF6B35;
    --accent-cyan: #00A0E9;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #F8F9FA;
    --bg-section: #FFFFFF;
    --border-light: #E5E5E5;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, #001a33 100%);
    --hero-gradient: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    --support-green: #27ae60;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

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

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-light);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo span {
    color: var(--accent-orange);
}

.brand {
    display: flex;
    flex-flow: row nowrap;
    justify-content: normal;
    align-items: center;
    align-content: normal;
    gap: 0 0;
}

.brand-img {

}

.brand-txt {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 1.2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 20px var(--shadow-light);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: var(--bg-light);
    color: var(--accent-orange);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-orange), #FF8C42);
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--primary-blue);
    color: white !important;
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 160, 233, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: var(--hero-gradient);
    color: white;
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/></filter></defs><rect width="100%" height="100%" filter="url(#noiseFilter)" opacity="0.05" fill="%23ffffff"/><line x1="0" y1="10" x2="100" y2="30" stroke="%23ffffff" stroke-width="0.2" opacity="0.1"/><line x1="0" y1="30" x2="100" y2="10" stroke="%23ffffff" stroke-width="0.2" opacity="0.1"/><line x1="0" y1="50" x2="100" y2="70" stroke="%23ffffff" stroke-width="0.2" opacity="0.1"/><line x1="0" y1="70" x2="100" y2="50" stroke="%23ffffff" stroke-width="0.2" opacity="0.1"/><line x1="10" y1="0" x2="30" y2="100" stroke="%23ffffff" stroke-width="0.2" opacity="0.08"/><line x1="30" y1="0" x2="10" y2="100" stroke="%23ffffff" stroke-width="0.2" opacity="0.08"/></svg>') repeat;
    background-size: 300px 300px;
    opacity: 0.6;
    z-index: 1;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
    flex-grow: 1;
}

.hero-content {
    /* max-width: 800px; */
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero-pre-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 800;
}

.hero-title-highlight {
    background: linear-gradient(45deg, var(--accent-orange), #FFB347);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 160px;
    position: relative;
}

.laurel-decoration {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.laurel-decoration::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23DAA520"><polygon points="50,0 70,30 30,30" opacity="0.6"/><polygon points="50,100 30,70 70,70" opacity="0.6"/><polygon points="0,50 30,30 30,70" opacity="0.4"/><polygon points="100,50 70,70 70,30" opacity="0.4"/><circle cx="50" cy="50" r="10" fill="%23FFFFFF" opacity="0.2"/></svg>') no-repeat center center;
    background-size: 100% 100%;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    transform: scale(0.9);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.stat-sublabel {
    font-size: 0.85rem;
    color: #FFFFFF;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta .btn {
    font-weight: 700;
    text-shadow: none;
}

/* Hero Visual */
.hero-visual {
    display: none;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.section.alt {
    background: var(--bg-light);
    position: relative;
}

.section.alt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><polygon points="0,0 80,40 40,120 0,80" fill="%2300A0E9" opacity="0.03"/><polygon points="80,40 200,20 160,100 80,80" fill="%23FF6B35" opacity="0.02"/><polygon points="200,20 320,60 280,140 200,100" fill="%2300A0E9" opacity="0.025"/><polygon points="320,60 400,0 400,80 320,120" fill="%23FF6B35" opacity="0.015"/><polygon points="40,120 160,100 120,200 40,180" fill="%2300A0E9" opacity="0.02"/><polygon points="160,100 280,140 240,240 160,200" fill="%23FF6B35" opacity="0.025"/><polygon points="280,140 400,80 400,200 280,240" fill="%2300A0E9" opacity="0.015"/><polygon points="0,80 120,200 60,280 0,220" fill="%23FF6B35" opacity="0.02"/><polygon points="120,200 240,240 180,300 120,280" fill="%2300A0E9" opacity="0.015"/><polygon points="240,240 400,200 400,300 240,300" fill="%23FF6B35" opacity="0.01"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.section.alt>.container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-title .subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Bridge */
.solution-bridge {
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bridge-arrow {
    text-align: center;
    margin-bottom: 2rem;
}

.arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-orange), var(--accent-cyan));
    margin: 0 auto 1rem;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.arrow-head {
    font-size: 2rem;
    color: var(--accent-orange);
    animation: bounce 2s ease-in-out infinite;
}

.solution-message {
    text-align: center;
    margin-bottom: 2rem;
}

.solution-message h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-highlight {
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.company-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 30,20 15,50 0,35" fill="%23ffffff" opacity="0.1"/><polygon points="70,0 100,15 85,45 70,30" fill="%23ffffff" opacity="0.08"/><polygon points="30,20 70,30 55,60 30,50" fill="%23ffffff" opacity="0.06"/><polygon points="15,50 55,60 40,90 15,80" fill="%23ffffff" opacity="0.04"/><polygon points="85,45 100,60 100,90 85,75" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.company-highlight>* {
    position: relative;
    z-index: 2;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.solution-text {
    color: var(--accent-orange) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.solution-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 160, 233, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 2px solid rgba(0, 160, 233, 0.2);
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(0, 160, 233, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 160, 233, 0.2);
}

.feature-point i {
    color: var(--accent-orange);
    font-size: 1rem;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.7;
        transform: scaleY(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Problem Cards with geometric pattern */
.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--accent-orange);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="100,0 80,30 100,50" fill="%23FF6B35" opacity="0.05"/><polygon points="80,30 60,0 100,20" fill="%2300A0E9" opacity="0.03"/><polygon points="60,0 100,50 80,30" fill="%23FF6B35" opacity="0.02"/></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.problem-card>* {
    position: relative;
    z-index: 2;
}

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

.problem-number {
    background: var(--accent-orange);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Subsidy Section */
.subsidy-container {
    max-width: 900px;
    margin: 0 auto;
}

.subsidy-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.subsidy-badge {
    background: linear-gradient(45deg, var(--accent-orange), #FFB347);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    margin-bottom: 2rem;
}

.badge-text {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.badge-main {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-accent {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
}

.subsidy-explanation h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.subsidy-explanation p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.cost-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.cost-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--accent-orange);
}

.cost-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.cost-header h4 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.1rem;
}

.cost-reduction {
    background: linear-gradient(45deg, #FF4444, #FF6B6B);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.reduction-rate {
    font-size: 1.2rem;
    font-weight: 800;
}

.cost-details {}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.cost-row.original .cost-amount {
    color: var(--text-dark);
    font-weight: 600;
}

.cost-row.subsidy .cost-amount {
    color: #22C55E;
    font-weight: 700;
}

.cost-row.final {
    background: linear-gradient(45deg, var(--accent-orange), #FFB347);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.5rem;
    font-weight: 700;
}

.final-price {
    font-size: 1.4rem;
    font-weight: 800;
}

.tax-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cost-divider {
    height: 2px;
    background: var(--bg-light);
    margin: 0.5rem 0;
}

.cost-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.subsidy-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.subsidy-details h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.subsidy-breakdown {
    list-style: none;
    margin-bottom: 1.5rem;
}

.subsidy-breakdown li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.subsidy-breakdown li:last-child {
    border-bottom: none;
}

.subsidy-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-cyan);
    margin: 0;
}

.subsidy-notice {
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    max-width: 900px;
    margin: 3rem auto 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 40px;
    width: 3px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-orange));
    border-radius: 2px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 160, 233, 0.3);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    flex: 1;
}

.step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Testimonials with geometric accent */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "”";
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent-orange);
    opacity: 0.3;
    font-family: serif;
    z-index: 1;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><polygon points="80,80 60,50 80,30" fill="%2300A0E9" opacity="0.06"/><polygon points="60,50 40,80 80,60" fill="%23FF6B35" opacity="0.04"/><polygon points="40,80 80,30 60,50" fill="%2300A0E9" opacity="0.02"/></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.testimonial-card>* {
    position: relative;
    z-index: 2;
}

.testimonial-role {
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-metrics {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-cyan);
}

.testimonial-metrics strong {
    color: var(--accent-orange);
}

/* Pricing Section (New Styles) */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px var(--shadow-light);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.plan-card.recommended {
    border: 3px solid var(--accent-orange);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.plan-content {
    margin-bottom: 0;
    flex-grow: 1;
}

.plan-card .section-title {
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 8px;
    font-size: 1rem;
    position: relative;
    padding-left: 15px;
    text-align: left;
    display: block;
}

.plan-card .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.content-text {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 15px;
}

.section-block {
    margin-bottom: 25px;
}

.support-text {
    color: var(--support-green);
    font-weight: bold;
}

.no-support {
    color: var(--text-light);
}

.customize-text {
    color: var(--accent-orange);
    font-weight: bold;
}

.target-highlight {
    background: linear-gradient(135deg, var(--accent-orange), #e55a2b);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.target-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.target-text {
    font-size: 1rem;
    line-height: 1.4;
}

.pricing-note {
    text-align: center;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid var(--border-light);
}

.pricing-note p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* End Pricing Section (New Styles) */

/* Note Section */
/* .note-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
} */

.note-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}


.note-card {
    display: block;
    opacity: 1.0;
    img {
        display: block;
        max-width: 100%;
        height: auto;
    }
}

.note-card:hover {
    opacity: 0.7;
}

/* FAQ Section (New Styles) */
.faq-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.faq-header p {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    padding: 25px 30px;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.faq-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    padding: 30px;
    max-height: none;
    overflow: visible;
    transition: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle,
.faq-item.active .faq-answer {
    max-height: none !important;
    padding: 30px !important;
    transform: none !important;
}

.faq-answer-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* End FAQ Section (New Styles) */

/* contact */

.contact-form {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px var(--shadow-light);
    /* position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between; */
}

/* Footer */

.footer {
    padding-top: 100px;
    padding-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 300px;
}

.footer-link-group {
    a {
        color: var(--text-dark);
        transition: none;
    }
}

.footer-link-group ul {
    list-style: none;
    padding: 0;
}

.footer-link-group li {
    margin-bottom: 8px;
}

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

    p {
        margin: 0;
    }
}

/* End Footer */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalOpen 0.3s ease-out;
}

@keyframes modalOpen {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-button {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

#modalTitle {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

#modalMessage {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

#modalCloseBtn {
    margin-top: 1rem;
}

div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
    gap: 6px;
    padding: 12px;
}

div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner #hs-eu-policy-wording {
    flex: auto;
    margin: 0 !important;
}

div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner #hs-eu-policy-wording p {
    margin: 0 !important;
}

div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area {
    margin: 0 !important;
    flex: none;
}

div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area div#hs-eu-cookie-confirmation-button-group a#hs-eu-confirmation-button,
div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area div#hs-eu-cookie-confirmation-button-group a#hs-eu-decline-button {
    padding: 8px 12px !important;
}


/* Responsive Design */
@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 140px;
    }

    .laurel-decoration {
        width: 140px;
        height: 140px;
    }

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

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

    .plan-card.recommended {
        transform: scale(1.0);
    }

    /* Footer */
    .footer {}

    .footer-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex-basis: 100%;
        text-align: center;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }


    .footer-logo,
    .footer-links,
    .footer-link-group {
        max-width: 100%;
        align-items: center;
    }

    .footer-link-group ul {
        text-align: center;
    }

    /* End Footer */


}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 120px;
    }

    .laurel-decoration {
        width: 120px;
        height: 120px;
        padding: 1.5rem 1rem;
    }

    .laurel-decoration::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-sublabel {
        font-size: 0.75rem;
    }

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

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .simple-solution {
        margin: 1.5rem auto;
    }

    .simple-solution .solution-text {
        font-size: 1.3rem;
    }

    .cost-breakdown {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .badge-main {
        font-size: 1.6rem;
    }

    .badge-accent {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .problem-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    /* New Pricing Section Mobile Adjustment */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* New FAQ Section Mobile Adjustments */
    .faq-question {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .note-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer {
        padding-top: 60px;
        /* padding-bottom: 60px; */
    }

}

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

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title-highlight {
        padding: 0.1rem 0.75rem;
        font-size: 0.9em;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-item {
        width: 100%;
        max-width: 150px;
    }

    .laurel-decoration {
        width: 130px;
        height: 130px;
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-sublabel {
        font-size: 0.75rem;
    }

    .simple-solution {
        margin: 1rem auto;
    }

    .simple-solution .solution-text {
        font-size: 1.2rem;
    }

    .simple-arrow {
        font-size: 2.5rem;
    }

    .cost-breakdown {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cost-card {
        padding: 1.5rem;
    }

    .cost-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .badge-main {
        font-size: 1.4rem;
    }

    .badge-accent {
        font-size: 1rem;
    }

    .subsidy-badge {
        padding: 1.5rem;
    }

    .subsidy-details {
        padding: 1.5rem;
    }
    .note-articles-grid {
        grid-template-columns: 1fr;
    }
}