/* ============================================
   リセット & ベーススタイル
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-weight: 400;
    line-height: 1.9;
    color: #333333;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* ============================================
   共通スタイル
============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 769px) {
    .container {
        padding: 0 40px;
    }
}

.section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #333333;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666666;
    margin-bottom: 40px;
}

.section-lead {
    font-size: 1.2rem;
    text-align: center;
    color: #666666;
    margin-bottom: 60px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-lead {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

/* ============================================
   CTA ボタン
============================================ */
.cta-button {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    background: linear-gradient(135deg, #C9A86A 0%, #B8955A 100%);
    color: #FFFFFF;
}

.cta-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.cta-white {
    background: #FFFFFF;
    color: #C9A86A;
}

.cta-white:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-button .cta-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 5px;
    opacity: 0.9;
}

.cta-button .cta-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .cta-button .cta-text {
        font-size: 1.1rem;
    }
}

/* ============================================
   アニメーション
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ============================================
   Hero Section
============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    overflow: hidden;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
}

.hero-title-main {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333333;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 1.8rem;
    }
    
    .hero-title-sub {
        font-size: 1.3rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-top: 20px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-product {
    margin: 60px 0;
    animation: float 6s ease-in-out infinite;
}

.hero-product img {
    margin: 0 auto;
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .hero-product img {
        max-width: 250px;
    }
}

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

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

.hero-price {
    margin-top: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-original {
    color: #999999;
    text-decoration: line-through;
}

.price-arrow {
    color: #C9A86A;
    font-weight: 700;
}

.price-special {
    color: #C9A86A;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.price-tax {
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-price {
        font-size: 0.95rem;
    }
    
    .price-special {
        font-size: 1.5rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #C9A86A;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   Problems Section
============================================ */
.section-problems {
    background-color: #F5F1ED;
}

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

.problem-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-icon {
    font-size: 2.5rem;
    color: #C9A86A;
    margin-bottom: 20px;
}

.problem-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
}

.empathy-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.9;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .empathy-text {
        font-size: 1rem;
        padding: 30px 10px;
    }
}

/* ============================================
   Features Section
============================================ */
.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .feature-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
}

.feature-card-right {
    direction: rtl;
}

.feature-card-right > * {
    direction: ltr;
}

.feature-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-content {
    padding: 20px;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .feature-title {
        font-size: 1.3rem;
    }
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C9A86A 0%, #B8955A 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.8;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A86A;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-list strong {
    color: #333333;
}

.highlight {
    color: #C9A86A;
    font-weight: 700;
}

.highlight-red {
    color: #D32F2F;
    font-weight: 700;
}

.large-number {
    font-size: 1.5rem;
    color: #C9A86A;
    font-weight: 700;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.small-text {
    font-size: 0.85rem;
    color: #999999;
}

/* ============================================
   Ingredients Section
============================================ */
.section-ingredients {
    background-color: #F5F5F5;
    position: relative;
}

.ingredients-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/botanical-ingredients.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.ingredient-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A86A 0%, #B8955A 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.ingredient-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: #C9A86A;
    margin-bottom: 15px;
}

.ingredient-effect {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
}

/* ============================================
   Texture Section
============================================ */
.texture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .texture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.texture-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.texture-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.texture-image:hover img {
    transform: scale(1.05);
}

.texture-text {
    padding: 20px;
}

.texture-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .texture-description {
        font-size: 1rem;
    }
}

.usage-steps {
    margin-top: 40px;
    background: #F5F1ED;
    padding: 30px;
    border-radius: 15px;
}

.usage-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
    color: #333333;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #FFFFFF;
    border-radius: 10px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    background: linear-gradient(135deg, #C9A86A 0%, #B8955A 100%);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 0.05em;
}

.step-text {
    font-size: 1rem;
    color: #333333;
}

/* ============================================
   Statistics Section
============================================ */
.section-statistics {
    background-color: #F5F1ED;
}

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

@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.stat-card {
    background: #FFFFFF;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: #C9A86A;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -0.02em;
}

.percent {
    font-size: 3rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
        letter-spacing: -0.01em;
    }
    
    .percent {
        font-size: 2rem;
    }
}

.stat-text {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
}

.stat-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.6;
}

/* ============================================
   Reviews Section
============================================ */
.section-reviews {
    position: relative;
}

.reviews-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/woman-applying.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.review-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: #F5F1ED;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.review-stars {
    margin-bottom: 20px;
    text-align: center;
}

.review-stars i {
    color: #C9A86A;
    font-size: 1.2rem;
    margin: 0 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-author {
    font-size: 0.9rem;
    color: #999999;
    text-align: right;
    font-style: italic;
}

/* ============================================
   Product Details Section
============================================ */
.section-product-details {
    background-color: #F5F5F5;
}

.product-details-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .product-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.product-details-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.product-details-image img {
    width: 100%;
}

.product-details-info {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .product-details-info {
        padding: 30px 20px;
    }
}

.product-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.product-table tr {
    border-bottom: 1px solid #E8E8E8;
}

.product-table th,
.product-table td {
    padding: 15px 10px;
    text-align: left;
}

.product-table th {
    width: 30%;
    font-weight: 500;
    color: #666666;
}

.product-table td {
    font-weight: 400;
    color: #333333;
}

.special-offer {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #C9A86A;
}

.offer-badge {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #C9A86A;
    margin-bottom: 20px;
}

.offer-price {
    text-align: center;
    margin-bottom: 20px;
}

.offer-discount {
    display: inline-block;
    background: #D32F2F;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 15px;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.offer-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #C9A86A;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -0.02em;
}

.offer-yen {
    font-size: 1.3rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .offer-amount {
        font-size: 2.2rem;
    }
}

.offer-benefits {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-benefits li {
    font-size: 1rem;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-benefits i {
    color: #C9A86A;
}

.subscription-info {
    background: #F5F1ED;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.subscription-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333333;
}

.subscription-list {
    list-style: none;
}

.subscription-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
}

.subscription-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C9A86A;
    font-size: 1.5rem;
}

.ingredients-full {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E8E8E8;
}

.ingredients-full details {
    cursor: pointer;
}

.ingredients-full summary {
    font-weight: 500;
    color: #666666;
    padding: 10px;
    background: #F5F5F5;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.ingredients-full summary:hover {
    background: #ECECEC;
}

.ingredients-text {
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666666;
}

/* ============================================
   FAQ Section
============================================ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    cursor: pointer;
}

.faq-question:hover {
    background: #F5F1ED;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}

.faq-icon {
    color: #C9A86A;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
}

@media (max-width: 768px) {
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* ============================================
   Company Section
============================================ */
.section-company {
    background-color: #F5F1ED;
}

.company-message {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.message-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #333333;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .message-text {
        font-size: 1rem;
    }
}

.message-signature {
    font-size: 1rem;
    color: #666666;
    font-style: italic;
    margin-top: 40px;
}

.company-info {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .company-info {
        padding: 30px 20px;
    }
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-bottom: 1px solid #E8E8E8;
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table th,
.company-table td {
    padding: 15px 10px;
    text-align: left;
}

.company-table th {
    width: 30%;
    font-weight: 500;
    color: #666666;
}

@media (max-width: 768px) {
    .company-table th {
        width: 35%;
    }
}

.company-table td {
    font-weight: 400;
    color: #333333;
}

/* ============================================
   Final CTA Section
============================================ */
.section-final-cta {
    background: linear-gradient(135deg, #C9A86A 0%, #B8955A 100%);
    color: #FFFFFF;
    padding: 100px 20px;
}

@media (max-width: 768px) {
    .section-final-cta {
        padding: 60px 20px;
    }
}

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

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

.final-cta-price {
    margin-top: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    color: #FFFFFF;
}

.price-arrow-white {
    color: #FFFFFF !important;
}

.price-special-white {
    color: #FFFFFF !important;
}

.final-cta-benefits {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit i {
    color: #FFFFFF;
}

.security-badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

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

/* ============================================
   Footer
============================================ */
.footer {
    background-color: #2C2C2C;
    color: #CCCCCC;
    padding: 60px 0 20px;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-column {
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C9A86A;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CCCCCC;
}

.footer-contact i {
    color: #C9A86A;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #3C3C3C;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #C9A86A;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3C3C3C;
}

.footer-legal {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #C9A86A;
}

.separator {
    margin: 0 10px;
    color: #666666;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999999;
}
