/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 学研カラー */
    --primary-color: #FF6B35;
    --primary-dark: #E55A2A;
    --primary-light: #FF8D66;
    
    --secondary-color: #FFC857;
    --secondary-light: #FFD580;
    
    --accent-green: #4ECDC4;
    --accent-blue: #4A90E2;
    
    /* ニュートラルカラー */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    
    --bg-white: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-cream: #FFF9F0;
    --bg-gray: #F5F5F5;
    
    --border-color: #E0E0E0;
    
    /* シャドウ */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    /* フォント */
    --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-rounded: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    
    /* トランジション */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.8;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--bg-cream);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--font-rounded);
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo h1 {
    font-family: var(--font-rounded);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
}

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

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 600;
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary,
.btn-outline,
.btn-primary-small {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary-small {
    padding: 10px 24px;
    font-size: 14px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-primary i,
.btn-outline i {
    margin-right: 8px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 200, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-rounded);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-feature i {
    color: var(--accent-green);
    font-size: 20px;
}

.hero-cta {
    text-align: left;
    margin-top: 40px;
}

.hero-cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
    text-align: left;
}

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

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border-radius: 30px;
}

.fv_pic{
    border-radius: 30px;
}


.hero-wave {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave path {
    fill: var(--bg-white);
}

/* ==========================================
   Concerns Section
   ========================================== */
.concerns {
    background-color: var(--bg-white);
}

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

.concern-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition);
}

.concern-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.concern-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.concern-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.concern-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.concern-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.concerns-conclusion {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-white));
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.concerns-text {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.concerns-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.concerns-brand {
    font-family: var(--font-rounded);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
}

/* ==========================================
   Method Section
   ========================================== */
.method {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.method-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.method-card.featured {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-white));
    border: 3px solid var(--secondary-color);
}

.method-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.method-number {
    font-family: var(--font-rounded);
    font-size: 47px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: -8px;
}

.method-icon {
    display: none;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.method-pic{
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pic{
    border-radius: 20px;
}

.method-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.method-title {
    font-family: var(--font-rounded);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.method-catchphrase {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.method-features {
    list-style: none;
}

.method-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.method-features i {
    color: var(--accent-green);
    font-size: 16px;
    margin-top: 2px;
}

/* ==========================================
   Comparison Section
   ========================================== */
.comparison {
    background-color: var(--bg-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.comparison-table thead th {
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

.comparison-table td {
    padding: 20px;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}

.comparison-category {
    font-weight: 700;
    color: var(--text-primary);
    background-color: var(--bg-gray);
    text-align: left !important;
}

.comparison-gakken {
    background-color: var(--bg-cream);
    font-weight: 600;
}

.comparison-table strong {
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-table small {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

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

.comparison-conclusion-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.comparison-conclusion-box h3 {
    font-family: var(--font-rounded);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.comparison-conclusion-box h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.comparison-conclusion-box p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
}

.comparison-conclusion-box .highlight-text {
    display: block;
    margin-top: 16px;
    padding: 16px 24px;
    background-color: #fff;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-label {
    display: inline-block;
    background-color: var(--bg-cream);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.result-label {
    background-color: var(--accent-green);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.result-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================
   Seasonal Section
   ========================================== */
.seasonal {
    background-color: var(--bg-white);
}

.seasonal-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.seasonal-tab {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    background-color: var(--bg-light);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.seasonal-tab:hover {
    background-color: var(--bg-gray);
}

.seasonal-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

.seasonal-panel {
    display: none;
}

.seasonal-panel.active {
    display: block;
}

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

.seasonal-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.seasonal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.seasonal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seasonal-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.seasonal-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.seasonal-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.seasonal-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-white));
    border-radius: 20px;
}

.seasonal-cta-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.pricing-highlight {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-highlight-text i {
    color: var(--accent-green);
    margin-right: 8px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-white));
    border: 3px solid var(--secondary-color);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-title {
    font-family: var(--font-rounded);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-family: var(--font-rounded);
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
}

.price-unit {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.pricing-features i {
    color: var(--accent-green);
    font-size: 18px;
    margin-top: 2px;
}

.pricing-note {
    text-align: center;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 40px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.pricing-comparison-box {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-white));
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.pricing-comparison-box h3 {
    font-family: var(--font-rounded);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
}

.pricing-comparison-box h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.pricing-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-comparison-item {
    text-align: center;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 16px;
}

.pricing-comparison-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.price-large {
    font-family: var(--font-rounded);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.price-detail {
    font-size: 13px;
    color: var(--text-light);
}

.pricing-comparison-note {
    text-align: center;
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
}

.pricing-comparison-note strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

/* ==========================================
   Flow Section
   ========================================== */
.flow {
    background-color: var(--bg-white);
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.flow-number {
    display: inline-block;
    font-family: var(--font-rounded);
    font-size: 14px;
    font-weight: 900;
    color: var(--bg-white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.flow-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.flow-icon i {
    font-size: 48px;
    color: var(--bg-white);
}

.flow-title {
    font-family: var(--font-rounded);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.flow-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.flow-arrow {
    text-align: center;
    padding: 24px 0;
}

.flow-arrow i {
    font-size: 32px;
    color: var(--primary-color);
}

.flow-note {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background-color: var(--bg-cream);
    border-radius: 12px;
}

.flow-note p {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.flow-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 100px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: var(--font-rounded);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 24px;
}

.final-cta-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-text strong {
    font-weight: 700;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

.final-cta-feature i {
    font-size: 28px;
    color: var(--secondary-color);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.final-cta-buttons .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.final-cta-buttons .btn-primary:hover {
    background-color: var(--bg-cream);
}

.final-cta-buttons .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.final-cta-buttons .btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.final-cta-note {
    font-size: 14px;
    opacity: 0.85;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--text-primary);
    color: var(--bg-white);
    padding: 60px 0 24px;
}

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

.footer-brand h3 {
    font-family: var(--font-rounded);
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.8;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 13px;
    opacity: 0.6;
    color: var(--secondary-color);
}

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
}

.scroll-top i {
    font-size: 24px;
}


/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .method-cards,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Header */
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-placeholder {
        max-width: 300px;
        margin-top: 30px;
    }
    
    .hero-image-placeholder i {
        font-size: 80px;
    }

    
    .hero-cta {
        text-align: center;
        margin-top: 40px;
    }

    .hero-cta-note {
        margin-top: 16px;
        font-size: 14px;
        color: var(--text-light);
        text-align: center;
    }
    
    /* Concerns */
    .concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .concerns-brand {
        font-size: 36px;
    }
    
    /* Comparison */
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table td,
    .comparison-table th {
        padding: 12px 8px;
    }
    
    /* Final CTA */
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-buttons a {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Buttons */
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Scroll Top */
    .scroll-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-top i {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .concerns-brand {
        font-size: 28px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
}

/* Utility Classes */


@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    
    .pc-only {
        display: none;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .hamburger,
    .mobile-menu,
    .scroll-top,
    .final-cta,
    .footer {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

.orenge{
    color: #FF6B35;
}

.black{
    color: #333333;
}

.fotter{
        padding: 18px 48px;
    font-size: 18px;
        display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: #FFFFFF;
    color: #ff4747;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary-small_cta{
    color: #FFF;
}

.highlight-text{
    background-color: rgb(255 255 255);
}