/*
    Enhanced Animations, Movements, and Custom Mouse Cursor Styles
    -------------------------------------------------------------
    - Adds more lively animations to cards, buttons, and sections.
    - Adds a custom animated mouse cursor effect.
    - Animations on hover and on load for various elements.
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    cursor: none;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    width: 100vw;
    max-width: 100vw;
}

main,
.main,
#main,
.container,
.hero-container,
.nav-container {
    max-width: 100vw;
    box-sizing: border-box;
    /* Remove overflow-x: hidden or auto to prevent scrollbars on sections */
    /* overflow-x: hidden; */
}

.cotton-candy-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}

.cotton-candy-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.7;
    mix-blend-mode: lighten;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.cotton-candy-bg::before,
.cotton-candy-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatBlob 20s ease-in-out infinite alternate;
}

.cotton-candy-bg::before {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cotton-candy-bg::after {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    top: 60%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(100px, -50px) scale(1.2) rotate(180deg);
    }

    100% {
        transform: translate(200px, 100px) scale(0.8) rotate(360deg);
    }
}

/* Custom Mouse Cursor with Pink/Blue Theme */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 157, 0.2);
    border: 2px solid #ff6b9d;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: multiply;
    will-change: transform, background, border;
    backdrop-filter: blur(4px);
}

.custom-cursor.cursor-hover {
    background: rgba(116, 185, 255, 0.4);
    border: 2px solid #74b9ff;
    transform: translate(-50%, -50%) scale(1.8);
    box-shadow: 0 0 20px rgba(116, 185, 255, 0.6);
}

.custom-cursor.cursor-click {
    background: rgba(255, 107, 157, 0.8);
    border: 2px solid #fff;
    transform: translate(-50%, -50%) scale(0.6);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.8);
}

/* Navigation - Transparent with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: navbarFadeIn 1s 0.2s both;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.1);
    /* Remove overflow-x: hidden to prevent scrollbars on navbar */
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.2);
}

@keyframes navbarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    animation: logoPopIn 1s 0.5s both;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

@keyframes logoPopIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    /* Remove overflow-x: auto and max-width to prevent scrollbars */
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    padding: 8px 0;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #ff6b9d;
    text-shadow: 0 2px 8px rgba(255, 107, 157, 0.4);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #74b9ff);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.4);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s 0.7s both;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    transition: transform 0.3s cubic-bezier(.22, 1, .36, 1);
}

.hamburger:hover {
    transform: scale(1.1) rotate(5deg);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
}

/* Buttons with Pink/Blue Theme and Glow Effects */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #c44569, #ff6b9d);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #2c3e50;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #74b9ff;
    border: 2px solid #74b9ff;
}

.btn-outline:hover,
.btn-outline:focus {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 1000px;
        padding: 0 16px;
        width: 100vw;
        box-sizing: border-box;
    }

    .nav-menu {
        gap: 32px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 14px 26px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .nav-container {
        max-width: 100vw;
        padding: 0 10px;
        height: 64px;
        width: 100vw;
        box-sizing: border-box;
    }

    .nav-logo {
        font-size: 22px;
        gap: 8px;
    }

    .nav-logo i {
        font-size: 22px;
    }

    .nav-menu {
        gap: 18px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (max-width: 700px) {
    .nav-container {
        flex-direction: row;
        height: 56px;
        padding: 0 6px;
        width: 100vw;
        box-sizing: border-box;
    }

    .nav-logo {
        font-size: 18px;
        gap: 6px;
    }

    .nav-logo i {
        font-size: 18px;
    }

    .nav-menu {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 12px;
        font-size: 12px;
    }

    .btn-large {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 15px;
        width: 100vw;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .nav-container {
        flex-direction: row;
        height: 48px;
        padding: 0 2vw;
        width: 100vw;
        box-sizing: border-box;
    }

    .nav-logo {
        font-size: 15px;
        gap: 4px;
    }

    .nav-logo i {
        font-size: 15px;
    }

    .nav-menu {
        gap: 6px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 6px 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 8px 8px;
        font-size: 11px;
    }

    .btn-large {
        padding: 10px 12px;
        font-size: 12px;
    }

    .custom-cursor {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
        width: 100vw;
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .nav-container {
        flex-direction: row;
        height: 40px;
        padding: 0 1vw;
        width: 100vw;
        box-sizing: border-box;
    }

    .nav-logo {
        font-size: 12px;
        gap: 2px;
    }

    .nav-logo img {
        height: 16px;
        width: auto;
    }

    .nav-logo i {
        font-size: 10px;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-menu a {
        font-size: 11px;
        padding: 4px 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 18px;
        font-size: 15px;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 17px;
    }

    .custom-cursor {
        width: 16px;
        height: 16px;
    }
}

/* End Responsive Styles */

/* Hero Section with Pink/Blue Theme */
.hero {
    padding: 195px 0 0;
    background: url('cc1.png') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    animation: heroFadeIn 1.2s 0.2s both;
    position: relative;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    z-index: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    /* Remove overflow-x: auto/scroll to prevent scrollbars on hero */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.2;
    animation: floatSlow 15s ease-in-out infinite;
}

.hero .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d, #fd79a8);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.15;
    animation: float 18s ease-in-out infinite;
}

.hero .floating-element:nth-child(1) {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.hero .floating-element:nth-child(2) {
    top: 70%;
    left: 20%;
    animation-delay: -5s;
}

.hero .floating-element:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #2c3e50;
    animation: fadeInUp 1s 0.4s both;
}

.gradient-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #eb3974, #63acf5, #f05e91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s linear infinite alternate;
    background-size: 200% 200%;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: -1;
    filter: blur(2.5px) brightness(1.2);
    opacity: 1.85;
    pointer-events: none;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 1s 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    animation: fadeInUp 1s 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s 1s both;
}

.stat {
    text-align: center;
    transition: transform 0.2s cubic-bezier(.22, 1, .36, 1);
}

.stat:hover {
    transform: scale(1.08) rotate(-2deg);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statBounce 1.2s 1.2s both;
}

@keyframes statBounce {
    0% {
        transform: scale(0.7);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Product Showcase with vending machine */
.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s 1.2s both;
}

/* Vending Machine Styling */
.vending-machine {
    width: 300px;
    height: 400px;
    background: #2c3e50;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.3);
    position: relative;
    overflow: hidden;
    animation: cardPopIn 1s 1.3s both;
}

.vending-machine:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 157, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

.vending-machine:hover .machine-screen {
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.4);
}

.vending-machine:hover .selection-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.machine-body {
    background: #34495e;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.machine-screen {
    background: #ecf0f1;
    border-radius: 10px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screen-content {
    text-align: center;
    color: #2c3e50;
}

.screen-content i {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 8px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

.cotton-candy-animation {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.spinning-sugar {
    width: 20px;
    height: 20px;
    background: #f39c12;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.cotton-cloud {
    width: 30px;
    height: 30px;
    background: #ecf0f1;
    border-radius: 50%;
    margin-top: 10px;
    animation: float 3s ease-in-out infinite;
}

.machine-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button-row {
    display: flex;
    gap: 10px;
}

.selection-btn {
    flex: 1;
    background: #3498db;
    color: white;
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selection-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.dispensing-area {
    height: 60px;
    background: #95a5a6;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cup-holder {
    width: 40px;
    height: 40px;
    background: #ecf0f1;
    border-radius: 50%;
    border: 3px solid #bdc3c7;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    50% {
        transform: translateY(-25px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.6);
        transform: scale(1.05);
    }
}

.product-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.product-dots {
    display: flex;
    gap: 8px;
}

.product-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e1e5e9;
    animation: dotPulse 1.5s infinite alternate;
}

.product-dots span:nth-child(1) {
    background: #ff6b6b;
    animation-delay: 0s;
}

.product-dots span:nth-child(2) {
    background: #feca57;
    animation-delay: 0.2s;
}

.product-dots span:nth-child(3) {
    background: #48dbfb;
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.dashboard-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 120px;
}

.chart-bar {
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 4px;
    height: 100%;
    animation: chartGrow 2s ease-out;
}

.chart-line {
    grid-column: span 3;
    height: 4px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
    margin-top: 10px;
    animation: lineGrow 1.2s 1.5s both;
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.metric-card {
    grid-column: span 3;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
    animation: fadeInUp 1s 1.6s both;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
}

@keyframes chartGrow {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

/* 425px and below (Mobile small) */
@media (max-width: 425px) {
    .hero {
        padding: 60px 0 0;
        min-height: 80vh;
    }
    .hero-container {
        max-width: 100vw;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 4vw;
    }
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .hero-description {
        font-size: 1.9rem;
        margin-bottom: 18px;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 95vw;
        box-sizing: border-box;
        padding-right: 0;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .product-showcase {
        flex-direction: column;
        gap: 16px;
    }
    .vending-machine {
        width: 98vw;
        max-width: 320px;
        height: 220px;
        padding: 8px;
        border-radius: 12px;
    }
    .machine-body {
        padding: 6px;
        border-radius: 8px;
    }
    .machine-screen {
        height: 60px;
        margin-bottom: 8px;
        border-radius: 6px;
    }
    .screen-content i {
        font-size: 16px;
    }
    .price {
        font-size: 13px;
    }
    .cotton-candy-animation {
        right: 8px;
    }
    .spinning-sugar {
        width: 12px;
        height: 12px;
    }
    .cotton-cloud {
        width: 16px;
        height: 16px;
        margin-top: 4px;
    }
    .machine-buttons {
        gap: 6px;
    }
    .button-row {
        gap: 4px;
    }
    .selection-btn {
        padding: 7px 2px;
        font-size: 9px;
        border-radius: 5px;
    }
    .dispensing-area {
        height: 28px;
        border-radius: 5px;
        margin-top: 6px;
    }
    .cup-holder {
        width: 18px;
        height: 18px;
        border-width: 2px;
    }
    .product-header {
        margin-bottom: 8px;
    }
    .product-dots span {
        width: 7px;
        height: 7px;
    }
    .dashboard-preview {
        height: 38px;
        gap: 3px;
    }
    .chart-bar {
        border-radius: 2px;
    }
    .chart-line {
        height: 2px;
        border-radius: 1px;
        margin-top: 3px;
    }
    .metric-card {
        border-radius: 4px;
        padding: 4px;
        margin-top: 4px;
    }
    .metric-value {
        font-size: 0.7rem;
    }
    .metric-label {
        font-size: 0.6rem;
    }
}

/* Responsive Styles for Hero and Product Showcase */

/* 1024px and below (Tablet landscape) */
@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 0;
    }

    .hero-container {
        max-width: 900px;
        gap: 40px;
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .product-showcase {
        flex-direction: column;
        gap: 30px;
    }

    .vending-machine {
        width: 250px;
        height: 340px;
        padding: 15px;
    }

    .dashboard-preview {
        height: 90px;
    }
}

/* 768px and below (Tablet portrait) */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 0;
    }

    .hero-container {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 8px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-stats {
        gap: 18px;
        justify-content: center;
    }

    .product-showcase {
        flex-direction: column;
        gap: 20px;
    }

    .vending-machine {
        width: 200px;
        height: 270px;
        padding: 10px;
    }

    .dashboard-preview {
        height: 60px;
    }
}










/* Section Headers with fade-in */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s 0.5s both;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s 0.7s both;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
    animation: fadeInUp 1s 0.8s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    overflow-x: auto;
    padding-top: 20px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
    scrollbar-width: none;
    /* Center the grid horizontally */
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.features-grid::-webkit-scrollbar {
    display: none;
}

.feature-card {
    min-width: 350px;
    max-width: 400px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s both;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b9d, #74b9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

@keyframes iconSpin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-icon i {
    font-size: 32px;
    color: white;
}



.section-header2 {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s 0.5s both;
}

.section-header2 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    animation: fadeInUp 1s 0.6s both;
    position: relative;
}

.section-header2 h2::after {
    content: "";
    display: block;
    margin: 0 auto;
    margin-top: -20px;
    width: 910px;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #b6dcff 100%);
    box-shadow: 0 2px 12px #ff6b9d33;
}

.section-header2 p {
    font-size: 1.3rem;
}

/* Responsive styles for .section-header2 */
@media (max-width: 1200px) {
    .section-header2 h2 {
        font-size: 2rem;
    }

    .section-header2 h2::after {
        width: 600px;
        height: 13px;
        margin-top: -16px;
    }

    .section-header2 p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        flex-direction: column;
        gap: 18px;
        padding-left: 6vw;
        padding-right: 4vw;
        margin-left: -50px;
        max-width: 100vw;
        width: 100vw;
        box-sizing: border-box;
        align-items: stretch;
    }

    .feature-card {
        min-width: 0;
        width: 100%;
        max-width: 100vw;
        padding: 18px 4vw;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) and (min-width: 601px) {
    .features-grid {
        flex-direction: column;
        gap: 14px;
        padding-left: 3vw;
        padding-right: 3vw;
        margin-left: -15px;
        max-width: 100vw;
        width: 100vw;
        box-sizing: border-box;
        align-items: stretch;
    }

    .feature-card {
        min-width: 0;
        width: 100%;
        max-width: 100vw;
        padding: 14px 3vw;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
}


@media (max-width: 900px) {
    .section-header2 {
        margin-bottom: 36px;
    }

    .section-header2 h2 {
        font-size: 1.5rem;
    }

    .section-header2 h2::after {
        width: 320px;
        height: 8px;
        margin-top: -10px;
    }

    .section-header2 p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .section-header2 {
        margin-bottom: 24px;
    }

    .section-header2 h2 {
        font-size: 1rem;
    }

    .section-header2 h2::after {
        width: 315px;
        height: 6px;
        margin-top: -6px;
        margin-right: 38px;
    }

    .section-header2 p {
        font-size: 0.95rem;
    }
}



.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive: Center on mobile and reduce padding */
@media (max-width: 900px) {
    .features-grid {
        padding-left: 10px;
        padding-right: 10px;
        gap: 16px;
        max-width: 100vw;
    }

    .feature-card {
        min-width: 260px;
        max-width: 95vw;
        padding: 28px 10px;
    }
}




/* Business Benefits Section - Bordstation inspired design */
.benefits {
    padding: 80px 0 80px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    left: 0;
    height: auto;
}

.section-header1 {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s 0.5s both;
}

.section-header1 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    animation: fadeInUp 1s 0.6s both;
    position: relative;
}

.section-header1 h2::after {
    content: "";
    display: block;
    margin: 0 auto;
    margin-top: -20px;
    width: 370px;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #b6dcff 100%);
    box-shadow: 0 2px 12px #ff6b9d33;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: rgb(245, 245, 245);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(255, 107, 157, 0.10);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(116, 186, 255, 0.158), transparent);
    transition: left 0.6s;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.18);
    border-color: rgba(116, 185, 255, 0.22);
}

.benefit-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 48px;
    margin-top: 2px;
}

.benefit-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.25;
}

.benefit-content p {
    font-size: 0.98rem;
    line-height: 1.5;
    color: #5a6c7d;
    margin: 0;
}

/* Tablet adjustments (max-width: 900px, min-width: 701px) */
@media (max-width: 900px) and (min-width: 701px) {
    .benefits {
        padding: 60px 0 60px 0;
        min-height: 80vh;
    }

    .benefits-grid {
        max-width: 98vw;
        gap: 20px;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 1fr);
    }

    .benefit-item {
        padding: 20px 12px;
        min-height: 110px;
    }

    .benefit-number {
        font-size: 28px;
        min-width: 40px;
    }

    .benefit-content h3 {
        font-size: 1.05rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }

    .section-header1 h2 {
        font-size: 2rem;
    }

    .section-header1 h2::after {
        width: 260px;
        height: 10px;
        margin-top: -14px;
    }
}

/* Mobile adjustments (max-width: 700px) */
@media (max-width: 700px) {
    .benefits {
        padding: 32px 0 !important;
        min-height: unset !important;
    }

    .benefits-grid {
        display: block !important;
        max-width: 100vw !important;
        gap: 0 !important;
    }

    .benefit-item {
        min-height: 0 !important;
        padding: 14px 6px !important;
        border-radius: 12px !important;
        margin-bottom: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .benefit-number {
        font-size: 22px !important;
        min-width: 28px !important;
    }

    .benefit-content h3 {
        font-size: 0.95rem !important;
    }

    .benefit-content p {
        font-size: 0.89rem !important;
    }

    .section-header1 {
        margin-bottom: 28px !important;
    }

    .section-header1 h2 {
        font-size: 1.2rem !important;
    }

    .section-header1 h2::after {
        width: 160px !important;
        height: 6px !important;
        margin-top: -7px !important;
    }
}






/* specs tabele */

/* Container fills full width with two-column grid */
.cottoncandy-specs {
    background: linear-gradient(135deg, #ffe5fa 22%, #e8f6ff 55%, #fffcd6 100%);
    min-height: 480px;
    width: 100vw;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 520px;
    align-items: center;
    gap: 80px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.specs-card {
    display: contents;
    /* allow grid children to align properly */
}

.specs-table {
    background: linear-gradient(125deg, #fff0fd 80%, #e8f6ff 100%);
    border-radius: 32px;
    padding: 48px 56px;
    box-shadow: 0 10px 40px #ffc3ea40;
    color: #3f3f56;
    animation: fadeSlideInLeft 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.specs-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.specs-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
}

.specs-table th {
    width: 45%;
    text-align: left;
    font-weight: 600;
    padding-right: 24px;
    font-size: 1.15rem;
    color: #74b9ff;
    vertical-align: top;
    border-right: 3px solid #74b9ff66;
}

.specs-table td {
    font-size: 1.5rem;
    padding-left: 24px;
    background: #fffbe5;
    border-radius: 8px;
    border-left: 8px solid #ffc3ea;
    color: #4a4a67;
}

/* Image side container - remove background, keep layout */
.specs-imagebox {
    background: none;
    border-radius: 32px;
    padding: 36px 24px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    animation: fadeSlideInRight 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    /* Make image area take more space */
    flex: 2 1 0;
}

/* Image styling - make much bigger and centered */
.specs-image {
    width: 200%;
    max-width: 200%;
    min-width: 0;
    max-height: 600px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: none;
    background: none;
    transition: transform 0.3s ease;
    height: auto;
    display: block;
    margin-left: -50%;
    margin-right: -50%;
}

.specs-image:hover {
    transform: scale(1.06);
}

@keyframes fadeSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.96);
    }

    70% {
        opacity: 1;
        transform: translateX(7px) scale(1.03);
    }

    80% {
        opacity: 1;
        transform: translateX(-5px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.92);
    }

    70% {
        opacity: 1;
        transform: translateX(-7px) scale(1.02);
    }

    80% {
        opacity: 1;
        transform: translateX(5px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ----------- Responsive Styles ----------- */

/* 1024px and below */
@media (max-width: 1024px) {
    .cottoncandy-specs {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 48px;
        min-height: auto;
    }

    .specs-table {
        padding: 36px 24px;
    }

    .specs-title {
        font-size: 2rem;
    }

    .specs-imagebox {
        min-height: 280px;
        padding: 24px 8px;
    }

    .specs-image {
        max-width: 100%;
        width: 100%;
        max-height: 340px;
        margin-left: 0;
        margin-right: 0;
    }

    .specs-table th,
    .specs-table td {
        font-size: 1rem;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .cottoncandy-specs {
        padding: 28px 6vw;
        gap: 28px;
    }

    .specs-table {
        padding: 22px 8px;
        border-radius: 20px;
    }

    .specs-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .specs-table th {
        font-size: 0.98rem;
        padding-right: 12px;
        border-right-width: 2px;
    }

    .specs-table td {
        font-size: 1.08rem;
        padding-left: 12px;
        border-left-width: 5px;
    }

    .specs-imagebox {
        min-height: 160px;
        padding: 10px 0;
        border-radius: 16px;
    }

    .specs-image {
        max-width: 100%;
        width: 100%;
        max-height: 180px;
        border-radius: 12px;
    }
}

/* 425px and below */
@media (max-width: 425px) {
    .cottoncandy-specs {
        padding: 12px 0;
        gap: 14px;
    }

    .specs-table {
        padding: 6px 22px;
        margin-left: 30px;
        border-radius: 7px;
        box-shadow: 0 1px 6px #ffc3ea30;
        max-width: 85vw;
    }

    .specs-title {
        font-size: 0.92rem;
        margin-bottom: 7px;
    }

    .specs-table th {
        font-size: 0.74rem;
        padding-right: 2px;
        border-right-width: 1px;
    }

    .specs-table td {
        font-size: 0.84rem;
        padding-left: 2px;
        border-left-width: 2px;
    }

    .specs-imagebox {
        min-height: 120px;
        padding: 2px 0;
        border-radius: 6px;
    }

    .specs-image {
        max-width: 100%;
        width: 100%;
        max-height: 140px;
        border-radius: 6px;
    }
}



/* About Section */






/* Main styles */
.cc-point-cottoncandy {
    background: linear-gradient(120deg,
            #ffe5fa 30%,
            #e8f6ff 55%,
            #fffcd6 100%);
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cc-point-cottoncandy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(90deg, #ffdff6 80%, #e0f4ff 100%);
    transform: skewY(-8deg);
    z-index: 0;
}

.cc-point-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 32px;
    padding: 80px 30px 96px 30px;
}

.cc-point-media {
    position: relative;
    width: 540px;
    min-width: 360px;
    height: 425px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.cc-point-bg {
    position: absolute;
    right: -130px;
    left: auto;
    top: 200px;
    width: 340px;
    height: 320px;
    border-radius: 80px 80px 80px 80px;
    background: linear-gradient(120deg, #ffccdf 65%, #b6dcff 100%);
    z-index: 1;
    box-shadow: 0 4px 36px #ffb6d040;
}

.cc-point-img {
    position: absolute;
    right: -10px;
    left: auto;
    top: -80px;
    width: 650px;
    height: 520px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 8px 38px #edeeff20;
    background: #fff;
    z-index: 2;
}

.cc-point-overlay {
    position: absolute;
    top: 102px;
    right: 148px;
    left: auto;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.cc-point-circle {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #fff0fd 60%, #d3eeff 100%);
    border-radius: 50%;
    font-size: 3.8rem;
    color: #ff6b9d;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 128px;
    margin-bottom: 10px;
    box-shadow: 0 4px 24px #ffe91d60;
    letter-spacing: -2px;
}

.cc-point-stars {
    font-size: 1.2rem;
    color: #ffb6d0;
    letter-spacing: 0.2em;
    margin-top: 4px;
    text-shadow: 0 4px 14px #ffe91d80;
}

.cc-point-content {
    min-width: 340px;
    max-width: 580px;
    padding: 30px 200px 0 0;
    position: relative;
    z-index: 2;
}

.cc-point-label-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin-bottom: 0;
}

.cc-point-label-anytime-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.cc-point-label,
.cc-point-anytime {
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.cc-point-label {
    font-size: 2.4rem;
    color: #b6dcff;
    letter-spacing: 0.08em;
    font-weight: 900;
    line-height: 1.1;
}

.cc-point-anytime {
    font-size: 2.8rem;
    font-weight: 800;
    color: #cfd7df;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-top: 0;
}

.cc-point-num {
    font-size: 2.7rem;
    font-weight: 900;
    color: #ffcb45;
    letter-spacing: -1px;
    align-self: center;
    margin-right: 100px;
    margin-left: 200px;
    margin-top: 10px;
    text-shadow: 0 2px 10px #ffe91d60, 0 1px 0 #fff;
    border-radius: 12px;
    background: linear-gradient(90deg, #fffbe5 60%, #fff7c1 100%);
    box-shadow: 0 2px 12px #ffe91d40;
    padding: 2px 18px 2px 18px;
    border: 2px solid #ffcb45;
    transform: skew(-8deg, 0deg) scale(1.08);
}

.cc-point-title {
    font-size: 1.9rem;
    margin-bottom: 24px;
    margin-top: 30px;
    color: #1a1a1a;
    font-weight: 600;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.cc-point-title-highlight {
    background: none;
    color: #222;
    padding: 0 2px;
    font-weight: bold;
    border-bottom: 7px solid #ffcb45;
}

.cc-point-desc {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    color: #222;
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin-bottom: 36px;
}

.cc-point-bars {
    position: relative;
    height: 120px;
    margin-top: 16px;
}

.cc-bar {
    position: absolute;
    width: 390px;
    height: 70px;
    border-radius: 60px;
    opacity: 0.92;
}

.cc-bar-pink {
    background: linear-gradient(90deg, #ffc3ea 60%, #ff6b9d 100%);
    top: -250px;
    right: 380px;
    left: auto;
    transform: rotate(12deg);
    box-shadow: 0 2px 24px #ffc3ea10;
}

.cc-bar-blue {
    background: linear-gradient(90deg, #b6dcff 50%, #74b9ff 100%);
    top: -50px;
    right: 195px;
    left: auto;
    transform: rotate(14deg);
    box-shadow: 0 4px 16px #b6dcff40;
}

.cc-bar-yellow {
    background: linear-gradient(90deg, #fffb93 60%, #ffe91d 100%);
    top: 132px;
    right: 70px;
    left: auto;
    transform: rotate(16deg);
    box-shadow: 0 8px 20px #ffe91d20;
}

/* Responsive styles */

/* 1024px and below */
@media (max-width: 1024px) {
    .cc-point-wrap {
        gap: 18px;
        padding: 60px 10px 60px 10px;
    }

    .cc-point-media {
        width: 400px;
        min-width: 220px;
        height: 320px;
    }

    .cc-point-bg {
        right: -80px;
        top: 120px;
        width: 220px;
        height: 180px;
        border-radius: 60px 60px 60px 60px;
    }

    .cc-point-img {
        right: 0;
        top: -40px;
        width: 380px;
        height: 300px;
        border-radius: 18px;
    }

    .cc-point-content {
        min-width: 220px;
        max-width: 420px;
        padding: 20px 40px 0 0;
    }

    .cc-point-title {
        font-size: 1.3rem;
        margin-top: 18px;
        margin-bottom: 16px;
    }

    .cc-point-label {
        font-size: 1.3rem;
    }

    .cc-point-anytime {
        font-size: 1.5rem;
    }

    .cc-point-num {
        font-size: 1.4rem;
        margin-left: 60px;
        margin-right: 30px;
        padding: 2px 10px 2px 10px;
    }

    .cc-point-desc {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .cc-point-bars {
        height: 60px;
        margin-top: 8px;
    }

    .cc-bar {
        width: 180px;
        height: 32px;
        border-radius: 32px;
    }

    .cc-bar-pink {
        top: -90px;
        right: 120px;
    }

    .cc-bar-blue {
        top: -20px;
        right: 60px;
    }

    .cc-bar-yellow {
        top: 60px;
        right: 10px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .cc-point-cottoncandy {
        min-height: unset;
        padding: 0;
    }

    .cc-point-wrap {
        flex-direction: column;
        gap: 10px;
        padding: 36px 0 36px 0;
        max-width: 98vw;
    }

    .cc-point-media {
        width: 98vw;
        min-width: 0;
        height: 220px;
        justify-content: center;
    }

    .cc-point-bg {
        right: 0;
        top: 60px;
        width: 120px;
        height: 90px;
        border-radius: 40px 40px 40px 40px;
    }

    .cc-point-img {
        right: 0;
        top: -20px;
        width: 220px;
        height: 160px;
        border-radius: 10px;
    }

    .cc-point-content {
        min-width: 0;
        max-width: 98vw;
        padding: 10px 10px 0 10px;
    }

    .cc-point-title {
        font-size: 1.1rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .cc-point-label {
        font-size: 1.1rem;
    }

    .cc-point-anytime {
        font-size: 1.2rem;
    }

    .cc-point-num {
        font-size: 1.1rem;
        margin-left: 20px;
        margin-right: 10px;
        padding: 1px 6px 1px 6px;
    }

    .cc-point-desc {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .cc-point-bars {
        height: 32px;
        margin-top: 4px;
    }

    .cc-bar {
        width: 80px;
        height: 14px;
        border-radius: 14px;
    }

    .cc-bar-pink {
        top: -30px;
        right: 30px;
    }

    .cc-bar-blue {
        top: -4px;
        right: 12px;
    }

    .cc-bar-yellow {
        top: 20px;
        right: 2px;
    }
}

/* 425px and below */
@media (max-width: 425px) {
    .cc-point-cottoncandy {
        min-height: unset;
        padding: 0;
    }

    .cc-point-wrap {
        flex-direction: column;
        gap: 4px;
        padding: 18px 0 18px 0;
        max-width: 100vw;
    }

    .cc-point-media {
        width: 100vw;
        min-width: 0;
        height: 180px;
        /* Increased height for bigger image */
        justify-content: center;
    }

    .cc-point-bg {
        right: 20px;
        top: 90px;
        width: 100px;
        /* Increased width */
        height: 80px;
        /* Increased height */
        border-radius: 30px 30px 30px 30px;
    }

    .cc-point-img {
        right: 50px;
        top: -8px;
        /* Move up a bit more for bigger image */
        width: 230px;
        /* Increased width */
        height: 150px;
        /* Increased height */
        border-radius: 8px;
    }

    .cc-point-content {
        min-width: 0;
        max-width: 100vw;
        padding: 4px 4px 0 4px;
    }

    .cc-point-title {
        font-size: 1.6rem;
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .cc-point-label {
        font-size: 1.22rem;
    }

    .cc-point-anytime {
        font-size: 1.33rem;
    }

    .cc-point-num {
        font-size: 1.6rem;
        margin-left: 6px;
        margin-right: 2px;
        padding: 1px 3px 1px 3px;
    }

    .cc-point-desc {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .cc-point-bars {
        height: 10px;
        margin-top: 2px;
    }

    .cc-bar {
        width: 94px;
        height: 13px;
        border-radius: 6px;
    }

    .cc-bar-pink {
        top: -17px;
        right: 10px;
    }

    .cc-bar-blue {
        top: -7px;
        right: 8px;
    }

    .cc-bar-yellow {
        top: 5px;
        right: 6px;
    }
}







/* the opposite side */

.cc-point-cottoncandy1 {
    /* Diagonal pastel background */
    background: linear-gradient(120deg,
            #ffe5fa 30%,
            /* soft pink */
            #e8f6ff 55%,
            /* pastel blue */
            #fffcd6 100%
            /* creamy yellow */
        );
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    /* Make section at least full screen height */
    display: flex;
    align-items: center;
}

.cc-point-cottoncandy1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 160px;
    /* smaller height */
    background: linear-gradient(90deg, #ffdff6 80%, #e0f4ff 100%);
    transform: skewY(-8deg);
    z-index: 0;
}

.cc-point-wrap1 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 32px;
    padding: 80px 30px 96px 30px;
}

.cc-point-media1 {
    position: relative;
    width: 540px;
    min-width: 360px;
    height: 425px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.cc-point-bg1 {
    position: absolute;
    left: -130px;
    top: 200px;
    width: 340px;
    height: 320px;
    border-radius: 80px 80px 80px 80px;
    background: linear-gradient(120deg, #ffccdf 65%, #b6dcff 100%);
    z-index: 1;
    box-shadow: 0 4px 36px #ffb6d040;
}

.cc-point-img1 {
    position: absolute;
    left: -10px;
    top: -80px;
    width: 650px;
    height: 520px;
    /* bigger image */
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 8px 38px #edeeff20;
    background: #fff;
    z-index: 2;
}

.cc-point-content1 {
    min-width: 340px;
    max-width: 580px;
    padding: 30px 0 0 200px;
    /* Increased left padding to move right */
    position: relative;
    z-index: 2;
}

.cc-point-label-row1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin-bottom: 0;
}

.cc-point-label-anytime-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.cc-point-label1,
.cc-point-anytime1 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.cc-point-label1 {
    font-size: 2.4rem;
    color: #b6dcff;
    letter-spacing: 0.08em;
    font-weight: 900;
    line-height: 1.1;
}

.cc-point-anytime1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #cfd7df;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-top: 0;
}

.cc-point-num1 {
    font-size: 2.7rem;
    font-weight: 900;
    color: #ffcb45;
    letter-spacing: -1px;
    align-self: center;
    margin-left: 100px;
    /* moved more to the right */
    margin-top: 10px;
    /* moved a bit more to the top */
    /* Move it a little bit top and right */
    text-shadow: 0 2px 10px #ffe91d60, 0 1px 0 #fff;
    border-radius: 12px;
    background: linear-gradient(90deg, #fffbe5 60%, #fff7c1 100%);
    box-shadow: 0 2px 12px #ffe91d40;
    padding: 2px 18px 2px 18px;
    border: 2px solid #ffcb45;
    /* striking style */
    transform: skew(-8deg, 0deg) scale(1.08);
}

.cc-point-title1 {
    font-size: 1.9rem;
    margin-bottom: 24px;
    /* moved a little bit down */
    margin-top: 30px;
    color: #1a1a1a;
    font-weight: 600;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.cc-point-title-highlight1 {
    background: none;
    color: #222;
    padding: 0 2px;
    font-weight: bold;
    border-bottom: 7px solid #ffcb45;
}

.cc-point-desc1 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    color: #222;
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin-bottom: 36px;
}

.cc-point-bars1 {
    position: relative;
    height: 120px;
    margin-top: 16px;
}

.cc-bar1 {
    position: absolute;
    width: 390px;
    height: 70px;
    border-radius: 60px;
    opacity: 0.92;
}

.cc-bar-pink1 {
    background: linear-gradient(90deg, #ffc3ea 60%, #ff6b9d 100%);
    top: -250px;
    left: 380px;
    right: auto;
    transform: rotate(-12deg);
    box-shadow: 0 2px 24px #ffc3ea10;
    /* To allow movement, ensure parent is relative and this is absolute.
           You can now move this bar by changing left/top values in HTML or via JS. */
}

.cc-bar-blue1 {
    background: linear-gradient(90deg, #b6dcff 50%, #74b9ff 100%);
    top: -50px;
    left: 195px;
    transform: rotate(-14deg);
    box-shadow: 0 4px 16px #b6dcff40;
}

.cc-bar-yellow1 {
    background: linear-gradient(90deg, #fffb93 60%, #ffe91d 100%);
    top: 132px;
    left: 70px;
    transform: rotate(-16deg);
    box-shadow: 0 8px 20px #ffe91d20;
}

/* -------- Responsive Styles for .cc-point-cottoncandy1 -------- */

/* 1024px and below */
@media (max-width: 1024px) {
    .cc-point-wrap1 {
        gap: 22px;
        padding: 56px 10vw 70px 10vw;
        max-width: 98vw;
    }

    .cc-point-media1 {
        width: 420px;
        min-width: 220px;
        height: 340px;
    }

    .cc-point-bg1 {
        left: -60px;
        top: 120px;
        width: 220px;
        height: 180px;
        border-radius: 50px 50px 50px 50px;
    }

    .cc-point-img1 {
        left: -10px;
        top: -40px;
        width: 420px;
        height: 340px;
        border-radius: 24px;
    }

    .cc-point-content1 {
        min-width: 220px;
        max-width: 420px;
        padding: 18px 0 0 56px;
    }

    .cc-point-label1 {
        font-size: 1.5rem;
    }

    .cc-point-anytime1 {
        font-size: 1.7rem;
    }

    .cc-point-num1 {
        font-size: 1.7rem;
        margin-left: 36px;
        margin-top: 8px;
        padding: 2px 14px 2px 14px;
        border-radius: 10px;
    }

    .cc-point-title1 {
        font-size: 1.5rem;
        margin-bottom: 18px;
        margin-top: 18px;
    }

    .cc-point-title-highlight1 {
        border-bottom-width: 6px;
    }

    .cc-point-desc1 {
        font-size: 1.25rem;
        margin-bottom: 22px;
    }

    .cc-point-bars1 {
        height: 54px;
        margin-top: 10px;
    }

    .cc-bar1 {
        width: 170px;
        height: 28px;
        border-radius: 28px;
    }

    .cc-bar-pink1 {
        top: -80px;
        left: 170px;
    }

    .cc-bar-blue1 {
        top: -18px;
        left: 90px;
    }

    .cc-bar-yellow1 {
        top: 44px;
        left: 32px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .cc-point-cottoncandy1 {
        min-height: 80vh;
        padding: 0;
    }

    .cc-point-wrap1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 32px 4vw 40px 4vw;
        max-width: 100vw;
    }

    .cc-point-media1 {
        width: 98vw;
        min-width: 0;
        height: 240px;
        justify-content: center;
    }

    .cc-point-bg1 {
        left: 0;
        top: 60px;
        width: 120px;
        height: 90px;
        border-radius: 28px 28px 28px 28px;
    }

    .cc-point-img1 {
        left: 0;
        top: -20px;
        width: 240px;
        height: 160px;
        border-radius: 14px;
    }

    .cc-point-content1 {
        min-width: 0;
        max-width: 98vw;
        padding: 0 0 0 0;
    }

    .cc-point-label1 {
        font-size: 1.25rem;
    }

    .cc-point-anytime1 {
        font-size: 1.32rem;
    }

    .cc-point-num1 {
        font-size: 1.32rem;
        margin-left: 18px;
        margin-top: 4px;
        padding: 2px 8px 2px 8px;
        border-radius: 6px;
    }

    .cc-point-title1 {
        font-size: 1.18rem;
        margin-bottom: 12px;
        margin-top: 12px;
    }

    .cc-point-title-highlight1 {
        border-bottom-width: 4px;
    }

    .cc-point-desc1 {
        font-size: 1.05rem;
        margin-bottom: 14px;
    }

    .cc-point-bars1 {
        height: 28px;
        margin-top: 4px;
    }

    .cc-bar1 {
        width: 70px;
        height: 12px;
        border-radius: 12px;
    }

    .cc-bar-pink1 {
        top: -28px;
        left: 60px;
    }

    .cc-bar-blue1 {
        top: -4px;
        left: 28px;
    }

    .cc-bar-yellow1 {
        top: 16px;
        left: 8px;
    }
}

/* 425px and below */
@media (max-width: 425px) {
    .cc-point-cottoncandy1 {
        min-height: 60vh;
        padding: 0;
    }

    .cc-point-wrap1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 2vw 18px 2vw;
        max-width: 100vw;
    }

    .cc-point-media1 {
        width: 100vw;
        min-width: 0;
        height: 130px;
        justify-content: center;
    }

    .cc-point-bg1 {
        left: 10px;
        top: 80px;
        width: 90px;
        height: 74px;
        border-radius: 20px 20px 20px 20px;
    }

    .cc-point-img1 {
        left: 40px;
        top: -15px;
        width: 230px;
        height: 150px;
        border-radius: 6px;
    }

    .cc-point-content1 {
        min-width: 0;
        max-width: 100vw;
        padding: 0 0 0 0;
    }

    .cc-point-label1 {
        font-size: 1.22rem;
    }

    .cc-point-anytime1 {
        font-size: 1.32rem;
    }

    .cc-point-num1 {
        font-size: 1.5rem;
        margin-left: 6px;
        margin-top: 2px;
        padding: 1px 4px 1px 4px;
        border-radius: 3px;
    }

    .cc-point-title1 {
        font-size: 1.6rem;
        margin-bottom: 5px;
        margin-top: 6px;
    }

    .cc-point-title-highlight1 {
        border-bottom-width: 8.2px;
    }

    .cc-point-desc1 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .cc-point-bars1 {
        height: 12px;
        margin-top: 2px;
    }

    .cc-bar1 {
        width: 94px;
        height: 13px;
        border-radius: 6px;
    }

    .cc-bar-pink1 {
        top: -6px;
        left: 16px;
    }

    .cc-bar-blue1 {
        top: 6px;
        left: 7px;
    }

    .cc-bar-yellow1 {
        top: 20px;
        left: 2px;
    }
}







/* .about {
    padding: 80px 0;
    background: #f8f9fa;
    animation: fadeInUp 1s 1s both;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    animation: fadeInUp 1s 1.1s both;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 1s 1.2s both;
}

.about-points {
    margin-bottom: 32px;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    transition: transform 0.2s cubic-bezier(.22, 1, .36, 1);
}

.point:hover {
    transform: scale(1.08) rotate(-2deg);
}

.point i {
    color: #28a745;
    font-size: 20px;
    animation: pointBounce 1.2s infinite alternate;
}

@keyframes pointBounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-6px);
    }
}

.about-image {
    display: flex;
    justify-content: center;
}

.team-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s 1.3s both;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    animation: gradientMove 2.5s linear infinite alternate;
}

.photo-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
}

.photo-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
} */

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
    animation: fadeInUp 1s 1.1s both;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s both;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.6s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured {
    border-color: #3498db;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: badgePop 0.7s 1.2s both;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.7);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.4rem;
    color: #5a6c7d;
}

.amount {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statBounce 1.2s 1.3s both;
}

.period {
    font-size: 1rem;
    color: #5a6c7d;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #5a6c7d;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
    font-size: 15px;
}

.pricing-features li:hover {
    transform: scale(1.06) translateX(6px);
}

.pricing-features i {
    color: #28a745;
    animation: pointBounce 1.2s infinite alternate;
}


















/* 実績 */

/* --- Achievements Section --- */
.achievement-section {
    min-height: 100vh;
    width: 100vw;
    padding: 60px 0 60px 0;
    background: linear-gradient(120deg, #ffe2f9 30%, #e4f4ff 100%);
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 64px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 54px #ffc3ea42, 0 5px 22px #fffcf7d4;
    border-radius: 54px;
    padding: 52px 72px 52px 64px;
    min-height: 650px;
    max-width: 1400px;
    width: 96vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    top: 0;
    overflow: visible;
}

.achievement-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    /* Remove gap for overlay effect */
    gap: 0;
}

/* Main (center) image: give it a strong shape, border, and shadow */
.achievement-img {
    position: relative;
    z-index: 2;
    width: 650px;
    /* was 340px */
    height: 500px;
    /* was 420px */
    object-fit: cover;
    border-radius: 26px;
    /* slightly bigger */
    border: 7px solid #fff;
    /* slightly thicker */
    box-shadow: 0 10px 56px #74b9ff33, 0 2px 18px #ffdff5cc, 0 0 0 10px #ffe2f9a0;
    background: #fff;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
    margin: -62px 0 0 0;
    /* move a little bit top */
    overflow: hidden;
    display: block;
}

.achievement-card:hover .achievement-img {
    transform: scale(1.09) rotate(-1.5deg);
    box-shadow: 0 18px 42px #74b9ff55, 0 4px 36px #ffdff5ee, 0 0 0 14px #ffe2f9c0;
}

/* Overlay the small images on the main image, at the bottom, slightly scaled up and in front */
.achievement-img-small {
    position: absolute;
    width: 230px;
    /* was 120px */
    height: 220px;
    /* was 150px */
    object-fit: cover;
    border-radius: 22px;
    /* slightly bigger */
    box-shadow: 0 8px 38px #ffc3ea55, 0 2px 14px #e4f4ff99;
    z-index: 3;
    opacity: 0.98;
    background: #fff;
    border: 5px solid #fff;
    /* slightly thicker */
    transition: transform 0.22s, box-shadow 0.22s;
    bottom: -102px;
    /* slightly lower */
    /* Will be positioned left/right below */
    transform: scale(1.18);
    /* slightly bigger */
    pointer-events: auto;
}

.achievement-img-small.left {
    left: 36px;
    /* was 28px */
    transform: scale(1.18) rotate(-5deg);
}

.achievement-img-small.right {
    right: 36px;
    /* was 28px */
    transform: scale(1.18) rotate(5deg);
}

.achievement-img-small.left:hover,
.achievement-img-small.right:hover {
    z-index: 4;
    transform: scale(1.27) rotate(0deg);
    /* slightly bigger on hover */
    box-shadow: 0 14px 56px #ffc3ea99, 0 4px 28px #e4f4ffcc;
}

.achievement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 400px;
}

.achievement-title {
    font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
    text-shadow: 0 6px 32px #e4f4ff99;
    position: relative;
    text-align: left;
    display: inline-block;
}

.achievement-title::after {
    content: "";
    display: block;
    margin: 0;
    width: 540px;
    height: 11px;
    border-radius: 3px;
    background: linear-gradient(90deg, #b6faff 0%, #74b9ff 100%);
    box-shadow: 0 2px 12px #ffb6e655;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
}

.achievement-desc {
    font-size: 1.7rem;
    color: #333;
    line-height: 2.1;
    font-weight: 600;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 28px;
    padding: 44px 60px 54px 60px;
    box-shadow: 0 4px 28px #ffe2f915;
    position: relative;
    margin-bottom: 32px;
    display: inline-block;
    text-align: left;
}

/* --- Responsive Styles for Tablet (426px - 900px) --- */
@media (max-width: 900px) and (min-width: 426px) {
    .achievement-section {
        padding: 36px 0 36px 0;
        min-height: unset;
    }
    .achievement-card {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
        border-radius: 32px;
        padding: 24px 4vw 32px 4vw;
        min-height: unset;
        width: 98vw;
        max-width: 99vw;
        box-shadow: 0 6px 28px #ffc3ea33, 0 2px 8px #fffcf7a0;
    }
    .achievement-img-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 0;
        width: 100%;
        margin-bottom: 0;
    }
    .achievement-img {
        width: 88vw;
        max-width: 420px;
        height: 260px;
        min-height: 120px;
        border-radius: 18px;
        border-width: 5px;
        margin: 0 auto 0 auto;
        box-shadow: 0 4px 18px #74b9ff33, 0 1px 6px #ffdff5cc, 0 0 0 4px #ffe2f9a0;
    }
    .achievement-img-small {
        width: 38vw;
        max-width: 160px;
        height: 110px;
        min-height: 40px;
        border-radius: 10px;
        border-width: 2px;
        bottom: -22px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.08) !important;
        box-shadow: 0 2px 12px #ffc3ea55, 0 1px 4px #e4f4ff99;
    }
    .achievement-img-small.left,
    .achievement-img-small.right {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.08) !important;
    }
    .achievement-content {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
    }
    .achievement-title {
        font-size: 1.25rem;
        max-width: 90vw;
    }
    .achievement-title::after {
        width: 60vw;
        max-width: 180px;
        height: 7px;
        border-radius: 2px;
        left: 0;
        right: 0;
        bottom: -4px;
        box-shadow: 0 1px 6px #ffb6e655;
    }
    .achievement-desc {
        font-size: 1.15rem;
        line-height: 1.7;
        padding: 18px 4vw 22px 4vw;
        border-radius: 14px;
        margin-bottom: 18px;
        max-width: 100vw;
        box-shadow: 0 2px 8px #ffe2f915;
        display: block;
    }
}

/* --- Responsive Styles for Mobile (425px and below) --- */
@media (max-width: 425px) {
    .achievement-section {
        padding: 24px 0 24px 0;
        min-height: unset;
        background: linear-gradient(120deg, #ffe2f9 50%, #e4f4ff 100%);
    }
    .achievement-card {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        border-radius: 22px;
        padding: 18px 6vw 24px 6vw;
        min-height: unset;
        width: 98vw;
        max-width: 99vw;
        box-shadow: 0 4px 24px #ffc3ea33, 0 2px 8px #fffcf7a0;
    }
    .achievement-img-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 0;
        width: 100%;
        margin-bottom: 0;
    }
    .achievement-img {
        width: 92vw;
        max-width: 340px;
        height: 180px;
        min-height: 120px;
        border-radius: 16px;
        border-width: 4px;
        margin: 0 auto 0 auto;
        box-shadow: 0 4px 18px #74b9ff33, 0 1px 6px #ffdff5cc, 0 0 0 4px #ffe2f9a0;
    }
    .achievement-img-small {
        width: 44vw;
        max-width: 140px;
        height: 60px;
        min-height: 40px;
        border-radius: 12px;
        border-width: 2.5px;
        bottom: -18px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.05) !important;
        box-shadow: 0 2px 12px #ffc3ea55, 0 1px 4px #e4f4ff99;
        margin-top: 0;
        margin-bottom: 0;
        opacity: 0.97;
    }
    .achievement-img-small.left,
    .achievement-img-small.right {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.05) !important;
        margin-top: 0;
        margin-bottom: 0;
    }
    .achievement-content {
        min-width: 0;
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }
    .achievement-title {
        font-size: 1.15rem;
        margin-bottom: 14px;
        text-align: left;
        width: 100%;
    }
    .achievement-title::after {
        width: 80vw;
        max-width: 220px;
        height: 6px;
        border-radius: 2px;
        left: 0;
        right: 0;
        bottom: -4px;
        box-shadow: 0 1px 6px #ffb6e655;
    }
    .achievement-desc {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 18px 4vw 22px 4vw;
        border-radius: 14px;
        margin-bottom: 18px;
        max-width: 100vw;
        box-shadow: 0 2px 8px #ffe2f915;
        display: block;
        text-align: left;
    }
}












/* --- Achievements Section other side --- */
.achievement-section1 {
    min-height: 100vh;
    width: 100vw;
    padding: 60px 0 60px 0;
    background: linear-gradient(120deg, #ffe2f9 30%, #e4f4ff 100%);
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    /* Mirror the section horizontally */
}

.achievement-card1 {
    display: flex;
    flex-direction: row-reverse;
    /* Mirror the card content */
    align-items: center;
    gap: 64px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 54px #ffc3ea42, 0 5px 22px #fffcf7d4;
    border-radius: 54px;
    padding: 52px 64px 52px 72px;
    /* Mirror left/right paddings */
    min-height: 650px;
    max-width: 1400px;
    width: 96vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    top: 0;
    overflow: visible;
    direction: ltr;
    /* Keep content direction normal inside card */
}

.achievement-img-wrapper1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    /* Remove gap for overlay effect */
    gap: 0;
}

.achievement-img1 {
    position: relative;
    z-index: 2;
    width: 650px;
    height: 500px;
    object-fit: cover;
    border-radius: 26px;
    border: 7px solid #fff;
    box-shadow: 0 10px 56px #74b9ff33, 0 2px 18px #ffdff5cc, 0 0 0 10px #ffe2f9a0;
    background: #fff;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
    margin: -62px 0 0 0;
    overflow: hidden;
    display: block;
}

.achievement-card1:hover .achievement-img1 {
    transform: scale(1.09) rotate(1.5deg);
    /* Mirror the rotation */
    box-shadow: 0 18px 42px #74b9ff55, 0 4px 36px #ffdff5ee, 0 0 0 14px #ffe2f9c0;
}

.achievement-img-small1 {
    position: absolute;
    width: 230px;
    height: 220px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 8px 38px #ffc3ea55, 0 2px 14px #e4f4ff99;
    z-index: 3;
    opacity: 0.98;
    background: #fff;
    border: 5px solid #fff;
    transition: transform 0.22s, box-shadow 0.22s;
    bottom: -102px;
    transform: scale(1.18);
    pointer-events: auto;
}

.achievement-img-small1.left1 {
    right: 36px;
    /* Mirror: was left, now right */
    left: auto;
    transform: scale(1.18) rotate(5deg);
    /* Mirror the rotation */
}

.achievement-img-small1.right1 {
    left: 36px;
    /* Mirror: was right, now left */
    right: auto;
    transform: scale(1.18) rotate(-5deg);
    /* Mirror the rotation */
}

.achievement-img-small1.left1:hover,
.achievement-img-small1.right1:hover {
    z-index: 4;
    transform: scale(1.27) rotate(0deg);
    box-shadow: 0 14px 56px #ffc3ea99, 0 4px 28px #e4f4ffcc;
}

.achievement-content1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 400px;
    align-items: flex-end;
    /* Mirror content alignment */
    text-align: right;
    /* Mirror text alignment */
}

.achievement-title1 {
    font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
    text-shadow: 0 6px 32px #e4f4ff99;
    position: relative;
    /* Mirror text alignment */
    display: inline-block;
    text-align: left;
}

.achievement-title1::after {
    content: "";
    display: block;
    margin: 0;
    width: 340px;
    height: 11px;
    border-radius: 3px;
    background: linear-gradient(90deg, #b6faff 0%, #74b9ff 100%);
    box-shadow: 0 2px 12px #ffb6e655;
    position: absolute;
    right: 0;
    left: auto;
    bottom: -8px;
}

.achievement-desc1 {
    font-size: 1.7rem;
    color: #333;
    line-height: 2.1;
    font-weight: 600;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 28px;
    padding: 44px 60px 54px 60px;
    box-shadow: 0 4px 28px #ffe2f915;
    position: relative;
    margin-bottom: 32px;
    display: inline-block;
    text-align: left;
    /* Mirror text alignment */
}

/* --- Responsive for tablet: stack vertically at 768px and below --- */



@media (max-width: 930px) {
    .achievement-section1 {
        min-height: 120vh;
        width: 100vw;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        direction: rtl;
    }

    .achievement-card1 {
        flex-direction: column-reverse;
        /* Mirror the stacking order */
        align-items: center;
        text-align: center;
        padding: 44px 4vw;
        min-height: 520px;
        width: 99vw;
        max-width: 100vw;
        direction: ltr;
    }

    .achievement-img-wrapper1 {
        width: 100vw;
        max-width: 100%;
        height: auto;
        margin: 0 0 44px 0;
        min-width: 0;
        position: relative;
        gap: 0;
    }

    .achievement-img1 {
        width: 180px;
        height: 220px;
        margin: 0;
        border-radius: 18px;
        border-width: 4px;
    }

    .achievement-img-small1 {
        width: 60px;
        height: 75px;
        border-radius: 8px;
        border-width: 2.5px;
        bottom: 8px;
        transform: scale(1.08);
    }

    .achievement-img-small1.left1 {
        right: 10px;
        /* Mirror: was left, now right */
        left: auto;
        transform: scale(1.08) rotate(7deg);
        /* Mirror the rotation */
    }

    .achievement-img-small1.right1 {
        left: 10px;
        /* Mirror: was right, now left */
        right: auto;
        transform: scale(1.08) rotate(-7deg);
        /* Mirror the rotation */
    }

    .achievement-content1 {
        min-width: 100%;
        align-items: flex-end;
        /* Mirror content alignment */
        text-align: right;
        /* Mirror text alignment */
    }

    .achievement-title1 {
        font-size: 2.1rem;
        margin-bottom: 32px;
        text-align: right;
    }

    .achievement-desc1 {
        font-size: 1.28rem;
        padding: 32px 18px;
        text-align: right;
    }
}

@media (max-width: 520px) {
    .achievement-title1 {
        font-size: 1.7rem;
        text-align: right;
    }

    .achievement-desc1 {
        font-size: 1.13rem;
        padding: 22px 8px;
        text-align: right;
    }

    .achievement-img-wrapper1 {
        gap: 0;
    }

    .achievement-img1 {
        width: 110px;
        height: 130px;
        border-radius: 10px;
        border-width: 2px;
        margin: 0;
    }

    .achievement-img-small1 {
        width: 32px;
        height: 40px;
        border-radius: 4px;
        border-width: 1.5px;
        bottom: 2px;
        transform: scale(1.04);
    }

    .achievement-img-small1.left1 {
        right: 4px;
        /* Mirror: was left, now right */
        left: auto;
        transform: scale(1.04) rotate(6deg);
        /* Mirror the rotation */
    }

    .achievement-img-small1.right1 {
        left: 4px;
        /* Mirror: was right, now left */
        right: auto;
        transform: scale(1.04) rotate(-6deg);
        /* Mirror the rotation */
    }
}






@media (max-width: 900px) and (min-width: 426px) {
    .achievement-section1 {
        padding: 36px 0 36px 0;
        min-height: unset;
    }
    .achievement-card1 {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
        border-radius: 32px;
        padding: 24px 4vw 32px 4vw;
        min-height: unset;
        width: 98vw;
        max-width: 99vw;
        box-shadow: 0 6px 28px #ffc3ea33, 0 2px 8px #fffcf7a0;
    }
    .achievement-img-wrapper1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 0;
        width: 100%;
        margin-bottom: 0;
    }
    .achievement-img1 {
        width: 88vw;
        max-width: 420px;
        height: 260px;
        min-height: 120px;
        border-radius: 18px;
        border-width: 5px;
        margin: 0 auto 0 auto;
        box-shadow: 0 4px 18px #74b9ff33, 0 1px 6px #ffdff5cc, 0 0 0 4px #ffe2f9a0;
    }
    .achievement-img-small1 {
        width: 38vw;
        max-width: 160px;
        height: 110px;
        min-height: 40px;
        border-radius: 10px;
        border-width: 2px;
        bottom: -22px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.08) !important;
        box-shadow: 0 2px 12px #ffc3ea55, 0 1px 4px #e4f4ff99;
    }
    .achievement-img-small1.left1,
    .achievement-img-small1.right1 {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.08) !important;
    }
    .achievement-content1 {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
    }
    .achievement-title1 {
        font-size: 1.25rem;
        max-width: 90vw;
    }
    .achievement-title1::after {
        width: 60vw;
        max-width: 180px;
        height: 7px;
        border-radius: 2px;
        left: 0;
        right: 0;
        bottom: -4px;
        box-shadow: 0 1px 6px #ffb6e655;
    }
    .achievement-desc1 {
        font-size: 1.15rem;
        line-height: 1.7;
        padding: 18px 4vw 22px 4vw;
        border-radius: 14px;
        margin-bottom: 18px;
        max-width: 100vw;
        box-shadow: 0 2px 8px #ffe2f915;
        display: block;
    }
}









@media (max-width: 425px) {
    .achievement-section1 {
        padding: 24px 0 24px 0;
        min-height: unset;
        background: linear-gradient(120deg, #ffe2f9 50%, #e4f4ff 100%);
    }
    .achievement-card1 {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        border-radius: 22px;
        padding: 18px 6vw 24px 6vw;
        min-height: unset;
        width: 98vw;
        max-width: 99vw;
        box-shadow: 0 4px 24px #ffc3ea33, 0 2px 8px #fffcf7a0;
    }
    .achievement-img-wrapper1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 0;
        width: 100%;
        margin-bottom: 0;
    }
    .achievement-img1 {
        width: 92vw;
        max-width: 340px;
        height: 180px;
        min-height: 120px;
        border-radius: 16px;
        border-width: 4px;
        margin: 0 auto 0 auto;
        box-shadow: 0 4px 18px #74b9ff33, 0 1px 6px #ffdff5cc, 0 0 0 4px #ffe2f9a0;
    }
    .achievement-img-small1 {
        width: 44vw;
        max-width: 140px;
        height: 60px;
        min-height: 40px;
        border-radius: 12px;
        border-width: 2.5px;
        bottom: -18px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.05) !important;
        box-shadow: 0 2px 12px #ffc3ea55, 0 1px 4px #e4f4ff99;
        margin-top: 0;
        margin-bottom: 0;
        opacity: 0.97;
    }
    .achievement-img-small1.left1,
    .achievement-img-small1.right1 {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(1.05) !important;
        margin-top: 0;
        margin-bottom: 0;
    }
    .achievement-content1 {
        min-width: 0;
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }
    .achievement-title1 {
        font-size: 1.15rem;
        margin-bottom: 14px;
        text-align: left;
        width: 100%;
    }
    .achievement-title1::after {
        width: 80vw;
        max-width: 220px;
        height: 6px;
        border-radius: 2px;
        left: 0;
        right: 0;
        bottom: -4px;
        box-shadow: 0 1px 6px #ffb6e655;
    }
    .achievement-desc1 {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 18px 4vw 22px 4vw;
        border-radius: 14px;
        margin-bottom: 18px;
        max-width: 100vw;
        box-shadow: 0 2px 8px #ffe2f915;
        display: block;
        text-align: left;
    }
}








/* Carousel Section */

.vending-carousel-main {
    background: linear-gradient(120deg, #fffbe5 0%, #ffe5fa 60%, #e8f6ff 100%);
    text-align: center;
    padding: 56px 0 56px 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    border-radius: 32px;
    box-shadow: 0 8px 32px #ffc3ea18, 0 2px 8px #ffe91d18;
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ensure the header (title and subtitle) is at the very top of the section */
.carousel-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 32px;
    gap: 8px;
    padding-top: 0;
}

/* Title styling */
.carousel-title {
    text-align: center;
    font-size: 3.1rem;
    font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
    color: #ff6b9d;
    font-weight: 900;
    letter-spacing: 0.09em;
    margin-bottom: 68px;
    text-shadow: 0 6px 28px #e4f4ff80;
    position: relative;
    animation: appearTitle 1s ease 0.15s both;
}

.carousel-title::after {
    content: "";
    display: block;
    margin: 0 auto;
    margin-top: -20px;
    width: 420px;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #b6dcff 100%);
    box-shadow: 0 2px 12px #ff6b9d33;
}

/* Subtitle styling */
.carousel-subtitle {
    color: #74b9ff;
    font-size: 1.22rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px #ffc3ea30;
    padding-top: 0;
}

/* Centered carousel image and arrows in the middle of the section */
.carousel-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    gap: 24px;
    min-height: 380px;
    width: 100%;
}

/* Carousel image wrap styling */
.carousel-image-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Remove background and box-shadow for clean image */
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-width: 0;
    min-height: 0;
    border-radius: 0;
    transition: none;
}

.carousel-image-wrap:hover {
    /* Remove hover box-shadow */
    box-shadow: none !important;
}

#carousel-image {
    width: 580px;
    height: 580px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: none;
    transition: none;
    display: block;
    margin: 0 auto;
}

.carousel-image-wrap:hover #carousel-image {
    /* Remove hover effect */
    transform: none;
}

.carousel-label {
    margin-top: 18px;
    font-size: 1.18rem;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6b9d 60%, #ffe91d 100%);
    border-radius: 12px;
    padding: 10px 32px;
    box-shadow: 0 2px 12px #ffc3ea20;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px #ff6b9d30;
}

.carousel-arrow {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffc3ea 60%, #ffe91d 100%);
    border: none;
    border-radius: 50%;
    padding: 18px 26px;
    box-shadow: 0 2px 16px #ffc3ea30;
    color: #fff;
    cursor: pointer;
    margin: 0 8px;
    transition: background 0.2s, transform 0.1s, color 0.2s;
    outline: none;
    position: relative;
    z-index: 2;
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #ffe91d 60%, #ff6b9d 100%);
    color: #fffbe5;
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 4px 24px #ff6b9d30;
}

/* Description always at the bottom of the section */
.carousel-description {
    font-size: 1.13rem;
    color: #444;
    margin: 38px auto 0 auto;
    background: linear-gradient(90deg, #fffbe5 80%, #ffc3ea 100%);
    border-radius: 24px;
    display: inline-block;
    padding: 18px 48px;
    box-shadow: 0 2px 12px #ffe91d18;
    font-weight: 700;
    letter-spacing: 0.01em;
    max-width: 600px;
    text-align: center;
    align-self: center;
}

/* --- 425px mobile responsive styles for carousel --- */
@media (max-width: 425px) {
    .vending-carousel-main {
        padding: 18px 0 24px 0;
        border-radius: 10px;
        min-width: 100vw;
        max-width: 100vw;
    }
    .carousel-header {
        margin-bottom: 10px;
        gap: 4px;
    }
    .carousel-title {
        font-size: 1.18rem;
        margin-bottom: 22px;
    }
    .carousel-title::after {
        width: 120px;
        height: 6px;
        margin-top: -8px;
    }
    .carousel-subtitle {
        font-size: 0.93rem;
        padding-top: 0;
    }
    .carousel-center {
        gap: 4px;
        min-height: 120px;
    }
    .carousel-image-wrap {
        padding: 0 !important;
        min-height: 0;
        border-radius: 0;
    }
    #carousel-image {
        width: 90vw;
        max-width: 260px;
        height: 120px;
    }
    .carousel-label {
        margin-top: 10px;
        font-size: 0.93rem;
        padding: 7px 12px;
        border-radius: 8px;
    }
    .carousel-arrow {
        font-size: 1.5rem;
        padding: 10px 14px;
        margin: 0 2px;
    }
    .carousel-description {
        padding: 10px 4vw;
        font-size: 0.93rem;
        border-radius: 12px;
        margin-top: 18px;
        max-width: 98vw;
    }
}

@media (max-width: 900px) {
    .vending-carousel-main {
        padding: 36px 0 36px 0;
        max-width: 98vw;
        border-radius: 18px;
    }

    .carousel-image-wrap {
        min-width: 0;
        padding: 0 !important;
    }

    #carousel-image {
        width: 260px;
        height: 340px;
    }

    .carousel-description {
        padding: 14px 10vw;
        font-size: 1.01rem;
    }
}

@media (max-width: 600px) {
    .carousel-header {
        margin-bottom: 18px;
    }

    .carousel-title {
        font-size: 1.6rem;
    }

    .carousel-subtitle {
        font-size: 1.01rem;
    }

    .carousel-center {
        gap: 8px;
        min-height: 220px;
    }

    .carousel-image-wrap {
        padding: 0 !important;
        min-height: 0;
        border-radius: 0;
    }

    #carousel-image {
        width: 140px;
        height: 180px;
        border-radius: 0;
    }

    .carousel-label {
        font-size: 0.98rem;
        padding: 7px 16px;
        border-radius: 7px;
    }

    .carousel-arrow {
        font-size: 1.5rem;
        padding: 10px 14px;
    }

    .carousel-description {
        font-size: 0.97rem;
        padding: 10px 4vw;
        border-radius: 12px;
        margin-top: 18px;
    }
}

/* No additional styles needed here; .vending-carousel-main already uses flex-direction: column for vertical stacking. */
.vending-carousel-main>.carousel-header {
    order: 1;
    width: 100%;
}

.vending-carousel-main>.carousel-center {
    order: 2;
    width: 100%;
}

.vending-carousel-main>.carousel-description {
    order: 3;
    width: 100%;
    margin-top: 38px;
}












/* 購入流れ */


.purchase-flow-section {
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(110deg, #ffe2f9 0%, #e4f4ff 100%);
    padding: 80px 0 50px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.purchase-flow-title {
    text-align: center;
    font-size: 3.1rem;
    font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
    color: #ff6b9d;
    font-weight: 900;
    letter-spacing: 0.09em;
    margin-bottom: 68px;
    text-shadow: 0 6px 28px #e4f4ff80;
    position: relative;
    animation: appearTitle 1s ease 0.15s both;
}

.purchase-flow-title::after {
    content: "";
    display: block;
    margin: 0 auto;
    margin-top: -20px;
    width: 275px;
    height: 13px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #b6dcff 100%);
    box-shadow: 0 2px 12px #ff6b9d33;
}

@keyframes appearTitle {
    0% {
        opacity: 0;
        transform: translateY(-32px) scale(0.98);
    }

    80% {
        opacity: 1;
        transform: translateY(7px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.purchase-flow-steps {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1350px;
    margin: 0 auto;
}

.flow-step {
    background: linear-gradient(120deg, #fffbe5 70%, #ffc3ea 100%);
    border-radius: 40px;
    box-shadow: 0 8px 32px #ffc3ea26, 0 2px 16px #fffcf7a9;
    width: 320px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.34s cubic-bezier(.22, 1, .36, 1), box-shadow 0.32s;
    position: relative;
    margin-bottom: 20px;
    animation: stepFadeUp 0.85s cubic-bezier(.22, 1, .36, 1) both;
}

.flow-step:hover {
    transform: scale(1.07) translateY(-12px);
    box-shadow: 0 12px 60px #ff6b9d40, 0 4px 24px #b6dcff30;
}

@keyframes stepFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flow-step-circle {
    margin-top: -50px;
    width: 110px;
    height: 110px;
    background: linear-gradient(120deg, #ffbcd1 60%, #b6dcff 100%);
    border-radius: 50%;
    box-shadow: 0 8px 32px #ffbcd1a9;
    border: 6px solid #fffbe5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: candyBounce 1.2s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes candyBounce {

    0%,
    100% {
        transform: scale(1);
    }

    65% {
        transform: scale(1.22);
    }
}

.flow-step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b9d;
    position: absolute;
    bottom: -10px;
    right: 14px;
    text-shadow: 0 2px 10px #ffc3ea55;
    letter-spacing: 2px;
}

.flow-step-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    padding: 8px;
}

.flow-step-body {
    margin-top: 36px;
    padding: 0 30px 18px 30px;

}

.flow-step-heading {
    font-size: 1.35rem;
    color: #74b9ff;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.flow-step-heading::after {
    content: "";
    display: block;
    margin: 0 auto;
    margin-top: 1px;
    width: 130px;
    height: 6px;
    background: linear-gradient(90deg, #74b9ff 0%, #ffbcd1 100%);
    border-radius: 2px;
}

.flow-step-desc {
    font-size: 1.14rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
}

/* Responsive layout for small screens */
@media (max-width:900px) {
    .purchase-flow-steps {
        gap: 32px;
        flex-wrap: wrap;
    }

    .flow-step {
        width: 98vw;
        max-width: 400px;
    }
}

@media (max-width:560px) {
    .purchase-flow-title {
        font-size: 1.45rem;
        margin-bottom: 28px;
    }

    .flow-step {
        min-height: 250px;
    }

    .flow-step-heading {
        font-size: 1rem;
    }

    .flow-step-desc {
        font-size: 0.93rem;
    }
}

/* Responsive layout for mobile screens (max-width: 425px) - make it even smaller */
@media (max-width:425px) {
    .purchase-flow-section {
        padding: 52px 0 8px 0;
        min-width: 100vw;
    }
    .purchase-flow-title {
        font-size: 1.5rem;
        margin-bottom: 60px;
    }
    .purchase-flow-title::after {
        width: 120px;
        height: 7px;
        margin-top: -9px;
    }
    .purchase-flow-steps {
        gap: 10px;
        max-width: 100vw;
        flex-direction: column;
        align-items: center;
    }
    .flow-step {
        width: 98vw;
        max-width: 79vw;
        min-width: 0;
        min-height: 110px;
        border-radius: 9px;
        margin-bottom: 7px;
        padding: 0;
        box-shadow: 0 2px 8px #ffc3ea18, 0 1px 4px #fffcf7a9;
    }
    .flow-step-circle {
        width: 34px;
        height: 34px;
        margin-top: -14px;
        border-width: 2px;
        box-shadow: 0 2px 8px #ffbcd1a9;
    }
    .flow-step-number {
        font-size: 0.9rem;
        bottom: -2px;
        right: 4px;
    }
    .flow-step-icon {
        width: 18px;
        height: 18px;
        padding: 2px;
    }
    .flow-step-body {
        margin-top: 30px;
        padding: 0 4px 6px 4px;
    }
    .flow-step-heading {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    .flow-step-heading::after {
        width: 88px;
        height: 5px;
        margin-top: 0;
    }
    .flow-step-desc {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 1px;
        font-weight: 600;
    }
}






/* よくある質問 */

.faq-section {
    width: 100vw;
    min-height: 80vh;
    background: linear-gradient(110deg, #ffe2f9 0%, #e4f4ff 100%);
    padding: 80px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-size: 2.8rem;
    font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
    color: #ff6b9d;
    font-weight: 900;
    margin-bottom: 48px;
    text-shadow: 0 3px 18px #e4f4ff90;
    letter-spacing: .07em;
}

.faq-title::after {
    content: "";
    display: block;
    margin: 0 auto;
    margin-top: -20px;
    width: 330px;
    height: 13px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #b6dcff 100%);
    box-shadow: 0 2px 12px #ff6b9d33;
}

.faq-list {
    width: 90vw;
    max-width: 860px;
    margin: 0 auto;
}

.faq-card {
    background: linear-gradient(120deg, #fffbe5 80%, #ffe2f9 100%);
    border-radius: 34px;
    box-shadow: 0 4px 22px #ffc3ea25, 0 2px 10px #ffdff548;
    margin-bottom: 28px;
    overflow: hidden;
    transition: box-shadow 0.27s, transform 0.26s;
    cursor: pointer;
    position: relative;
}

.faq-card:hover,
.faq-card.open {
    box-shadow: 0 12px 44px #ffc3ea66, 0 8px 24px #74b9ff35;
    transform: scale(1.02);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 26px 30px 26px 20px;
    font-size: 1.22rem;
    font-weight: 700;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.faq-question {
    flex: 1;
    letter-spacing: .02em;
    color: #74b9ff;
}

.faq-arrow {
    color: #ff6b9d;
    font-size: 1.7em;
    transition: transform 0.25s;
    font-weight: bold;
}

/* Rotate arrow on open */
.faq-card.open .faq-arrow {
    transform: rotate(180deg);
}

/* Answer section: collapses/expands */
.faq-answer {
    font-size: 1.18rem;
    color: #333;
    background: rgba(255, 255, 255, 0.91);
    border-radius: 0 0 30px 30px;
    box-shadow: 0 2px 14px #ffe2f922 inset;
    padding: 0 32px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.6, .05, .4, .95), opacity 0.4s;
}

.faq-card.open .faq-answer {
    padding: 20px 32px 24px 32px;
    max-height: 400px;
    opacity: 1;
    transition: max-height 0.7s cubic-bezier(.22, 1, .36, 1), opacity 0.5s;
}

/* Responsive adjustments */
@media (max-width:600px) {
    .faq-title {
        font-size: 1.35rem;
    }

    .faq-header {
        font-size: 1.01rem;
        padding: 16px 16px;
        gap: 12px;
    }

    .faq-answer {
        font-size: 0.95rem;
        padding: 8px 16px;
    }
}

/* --- 425px mobile responsive styles for FAQ --- */
@media (max-width:425px) {
    .faq-section {
        padding: 38px 0 28px 0;
    }
    .faq-title {
        font-size: 1.08rem;
        margin-bottom: 52px;
    }
    .faq-title::after {
        width: 120px;
        height: 6px;
        margin-top: -8px;
    }
    .faq-list {
        margin-bottom: -1500px;
        width: 88vw;
        max-width: 99vw;
    }
    .faq-card {
        border-radius: 16px;
        margin-bottom: 44px;
    }
    .faq-header {
        font-size: 0.93rem;
        padding: 10px 8px 10px 8px;
        gap: 7px;
    }
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    .faq-arrow {
        font-size: 1.2em;
    }
    .faq-answer {
        font-size: 0.85rem;
        padding: 6px 8px;
        border-radius: 0 0 12px 12px;
    }
    .faq-card.open .faq-answer {
        padding: 12px 8px 14px 8px;
        max-height: 300px;
    }
}









/*contact-cotton*/

.section-contact-cotton {
    background: linear-gradient(135deg, #fff5fb 0%, #e8f6ff 100%);
    padding: 32px 0 48px 0;
}

.cotton-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(116, 185, 255, 0.08), 0 1px 5px #FF6B9D20;
    padding: 28px 32px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 1s 1.4s both;
}

.cotton-form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cotton-form-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.89rem;
}

.cotton-form label {
    font-weight: 600;
    color: #c44569;
    font-size: 0.98rem;
}

.cotton-form .required {
    color: #ff6b9d;
    font-size: 0.92rem;
    margin-left: 3px;
}

.cotton-form input,
.cotton-form textarea {
    background: linear-gradient(90deg, #fff, #f8e5ef);
    border: 1.5px solid #f1c7de;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1.05rem;
    box-shadow: 0 1px 6px #f8e5ef30;
    transition: border 0.3s, box-shadow 0.3s;
}

.cotton-form input:focus,
.cotton-form textarea:focus {
    border-color: #74b9ff;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2.5px #b6dcff50;
    transform: scale(1.015);
}

.cotton-form textarea {
    min-height: 80px;
    resize: vertical;
}

.cotton-form .cotton-captcha {
    text-align: left;
    margin-top: 4px;
}

.btn-cotton {
    padding: 12px 0;
    width: 100%;
    background: linear-gradient(90deg, #ff6b9d 10%, #74b9ff 90%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 12px #ff6b9d30, 0 1px 4px #74b9ff20;
    transition: background 0.3s, transform 0.22s;
}

.btn-cotton:hover {
    background: linear-gradient(90deg, #74b9ff 20%, #ff6b9d 80%);
    transform: scale(1.025);
}

.cotton-form-note {
    font-size: 0.92rem;
    color: #ff6b9d;
    margin-top: 4px;
    text-align: center;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
    animation: fadeInUp 1s 1.5s both;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
    animation: logoPopIn 1s 1.6s both;
}

.footer-logo i {
    font-size: 28px;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: transform 0.2s cubic-bezier(.22, 1, .36, 1);
}

.footer-section ul li:hover {
    transform: translateX(8px) scale(1.04);
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(.22, 1, .36, 1);
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
    font-size: 1.2rem;
}

.social-links a:hover,
.social-links a:focus {
    background: #667eea;
    transform: translateY(-2px) scale(1.1) rotate(-5deg);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b0b0b0;
    animation: fadeInUp 1s 1.7s both;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(.22, 1, .36, 1);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #667eea;
}

/* Responsive styles for mobile (max-width: 425px) */

/* 
    --- IMPORTANT: COTTON CANDY ANIMATED BACKGROUND ---
    If your animated background is not appearing, check the following:
    1. The background container should have the class .cotton-candy-bg or .cotton-candy-bg-container.
    2. The z-index of the background must be BELOW all content, but NOT negative (use z-index: 0 or 1).
    3. The background container must be a direct child of <body> and not inside another stacking context.
    4. No other element (such as .footer, .navbar, .hero, etc.) should have z-index: 0 or a lower z-index that would cover the background.
    5. The background must not be covered by opaque backgrounds on other elements.
    6. The background container must not have display: none or visibility: hidden.
    7. The JS must actually create the background container and blobs (see app.js).
*/

/* Cotton Candy Animated Background */
.cotton-candy-bg,
.cotton-candy-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 1000;
    /* Make sure this is not negative and not covered by other elements */
}

.cotton-candy-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.7;
    mix-blend-mode: lighten;
    animation: floatBlob 20s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 35px) scale(1.14);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(.22, 1, .36, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-buttons {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .benefits-grid {
        gap: 30px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .benefit-number {
        min-width: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .vending-machine {
        width: 280px;
        height: 380px;
    }

    .product-card {
        width: 250px;
        height: 180px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
textarea {
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
}

/* Focus states for accessibility */
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* 
    To enable the custom cursor, add this HTML to your page:
    <div class="custom-cursor"></div>
    And use the following JS (example, not CSS):
    ------------------------------------------------------
    document.addEventListener('DOMContentLoaded', function() {
      const cursor = document.querySelector('.custom-cursor');
      document.addEventListener('mousemove', e => {
        cursor.style.left = e.clientX + 'px';
        cursor.style.top = e.clientY + 'px';
      });
      document.addEventListener('mousedown', () => cursor.classList.add('cursor-click'));
      document.addEventListener('mouseup', () => cursor.classList.remove('cursor-click'));
      document.querySelectorAll('a, button, .btn-primary, .btn-secondary, .btn-outline').forEach(el => {
        el.addEventListener('mouseenter', () => cursor.classList.add('cursor-hover'));
        el.addEventListener('mouseleave', () => cursor.classList.remove('cursor-hover'));
      });
    });
*/