/* ============================================
   SAGA LANDING PAGE STYLES
   Advanced visuals, animations, and transitions
   Color Scheme: Green (#43B02A) & White
   ============================================ */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --saga-green: #43B02A;
    --saga-green-dark: #2E7D32;
    --saga-green-light: #81C784;
    --saga-green-pale: #E8F5E9;
    --saga-white: #FFFFFF;
    --saga-off-white: #F9FBF9;
    --saga-gray-light: #F5F7F5;
    --saga-gray: #6B7280;
    --saga-gray-dark: #374151;
    --saga-black: #1A1A1A;
    
    --gradient-primary: linear-gradient(135deg, #43B02A 0%, #2E7D32 100%);
    --gradient-light: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    --gradient-hero: linear-gradient(135deg, rgba(67, 176, 42, 0.05) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(67, 176, 42, 0.03) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 10px 30px rgba(67, 176, 42, 0.3);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-primary: 'Poppins', 'Open Sans', sans-serif;
    --font-heading: 'Raleway', sans-serif;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--saga-gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--saga-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--saga-black);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--saga-green-pale);
    color: var(--saga-green);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--saga-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--saga-green);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 176, 42, 0.4);
    background: linear-gradient(135deg, #4FC333 0%, #3A9E25 100%);
    border-color: #4FC333;
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--saga-green);
    color: var(--saga-green);
}

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

.btn-outline-secondary {
    background: transparent;
    border-color: var(--saga-gray);
    color: var(--saga-gray-dark);
}

.btn-outline-secondary:hover {
    background: var(--saga-gray-light);
    border-color: var(--saga-gray);
}

.btn-light {
    background: white;
    color: var(--saga-green);
    border-color: white;
}

.btn-light:hover {
    background: var(--saga-green-pale);
    color: var(--saga-green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(67, 176, 42, 0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(67, 176, 42, 0.5);
    }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    padding: 1rem 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    max-height: 125px;
    max-width: 125px;
    width: auto;
    height: auto;
    transition: transform var(--transition-normal);
}

.navbar-brand:hover .logo-img {
    transform: rotate(10deg) scale(1.1);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saga-green);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--saga-gray-dark);
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--saga-green);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--saga-green);
}

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

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: visible;
    padding-top: 160px;
    padding-bottom: 120px;
}

.hero-section > .container > .row {
    min-height: calc(100vh - 280px);
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    color: var(--saga-green-light);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 15%; left: 10%; animation-delay: 0s; }
.float-2 { top: 25%; right: 15%; animation-delay: 1s; }
.float-3 { top: 60%; left: 5%; animation-delay: 2s; }
.float-4 { top: 70%; right: 8%; animation-delay: 0.5s; }
.float-5 { top: 40%; left: 15%; animation-delay: 1.5s; }
.float-6 { bottom: 20%; right: 20%; animation-delay: 2.5s; }

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

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--saga-green-pale);
    color: var(--saga-green);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.8s ease;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--saga-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-cta {
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    animation: slideInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.stat-item {
    text-align: center;
    min-width: 0;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--saga-green);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--saga-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--saga-gray);
    margin-top: 0.25rem;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--saga-gray-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100%;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    animation: floatPhone 4s ease-in-out infinite;
}

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

.phone-screen {
    background: white;
    border-radius: 30px;
    height: 100%;
    padding: 20px;
    overflow: hidden;
}

.app-preview {
    height: 100%;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

.app-logo img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.app-greeting {
    font-size: 1rem;
    font-weight: 600;
}

.app-search {
    background: var(--saga-gray-light);
    padding: 12px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.app-search i {
    color: var(--saga-gray);
}

.app-search span {
    color: var(--saga-gray);
    font-size: 0.9rem;
}

/* Voice-Active Search Bar */
.app-search.voice-active {
    background: var(--saga-green-pale);
    border: 2px solid var(--saga-green);
}

.app-search.voice-active i {
    color: var(--saga-green);
    animation: micPulse 1s ease-in-out infinite;
}

.app-search.voice-active span {
    color: var(--saga-green-dark);
}

@keyframes micPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.app-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.app-card {
    background: var(--saga-green-pale);
    padding: 15px;
    border-radius: 15px;
    animation: cardPulse 2s ease-in-out infinite;
}

.app-card i {
    font-size: 1.5rem;
    color: var(--saga-green);
    margin-bottom: 8px;
}

.app-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--saga-gray-dark);
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 0.5s; }
.card-3 { animation-delay: 1s; }
.card-4 { animation-delay: 1.5s; }

@keyframes cardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Floating Notifications */
.floating-notification {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatNotif 3s ease-in-out infinite;
}

.floating-notification i {
    color: var(--saga-green);
}

.notif-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.notif-2 {
    top: 50%;
    left: -30px;
    animation-delay: 1s;
}

.notif-3 {
    bottom: 25%;
    right: -10px;
    animation-delay: 2s;
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ==================== RETAILERS SECTION ==================== */
.retailers-section {
    padding: 3rem 0;
    background: var(--saga-gray-light);
}

.retailers-label {
    text-align: center;
    font-size: 0.9rem;
    color: var(--saga-gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.retailers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.retailer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.retailer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all var(--transition-normal);
}

.retailer-name {
    font-size: 0.75rem;
    color: var(--saga-gray);
}

.retailer-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.retailer-item:hover .retailer-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.retailer-item:hover .retailer-name {
    color: var(--saga-green);
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 4rem 0;
    background: white;
}

.section-header {
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 1.5rem;
}

.feature-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--saga-green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.feature-icon-wrapper i {
    font-size: 1.15rem;
    color: var(--saga-green);
}

.feature-icon-wrapper.gradient-bg {
    background: var(--gradient-primary);
}

.feature-icon-wrapper.gradient-bg i {
    color: white;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--saga-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    padding: 0.6rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--saga-gray-dark);
    font-size: 0.85rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
    border-radius: 8px;
    border-left: 3px solid var(--saga-green);
    font-weight: 500;
    font-style: italic;
    transition: all 0.2s ease;
}

.feature-list li:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #dcfce7 100%);
    transform: translateX(5px);
    border-left-color: var(--saga-green-dark);
}

.feature-list li i {
    color: var(--saga-green);
    font-size: 0.75rem;
    min-width: 16px;
}

/* ==================== FLOWCHART SECTION ==================== */
.flowchart-section {
    padding: 6rem 0;
    background: var(--saga-off-white);
    position: relative;
    overflow: hidden;
}

.flowchart-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--saga-green-pale) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.flowchart-container {
    position: relative;
    min-height: 500px;
    margin: 3rem 0;
}

.flowchart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.pulse-circle {
    animation: pulseCircle 2s ease-in-out infinite;
}

@keyframes pulseCircle {
    0%, 100% { r: 6; opacity: 1; }
    50% { r: 10; opacity: 0.5; }
}

/* Flow Nodes */
.flow-nodes {
    position: relative;
    height: 100%;
}

.flow-node {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 220px;
    text-align: center;
    transition: all var(--transition-normal);
    z-index: 2;
}

.flow-node:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.node-icon i {
    font-size: 1.25rem;
    color: white;
}

.node-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.node-content p {
    font-size: 0.85rem;
    color: var(--saga-gray);
    margin: 0;
}

.node-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--saga-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(67, 176, 42, 0.3);
}

/* Node Positions */
.node-1 { top: 10%; left: 5%; }
.node-2 { top: 10%; left: 38%; }
.node-3 { top: 10%; right: 5%; }
.node-4 { bottom: 15%; right: 15%; }
.node-5 { bottom: 15%; left: 15%; }

/* ==================== SIMPLE CYCLE FLOWCHART STYLES ==================== */
.cycle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    flex-shrink: 0;
}

.cycle-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

.cycle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.arrow-path {
    stroke-linecap: round;
}

/* Center SAGA Logo */
.cycle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(67, 176, 42, 0.25);
    border: 3px solid var(--saga-green);
    z-index: 10;
}

.cycle-logo {
    width: 65px;
    height: 65px;
}

.cycle-tagline {
    font-size: 0.7rem;
    color: var(--saga-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Cycle Nodes */
.cycle-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.cycle-node-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--saga-green);
    transition: all 0.3s ease;
    position: relative;
}

.cycle-node-icon i {
    font-size: 1.5rem;
    color: var(--saga-green);
}

.cycle-node-label {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--saga-gray-dark);
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.cycle-node-step {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--saga-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid white;
    z-index: 10;
}

.cycle-node:hover .cycle-node-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(67, 176, 42, 0.3);
}

.cycle-node:hover .cycle-node-label {
    color: var(--saga-green);
}

/* Position nodes around the circle - pentagon layout */
/* Node 1: Top center (12 o'clock) - Label ABOVE */
.cycle-node-1 {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.cycle-node-1 .cycle-node-label {
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
}

/* Node 2: Top right (2 o'clock position) - Label to the RIGHT */
.cycle-node-2 {
    top: 18%;
    right: -20px;
}
.cycle-node-2 .cycle-node-label {
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

/* Node 3: Bottom right (4 o'clock position) - Label BELOW */
.cycle-node-3 {
    bottom: 8%;
    right: 8%;
}
.cycle-node-3 .cycle-node-label {
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
}

/* Node 4: Bottom left (8 o'clock position) - Label BELOW */
.cycle-node-4 {
    bottom: 8%;
    left: 8%;
}
.cycle-node-4 .cycle-node-label {
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
}

/* Node 5: Top left (10 o'clock position) - Label to the LEFT */
.cycle-node-5 {
    top: 18%;
    left: -20px;
}
.cycle-node-5 .cycle-node-label {
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

/* ==================== ECOSYSTEM CYCLE LAYOUT ==================== */
.ecosystem-cycle-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.ecosystem-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 0 0 260px;
    max-width: 260px;
}

.ecosystem-left {
    align-items: flex-start;
    padding-left: 0;
}

.ecosystem-right {
    align-items: flex-start;
    padding-right: 0;
}

/* Ecosystem Mini Cards */
.eco-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 176, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.eco-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eco-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(67, 176, 42, 0.15);
    border-color: rgba(67, 176, 42, 0.3);
}

.eco-mini-card:hover::before {
    opacity: 1;
}

.eco-mini-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--saga-green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.eco-mini-icon i {
    font-size: 1.1rem;
    color: var(--saga-green);
    transition: all 0.3s ease;
}

.eco-mini-card:hover .eco-mini-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.eco-mini-card:hover .eco-mini-icon i {
    color: white;
}

.eco-mini-content {
    flex: 1;
}

.eco-mini-content h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--saga-gray-dark);
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
}

.eco-mini-content p {
    font-size: 0.8rem;
    color: var(--saga-gray);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Adjustments for Ecosystem Layout */
@media (max-width: 1200px) {
    .ecosystem-side {
        flex: 0 0 240px;
        max-width: 240px;
    }
    
    .eco-mini-card {
        padding: 1rem;
    }
    
    .eco-mini-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .eco-mini-content h5 {
        font-size: 0.85rem;
    }
    
    .eco-mini-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .ecosystem-cycle-layout {
        flex-direction: column;
        gap: 3rem;
    }
    
    .ecosystem-side {
        flex: none;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .ecosystem-left,
    .ecosystem-right {
        align-items: stretch;
    }
    
    .ecosystem-left {
        order: 2;
    }
    
    .cycle-container {
        order: 1;
    }
    
    .ecosystem-right {
        order: 3;
    }
    
    .eco-mini-card {
        flex: 1 1 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .eco-mini-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Flow Description Cards */
.flow-description-cards {
    margin-top: 3rem;
}

.description-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-normal);
}

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

.description-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--saga-green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.description-card .card-icon i {
    font-size: 1.25rem;
    color: var(--saga-green);
}

.description-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.description-card p {
    font-size: 0.85rem;
    color: var(--saga-gray);
    margin: 0;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-image {
    position: relative;
    height: 100%;
}

.benefit-visual {
    position: relative;
    height: 450px;
}

.visual-card {
    position: absolute;
    background: white;
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.visual-card .card-icon {
    width: 45px;
    height: 45px;
    background: var(--saga-green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card .card-icon i {
    font-size: 1.2rem;
    color: var(--saga-green);
}

.visual-card .card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--saga-green);
    line-height: 1;
}

.visual-card .card-label {
    font-size: 0.8rem;
    color: var(--saga-gray);
    margin-top: 2px;
}

.card-savings { top: 10%; left: 10%; animation-delay: 0s; }
.card-time { top: 40%; right: 5%; animation-delay: 0.5s; }
.card-health { bottom: 10%; left: 20%; animation-delay: 1s; }

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

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-circle {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-green);
}

.center-circle i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.center-circle span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Benefits Content */
.benefits-content {
    padding-left: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--saga-green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--saga-green);
}

.benefit-item:hover .benefit-icon {
    background: var(--gradient-primary);
}

.benefit-item:hover .benefit-icon i {
    color: white;
}

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--saga-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ==================== STEPS SECTION ==================== */
.steps-section {
    padding: 6rem 0;
    background: var(--saga-gray-light);
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--saga-green-pale);
    transform: translateX(-50%);
}

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

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-green);
}

.step-content {
    width: 45%;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.step-item:nth-child(odd) .step-content {
    margin-right: auto;
    text-align: right;
}

.step-item:nth-child(even) .step-content {
    margin-left: auto;
    text-align: left;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 45px;
    height: 45px;
    background: var(--saga-green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--saga-green);
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--saga-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.testimonial-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.testimonial-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--saga-green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.25rem;
    color: var(--saga-green);
}

.testimonial-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-card.featured .author-avatar i {
    color: white;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.8rem;
    color: var(--saga-gray);
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: var(--saga-gray-light);
    border-radius: 20px;
}

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

.trust-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--saga-green);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--saga-gray);
    margin-top: 0.5rem;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: var(--saga-gray-light);
}

/* ==================== COINS SECTION ==================== */
.coins-section {
    padding: 6rem 0;
    background: var(--saga-green-pale);
}

.coins-visual {
    position: relative;
    height: 400px;
}

.coin-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.coin {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: coinBounce 2s ease-in-out infinite;
}

.coin i {
    font-size: 2rem;
    color: white;
}

.coin-1 { animation-delay: 0s; }
.coin-2 { top: 20px; left: 30px; animation-delay: 0.3s; }
.coin-3 { top: 40px; left: 60px; animation-delay: 0.6s; }

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

.rewards-preview {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--saga-gray-light);
}

.reward-coins {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
}

.reward-desc {
    font-size: 0.85rem;
    color: var(--saga-gray);
}

.section-description {
    font-size: 1rem;
    color: var(--saga-gray);
    margin-bottom: 2rem;
}

.earn-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.earn-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.earn-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.earn-item i {
    color: var(--saga-green);
    font-size: 1.1rem;
}

.earn-item:hover i {
    transform: scale(1.2);
}

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

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -30px;
    right: 10%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    top: 20%;
    right: 20%;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== FOOTER ==================== */
.landing-footer {
    padding: 4rem 0 0;
    background: var(--saga-black);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top-section {
    padding-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 50px;
    width: 50px;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saga-green);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(67, 176, 42, 0.3);
}

.feedback-card h4 {
    color: var(--saga-green);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feedback-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feedback-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--saga-green);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.feedback-btn:hover {
    background: var(--saga-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(67, 176, 42, 0.3);
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--saga-green);
    border-color: var(--saga-green);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(67, 176, 42, 0.5), transparent);
    margin: 1rem 0 2rem;
}

.footer-main {
    padding-bottom: 2rem;
}

.footer-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.read-more-link {
    display: inline-block;
    color: var(--saga-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.read-more-link:hover {
    color: var(--saga-green-light);
    padding-left: 5px;
}

.footer-title {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--saga-green);
    padding-left: 5px;
}

.footer-links.contact-info li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links.contact-info i {
    color: var(--saga-green);
}

.coming-soon-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.app-badge i {
    font-size: 1.2rem;
}

.app-badge.disabled {
    opacity: 0.5;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -50vw;
    padding-left: 50vw;
    padding-right: 50vw;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .designed-by {
    font-size: 0.8rem;
}

.footer-bottom .designed-by a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
}

.footer-bottom .designed-by a:hover {
    color: var(--saga-green);
    border-color: var(--saga-green);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .circular-flow-nodes {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
    }
    
    /* Cycle responsive - 992px */
    .cycle-wrapper {
        width: 380px;
        height: 380px;
    }
    
    .cycle-center {
        width: 100px;
        height: 100px;
    }
    
    .cycle-logo {
        width: 55px;
        height: 55px;
    }
    
    .cycle-node-icon {
        width: 60px;
        height: 60px;
    }
    
    .cycle-node-icon i {
        font-size: 1.3rem;
    }
    
    .cycle-node-label {
        font-size: 0.75rem;
        max-width: 80px;
    }
    
    .step-content {
        width: 42%;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
    
    .feedback-card {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
    }
    
    .retailers-grid {
        gap: 1.5rem;
    }
    
    .retailer-logo {
        width: 45px;
        height: 45px;
    }
    
    /* Cycle responsive - 768px */
    .cycle-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .cycle-center {
        width: 85px;
        height: 85px;
    }
    
    .cycle-logo {
        width: 45px;
        height: 45px;
    }
    
    .cycle-tagline {
        font-size: 0.6rem;
    }
    
    .cycle-node-icon {
        width: 50px;
        height: 50px;
    }
    
    .cycle-node-icon i {
        font-size: 1.1rem;
    }
    
    .cycle-node-label {
        font-size: 0.7rem;
        max-width: 70px;
    }
    
    .cycle-node-step {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    /* Adjust node positions for smaller screen */
    .cycle-node-1 {
        top: -10px;
    }
    
    .cycle-node-2 {
        top: 15%;
        right: -15px;
    }
    
    .cycle-node-3 {
        bottom: 5%;
        right: 5%;
    }
    
    .cycle-node-4 {
        bottom: 5%;
        left: 5%;
    }
    
    .cycle-node-5 {
        top: 15%;
        left: -15px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .step-number {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
    }
    
    .step-item:nth-child(odd) .step-content,
    .step-item:nth-child(even) .step-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    
    .benefits-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 0.5rem;
    }
    
    .footer-main > div {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Cycle responsive - 576px (mobile) */
    .cycle-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .cycle-center {
        width: 70px;
        height: 70px;
    }
    
    .cycle-logo {
        width: 38px;
        height: 38px;
    }
    
    .cycle-tagline {
        font-size: 0.5rem;
    }
    
    .cycle-node-icon {
        width: 42px;
        height: 42px;
    }
    
    .cycle-node-icon i {
        font-size: 0.95rem;
    }
    
    .cycle-node-label {
        display: none;
    }
    
    .cycle-node-step {
        width: 16px;
        height: 16px;
        font-size: 0.55rem;
    }
    
    /* Tighter node positions on mobile */
    .cycle-node-1 {
        top: -8px;
    }
    
    .cycle-node-2 {
        top: 12%;
        right: -10px;
    }
    
    .cycle-node-3 {
        bottom: 2%;
        right: 2%;
    }
    
    .cycle-node-4 {
        bottom: 2%;
        left: 2%;
    }
    
    .cycle-node-5 {
        top: 12%;
        left: -10px;
    }
}