/* CSS Variables */
:root {
    --primary-color: #e3fc03;
    --secondary-color: #f2f2f2;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    /* font-size: clamp(2.5rem, 5vw, 4rem); */
    font-size: 4rem;
}

h2 {
    /* font-size: clamp(2rem, 4vw, 3rem); */
    font-size: 3rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 0 4px;
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.primary-button, .cta-button {
    background-color: var(--primary-color);
    color: var(--black);
}

.primary-button:hover, .cta-button:hover {
    background-color: #d4ed02;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-button {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--secondary-color);
}

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

.nav-logo h2 {
    color: var(--black);
    margin: 0;
    font-size: 1.5rem;
}
.nav-logo > a{
    text-decoration: none;
}
.nav-logo > a > img{
    width: 70px;
    display: block;
    margin: -10px 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 10px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-menu >li{
    height: fit-content;
    margin: auto 0;
}
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: var(--transition);
}

.nav-container > .cta-button{
    padding: 15px 20px;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-video{
    width: 100%;
    height: auto;
    aspect-ratio: 10 / 10;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.text-highlight{
    font-size: 5.5rem;
    /* color: #e3fc03;
    text-shadow: 0px 20px 8px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 2px #1a1a1a;
    text-stroke: 2px #FFF solid; */
    background: linear-gradient(90deg, #00e1ff 0%, #e3fc03 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-avatars {
    display: flex;
}

.stat-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -10px;
}

.stat-avatars img:first-child {
    margin-left: 0;
}

.stat-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--black);
}

.stat-text span {
    color: var(--gray-medium);
}

.hero-quote {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    max-width: 300px;
}

.hero-quote blockquote {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.hero-quote cite {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: -1;
}

.hero-brands {
    margin-top: 4rem;
    text-align: center;
}

.hero-brands p {
    margin-bottom: 2rem;
    color: var(--gray-medium);
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    /* opacity: 0.6; */
}

.brands-container img {
    height: 250px;
    width: auto;
    /* filter: grayscale(100%); */
    /* transition: var(--transition); */
}
.badge-spcial{
    scale: 1.2;
}

.brands-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 85px;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature p {
    margin: 0;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.stat-card p {
    margin: 0;
    font-weight: 600;
    color: var(--gray-dark);
}

/* Courses Section */
.courses-page{
    padding-top: 150px;
}
.courses {
    background-color: var(--secondary-color);
}

.course-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-item.active,
.category-item:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.category-icon {
    font-size: 2rem;
}

.category-item h4 {
    margin: 0;
    font-size: 1.2rem;
}

.category-item span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.courses-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    display: flex;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: space-around;
}
.courses-grid > a{
    text-decoration: none;
    color: #1a1a1a;
    max-width: 350px;
    display: block;
    /* margin: 10px; */
    margin-bottom: 20px;
}
.courses-grid > a:hover{
    color: #e3fc03;
}

.course-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    max-width: 350px;
}

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

.course-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1420/1000;
    object-fit: cover;
    transition: var(--transition);
}

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

.course-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.course-content {
    padding: 2rem;
    height: calc(100% - 200px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.course-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.course-meta span {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.course-content p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructor img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.instructor span {
    font-weight: 500;
    font-size: 0.9rem;
}

.course-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
}

.view-all-button {
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    text-align: center;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--black);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    z-index: 3;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--black);
}

.step p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-features span {
    background-color: var(--secondary-color);
    color: var(--gray-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Section */
.team {
    background-color: var(--secondary-color);
}

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

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-flex{
    display: flex;
    justify-content: space-around;
    
}
.team-flex > img{
    width: 50%;
    max-width: 500px;
    margin-right: 40px;
    display: block;
    box-shadow: var(--shadow-lg);
    border: #fff 3px solid;
    border-radius: 20px;
}
.team-flex > img:hover{
    /* scale: 1.1; */
    transform: scale(1.05);
    transition: var(--transition);
}
.team-texts{
    width: 45%;
    max-width: 450px;
}

.member-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 300px);
    justify-content: space-between;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.member-role {
    color: #ff9800;
    
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--gray-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background-color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    max-width: 560px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing {
    /* background-color: var(--secondary-color); */
    background-color: #fff;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background-color: var(--primary-color);
    color: var(--black);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

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

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.pricing-header p {
    margin-bottom: 2rem;
    color: var(--gray-medium);
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
}

.price-period {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--secondary-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-get-started{
    width: 100%;
    display: block;
    font-size: .85rem;
    text-decoration: none;
    padding: .8rem !important;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-button.primary {
    background-color: var(--primary-color);
    color: var(--black);
}

.pricing-button.secondary {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
}

.pricing-button:hover {
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    color: var(--gray-medium);
    font-style: italic;
}



/* pricing new */
.pricing-contents{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.pricing-content-section{
    width: 45%;
    margin: auto;
    min-width: 340px;
}

.pricing-addons{
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    border: #e3fc03 2px solid;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    position: relative;
}
.pricing-message{
    width: 90%;
    max-width: 800px;
    margin: 10px auto;
    text-align: center;
}
.pricing-addons > h3{
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}
.pricing-addon{
    margin: 20px 0;
    list-style: none;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
}
.pricing-addon-surface{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    /* background-color: #f2f2f2; */
    /* box-shadow: var(--shadow-md); */
    transition: var(--transition);
    cursor: pointer;
}
.pricing-addon-surface > h3{
    font-size: 1rem;
    margin-bottom: 0;
    margin: auto 0;
}
.pricing-addon-surface > span{
    font-size: 1.1rem;
    margin: auto 0;
    display: block;
}

.pricing-addon-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.pricing-addon-description.addon-active {
    max-height: 200px;
    opacity: 1;
}

.pricing-addon-description > p{
    padding: 10px 20px;
    margin-bottom: 0;
}
/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial-text p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray-dark);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.author-info p {
    margin-bottom: 0.5rem;
    color: var(--gray-medium);
    font-size: 1rem;
}

.rating {
    font-size: 1.2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

/* FAQ Section */
.faq {
    background-color: var(--secondary-color);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 1rem 2rem 2rem;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4ed02 100%);
    color: var(--black);
}

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

.cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--gray-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta .secondary-button {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta .secondary-button:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.cta-feature span {
    font-size: 2rem;
    background-color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-feature strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.cta-feature p {
    margin: 0;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 2rem;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info p {
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-divider {
    height: 1px;
    background-color: #333;
    margin-bottom: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    margin: 0;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.pricing .carousel-dots{
    display: none;
}

/* カルーセル用のCSS追加 */
/* カルーセル用のCSS追加 */
@media (max-width: 1012px) {
    .carousel-container {
        position: relative;
        margin: 0 auto;
        overflow: hidden;
    }
    
    /* 2枚表示用コンテナ */
    .carousel-container.two-cards {
        width: 700px; /* 340px × 2 + 20px gap */
    }
    
    /* 1枚表示用コンテナ */
    .carousel-container.one-card {
        width: 340px;
    }
    
    .pricing-grid {
        position: relative;
        display: flex;
        transition: transform 0.3s ease;
        gap: 20px;
        width: 1040px; /* 340px × 3 + 20px × 2 = 1040px */
    }
    
    .pricing-card {
        min-width: 340px;
        max-width: 340px;
        flex-shrink: 0;
    }
    
    /* ドットナビゲーション */
    .pricing-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 30px;
        padding: 0;
        list-style: none;
    }
    
    .pricing-carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: none;
    }
    
    .pricing-carousel-dot.active {
        background-color: #e3fc03;
    }
    
    .pricing-carousel-dot:hover {
        background-color: #999;
    }

    .products-contents{
        flex-direction: column-reverse;
    }
    .products-lists{
        width: fit-content;
        margin: 0 auto;
    }
    .products-content > a{
        margin-top: 50px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    .nav-menu >li{
        /* height: 100%; */
        margin: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
    .hero-image{
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-social{
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }
    .courses-grid{
        width: fit-content;
        margin: 0 auto;
    }
    .view-all-button{
        margin-top: 40px;
    }

    .nav-menu{
        margin: 0;
        display: none;
        box-shadow: none;
    }
    .nav-menu.active{
        display: flex;
    }

    .brands-container img.brand-badge-1{
        order: 3;
    }
    .brands-container img.badge-spcial{
        order: 1;
        margin: 30px 200px;
    }
    .brands-container img.brand-badge-3{
        order: 2;
    }
    .pricing-card{
        margin: 30px 0;
    }
    .pricing-badge{
        white-space: nowrap;
    }
    .pricing-addons{
        width: 100%;
        padding: 3rem 1rem;
    }
    .team-flex{
        flex-direction: column;
    }
    .team-flex > img{
        width: 100%;
        margin: 30px auto;
        object-fit: cover;
    }
    .team-texts{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .team-texts > h2{
        font-size: 2.8rem;
    }


    /* buy page */
    .products-contents{
        flex-direction: column-reverse;
    }
    .products-lists{
        flex-direction: column;
    }
    .products-content{
        width: 100% !important;
        margin-top: 50px !important;
    }
    .products-content > a{
        /* max-width: 100% !important; */
        margin: 0 auto;
    }
    .count-title-line{
        font-size: 4rem !important;
    }
    .discount-coupon-title{
        font-size: 1.5rem !important;
    }
    #countdown > .time-box{
        width: 70px !important;
    }
    .time-box > .number{
        font-size: 2.5rem !important;
    }
    .discount-coupon{
        flex-direction: column;
        padding: 30px 10px !important;
        width: 95% !important;
    }
    #countdown > .time-box{
        margin: 0 5px !important;
    }
}

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

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-content > h1{
        font-size: 2.8rem;
    }
    .text-highlight > span{
        font-size: 3rem;
    }
    .brands-container img.brand-badge-1{
        order: 1;
    }
    .brands-container img.badge-spcial{
        order: 2;
    }
    .brands-container img.brand-badge-3{
        order: 3;
    }
    .about-text > h2{
        font-size: 3rem;
    }
    .section-header{
        margin-bottom: 2rem;
    }
    .hero-container{
        gap: 0;
    }
    .footer-links {
        gap: 1rem;
    }

    .discount-coupon-container{
        padding: 0 0 30px !important;
    }
}
@media (max-width: 380px) {
    .pricing-content-section{
        min-width: 320px;
    }
    .pricing-card{
        max-width: 320px;
        min-width: 320px;
    }
}

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

.hero-content,
.section-header,
.about-features .feature,
.course-card,
.team-member,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4ed02;
}




/* 
    Policy
*/

.policy{
    padding: 100px 3% 3%;
}
.terms-intros{
    margin: 20px 0;
}
.terms-intros > h2{
    font-size: 1.4rem;
    text-align: center;
}
.policy p{
    font-size: 1rem;
    color: #1a1a1a;
}
.article{
    margin: 20px 0;
}
.article > h3{
    font-size: 1.2rem;
}
.article-sub-list{
    list-style: decimal;
    padding-left: 30px;
}
.article-sub-list > li{
    margin: 10px 0;
}
.article-sub-sub-list{
    list-style: none;
    padding-left: 10px;
}
.article-sub-sub-list > li{
    margin: 5px 0;
}
.privacy-article-footer{
    list-style: none;
    padding-left: 20px;
}
.privacy-article-footer li > span{
    font-weight: bold;
}

.tokushou_ul > h2{
    font-size: 1.4rem;
    margin: 50px 0;
    text-align: center;
}
.tokushou_ul {
    max-width: 800px;
    margin: 0 auto;
}
.tokushou_ul > li{
    list-style: none;
    margin: 30px 0;
}
.tokushou_ul > li > h3{
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-left: #333 solid 7px;
    padding-left: 10px;
}
.tokushou_ul > li > span{
    font-size: 1rem;
    padding-left: 20px;
}
.version-swich{
    margin: 20px auto;
    display: flex;
    width: fit-content;
}
.version-swich > a{
    text-decoration: none;
    color: #fff;
    background-color: #1a1a1a;
    display: block;
    padding: 10px 15px;
    width: fit-content;
    border: #1a1a1a 2px solid;
}.version-swich > a:hover{
    background-color: #fff;
    color: #1a1a1a;
}
.version-swich > a:nth-child(1){
    border-right: #fff solid 1px;
}
.article-descriptions > ul{
    padding-left: 30px;
}
.article-descriptions > ul > li{
    margin: 5px 0;
}
.article-descriptions > ul > li > a{
    color: #1a1a1a;
}
.article-descriptions > ul > li > a:hover{
    color: #d4ed02;
}


.hidden {
    display: none;
}



/* cta-form */
.cta-form{
    width: 80%;
    margin: 20px auto 50px;
    display: none;
    scroll-margin-top: 150px;
    transition: var(--transition);
}
.form-fields{
    display: flex;
    justify-content: space-between;
}
.form-fields > .form-field{
    width: 49%;
}
.form-field > input, .form-field > select, .form-field > textarea{
    width: 100%;
    padding: 15px 0;
    border: none;
    text-align: center;
    /* outline: #1a1a1a 2px solid; */
    background-color: #fff;
    border-radius: 5px;
    outline: none;
    color: #1a1a1a;
}
.form-field > select{
    font-weight: bold;
}
.form-field{
    margin: 10px 0;
}
.form-field > h3{
    text-align: left;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.form-field > textarea{
    text-align: left;
    resize: none;
    height: 150px;
    padding: 15px;
}
.cta-content > form > button{
    padding: 13px 0;
    display: block;
    width: 100%;
    background-color: #fff;
    outline: none;
    border: none;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.1rem;
    border: #fff 2px solid;
}
.cta-content > form > button:hover{
    background-color: #1a1a1a;
    color: #fff;
    border: #1a1a1a 2px solid;
}


.header-btn{
    background-color: #e3fc03;
    color: #1a1a1a;
    font-size: 1.2rem;
    display: block;
    padding: 10px 40px 10px 30px;
    width: fit-content;
    text-align: center;

    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    position: relative;
}
.header-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 4px solid #000000;
    border-right: 4px solid rgb(0, 0, 0);
  }
  .header-btn:hover{
    background-color: #d4ed02;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
.hero-btn-contact{
    padding: 13px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    background-color: var(--primary-color);
    color: var(--black);
}
.hero-btn-contact:hover{
    background-color: #d4ed02;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.hero-btn-order{
    padding: 13px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
}
.hero-btn-order:hover{
    background-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-2px);
}



.thank-you-section {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #333;
    padding: 50px 3% 0;
  }
  
  .thank-you-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .thank-you-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .btn-home {
    background-color: #e3fc03;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .btn-home:hover {
    background-color: #d4ed02;
  }
  




/*  */
/* products page */
/*  */

.products{
    padding-top: 120px;
    padding-bottom: 30px;
}
.products-top{
    padding: 0 3%;
}
.products-top > h2{
    font-size: 2.5rem;
    text-align: center;
}

.products-contents{
    display: flex;
    width: 95%;
    margin: 40px auto;
    max-width: 960px;
}
.tent{
    width: 30%;
    display: inline-block;
    margin: auto 10px;
}
.products-content > a{
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    display: block;
    padding: 0 20px;
    /* box-shadow: var(--shadow-sm); */
}
.products-content > a > img{
    width: 100%;
    display: block;
}
.products-content > a > h2{
    font-size: 1.2rem;
    text-align: center;
    color: #333;
}

.products-lists{
    display: flex;
    /* width: 70%; */
    gap: 30px;
    /* border-left: #6c757d 2px solid; */
    padding-left: 20px;
}
.products-lists > li{
    width: 50%;
    width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
    box-shadow: var(--shadow-md);
    padding: 45px 10px 20px;
    list-style: none;
    border-radius: 20px;
}
.products-lists > li > img{
    width: 60%;
    max-width: 130px;
    aspect-ratio: 1/1;
    height: auto;
    background-color: #fff;
    filter: drop-shadow(rgba(0, 0, 0, 0.07) 0px 2px 4px) drop-shadow(rgba(0, 0, 0, 0.05) 0px 1px 1.5px);
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}
.product-details{
    margin: 15px 0 0;
}
.product-details > h3{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(79, 79, 79);
    text-align: center;
    margin-bottom: 0;
}
.product-details > span{
    font-size: .9rem;
    display: block;
    text-align: center;
    margin-top: -2px;
    color: #999;
    font-weight: 200;
}
.product-price{
    display: block;
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}
.product-include{
    background-color: fff;
    /* box-shadow: var(--shadow-md); */
    width: 100%;
    padding: 10px 3%;
    display: flex;
    width: fit-content;
    margin: 0 auto;
}
.product-include > p{
    font-size: 1rem;
    margin-bottom: 0;
    /* color: #333; */
    text-align: center;
    border-radius: 10px;
}
.product-purchase-btn{
    width: 90%;
    background-color: #e3fc03;
    color: #000000;
    padding: 10px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    margin: 20px auto 0;
    box-shadow: var(--shadow-md);
}
.product-purchase-btn:hover{
    background-color: #d4ed02;
}
.product-accept-cards{
    margin: 5px 0;
}
.product-accept-cards > span{
    color: #999;
    font-size: .9rem;
    text-align: center;
    font-weight: 200;
    display: block;
}
.product-accept-cards > ul{
    display: flex;
    width: fit-content;
    margin: 0 auto;
}
.product-accept-cards > ul > li{
    margin: auto 5px;
    list-style: none;
    height: fit-content;
}
.product-accept-cards > ul > li > img{
    width: 30px;
    display: block;
    margin: auto 0;
    /* object-fit: cover; */
    border-radius: 3px;
}
.product-accept-cards > ul > li:nth-child(3) > img{
    aspect-ratio: 16/9;
    height: auto;
}.product-accept-cards > ul > li:nth-child(4) > img{
    width: 40px;
}

.discount-coupon{
    width: 90%;
    max-width: 980px;
    margin: 30px auto;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    padding: 30px 80px 40px;
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    color: #fff;
    display: flex;
}
.discount-coupon-title{
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem !important;
    text-align: center;
    /* margin-bottom: 0; */
}
.count-title-line{
    font-size: 5rem;
    display: block;
    text-align: center;
    line-height: 1;
}
.discount-coupon > span{
    color: #fffefe;
    font-size: 1.3rem;
    text-align: center;
    /* margin: 10px 0 5px; */
    font-weight: bold;
    display: block;

}
#countdown{
    display: flex;
    width: fit-content;
    margin: 10px auto 0;
    margin: auto;
}
#countdown > .time-box > span{
    display: block;
    text-align: center;
}
#countdown > .time-box{
    width: 80px;
    background-color: #fff;
    margin: 0 10px;
    border-radius: 15px;
    padding-bottom: 5px;
}
.time-box > .number{
    font-size: 3rem;
    font-weight: bold;
    color: #dc3545;
}
.time-box > .label{
    margin-top: -7px;
    font-size: .9rem;
    color: #d16d6d;
    font-weight: 300;
}
.products-content {
    display: inline-block;
    margin: auto;
}
.purchase-contact > h2{
    /* text-align: center; */
    font-size: 3rem;
    margin-bottom: 40px;
}

.purchase-contact{
    padding: 120px 0 40px;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
}
.purchase-form-field{
    margin: 20px 0;
}
.purchase-form-field > h3{
    margin-bottom: 10px;
    font-size: 1rem;
}
.purchase-form-field > h3 > span{
    color: red;
}
.purchase-form-field > input[type="text"], .purchase-form-field > input[type="email"]{
    width: 100%;
    padding: 10px 0;
    text-align: center;
    outline: none;
    border: #d9d9d9 2px solid;
    border-radius: 10px;
    font-size: 1.1rem;
}
.purchase-form-field > select{
    -webkit-appearance: none; /* Safari の標準 UI を消す */
    -moz-appearance: none;
    appearance: none;

    width: 100%;
    padding: 10px;             /* ← これで効くようになる */
    border: 2px solid #d9d9d9;
    border-radius: 10px;
    font-size: 1.1rem;
    background-color: #fff;

    text-align: center;
    text-align-last: center;
}
.purchase-form-field > textarea{
    width: 100%;
    resize: none;
    height: 150px;
    outline: none;
    border: #d9d9d9 2px solid;
    border-radius: 10px;
    padding: 10px 3%;
}
.purchase-contact > form > button{
    width: 90%;
    background-color: #e3fc03;
    color: #000000;
    padding: 15px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    margin: 20px auto 0;
    box-shadow: var(--shadow-md);
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
}
.purchase-contact > form > button:hover{
    background-color: #d4ed02;
}

.line-cross{
    text-decoration-line:line-through;
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration-color: #6c757d;
}

.coupon-pop-up {
    display: none; /* 最初は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* overlay */
    z-index: 9999; /* 一番前に */
    justify-content: center;
    align-items: center;
}
  
.close-btn {
    position: absolute;
    top: -5px;
    right: 15px;
    cursor: pointer;
    font-size: 3rem !important;
    font-weight: bold;
    z-index: 999;
    color: #fff;
}
  
.discount-coupon-container >  .discount-coupon{
    position: relative;
    max-width: 900px;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    background-image: none;
    padding: 0;
    gap: 20px;
    width: 100% !important;
    margin: 30px auto 0;
}

.discount-coupon-container{
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    position: relative;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    /* padding-bottom: 30px; */
    padding: 20px 30px 30px;
}
.discount-coupon-container > a{
    text-decoration: none;
    background-color: #fff;
    box-shadow: var(--shadow-md);
    padding: 10px 30px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    border-radius: 14px;
    color: #FF5722;
    font-weight: bold;
}