/* Hero Section - Floating Seeds Design */
.seed-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #e8f7fa 0%, #d4e9f1 100%);
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.seed-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-seeds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.seed {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    animation: floatSeed 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.seed:nth-child(1) { top: 10%; left: 10%; }
.seed:nth-child(2) { top: 30%; left: 25%; }
.seed:nth-child(3) { top: 50%; left: 40%; }
.seed:nth-child(4) { top: 70%; left: 60%; }
.seed:nth-child(5) { top: 20%; left: 80%; }

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

.hero-text-flow {
    position: relative;
}

.hero-title-flow {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.text-gradient {
    background: linear-gradient(90deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.hero-title-flow:hover .text-gradient::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-description-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(110, 193, 228, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-stats-circle {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(110, 193, 228, 0.2);
}

.stat-circle {
    text-align: center;
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    opacity: 0.1;
    animation: pulseCircle 2s ease-in-out infinite;
}

.circle-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 5px;
}

.circle-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Flow Path Visualization */
.flow-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 20px 30px;
    border: 2px solid rgba(120, 176, 75, 0.2);
    backdrop-filter: blur(5px);
}

.flow-point {
    position: relative;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    color: var(--green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flow-point.active .point-icon {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.point-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.flow-point.active .point-label {
    color: var(--green);
    font-weight: 600;
}

.flow-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(120, 176, 75, 0.3), transparent);
    position: relative;
    overflow: hidden;
}

.flow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    transform: translateX(-100%);
    animation: flowLine 3s linear infinite;
}

/* Quality Journey Steps */
.quality-journey {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fdfe 0%, #ffffff 100%);
}

.journey-steps {
    max-width: 1200px;
    margin: 60px auto 0;
}

.step-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    position: relative;
}

.step-container:nth-child(even) {
    direction: rtl;
}

.step-container:nth-child(even) .step-content {
    direction: ltr;
}

.step-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    padding: 40px;
    position: relative;
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(120, 176, 75, 0.2);
}

.badge-number {
    font-weight: bold;
    color: var(--green);
    font-size: 1.2rem;
}

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

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 2px;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Lab Testing Visual */
.visual-microscope {
    position: relative;
    width: 200px;
    height: 200px;
}

.microscope-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.microscope-arm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 100px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.microscope-lens {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 5px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: lensFocus 3s ease-in-out infinite;
}

.test-slide {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
}

.slide-cell {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    animation: cellPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.step-highlight {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(120, 176, 75, 0.2);
    text-align: center;
}

.highlight-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--green);
    line-height: 1;
}

.highlight-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Temperature Visual */
.temperature-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    text-align: center;
    margin-top: 30px;
}

.temp-value {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.temp-label {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.temp-slider {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 20px;
    position: relative;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4cd964, #2196f3, #667eea);
    border-radius: 5px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: tempSlide 4s ease-in-out infinite;
}

.visual-thermometer {
    width: 120px;
    height: 200px;
    position: relative;
}

.thermometer-tube {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 180px;
    background: linear-gradient(180deg, #4cd964 0%, #2196f3 50%, #667eea 100%);
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
}

.mercury {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, #ff6b6b 0%, #ff5252 100%);
    animation: mercuryRise 3s ease-in-out infinite;
}

.temperature-markers {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.temperature-markers span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Certifications Visual */
.certificates-wall {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: perspective(500px) rotateX(10deg);
}

.certificate {
    background: linear-gradient(135deg, #fff9c4, #fff59d);
    padding: 20px;
    border-radius: 10px;
    transform: rotate(var(--rotation));
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffd54f;
    position: relative;
    transition: transform 0.3s ease;
}

.certificate:hover {
    transform: rotate(var(--rotation)) translateY(-10px);
    z-index: 2;
}

.cert-seal {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.certificate span {
    font-weight: bold;
    color: #5d4037;
    font-size: 1.1rem;
}

.cert-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cert-badge {
    flex: 1;
    padding: 20px;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(120, 176, 75, 0.2);
}

.badge-count {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--green);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Sustainability Visual */
.water-cycle {
    position: relative;
    height: 120px;
    margin-top: 30px;
}

.cycle-drop {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #29b6f6, #0288d1);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: dropFall 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.cycle-drop:nth-child(1) { left: 20%; top: 0; }
.cycle-drop:nth-child(2) { left: 50%; top: 20px; }
.cycle-drop:nth-child(3) { left: 80%; top: 40px; }

.recycle-rate {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 2px solid rgba(41, 182, 246, 0.3);
}

.rate-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0288d1;
    line-height: 1;
}

.rate-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.visual-ecology {
    width: 200px;
    height: 200px;
    position: relative;
}

.eco-leaf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green), #81c784);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: leafWave 3s ease-in-out infinite;
}

.eco-water {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: linear-gradient(90deg, #29b6f6, #0288d1);
    border-radius: 50%;
    animation: waterRipple 3s ease-in-out infinite;
}

.eco-sun {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd54f, #ffb300);
    border-radius: 50%;
    animation: sunGlow 3s ease-in-out infinite;
}

/* Global Network */
.global-network {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.network-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: rgba(110, 193, 228, 0.2);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    left: 0;
    animation: gridLineHorizontal 20s linear infinite;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
    animation: gridLineVertical 20s linear infinite;
}

.network-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    animation: nodePulse 3s ease-in-out infinite;
}

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

.radial-chart {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(110, 193, 228, 0.2);
}

.radial-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

.radial-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--green) var(--progress), rgba(255, 255, 255, 0.1) 0deg);
    mask: radial-gradient(transparent 70px, black 71px);
}

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

.radial-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.radial-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.radial-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text {
    flex: 1;
}

.info-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.info-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Map Visualization */
.map-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(110, 193, 228, 0.2);
    height: 400px;
    position: relative;
}

.map-regions {
    position: relative;
    width: 100%;
    height: 100%;
}

.region {
    position: absolute;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.region:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.region[data-region="na"] { top: 20%; left: 20%; }
.region[data-region="eu"] { top: 30%; left: 50%; }
.region[data-region="as"] { top: 40%; left: 75%; }

.region-name {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.region-points {
    display: flex;
    gap: 10px;
}

.point {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    position: relative;
    animation: pointGlow 2s ease-in-out infinite;
}

.point::after {
    content: attr(data-city);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.point:hover::after {
    opacity: 1;
}

/* Process Flow */
.process-flow {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdfe 100%);
}

.flow-diagram {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    border-color: var(--green);
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(120, 176, 75, 0.1);
}

.step-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    position: relative;
}

.circle-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.step-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    opacity: 0.2;
    animation: circlePulse 2s ease-in-out infinite;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-content > p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-features li i {
    color: var(--green);
    font-size: 0.8rem;
}

.flow-connector {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 40px;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--green), var(--blue));
}

.connector-arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--green);
}

/* Commitment CTA */
.commitment-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #e8f7fa 0%, #d4e9f1 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-potatoes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.potato {
    position: absolute;
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, var(--green), #81c784);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: floatPotato 6s ease-in-out infinite;
    animation-delay: var(--delay);
    transform: rotate(45deg);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-spin {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 3rem;
    animation: iconSpin 10s linear infinite;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.feature-orb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.orb-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.orb-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-orb:hover .orb-icon {
    transform: translateY(-10px);
}

.feature-orb:hover .orb-icon::before {
    opacity: 1;
}

.feature-orb:hover .orb-icon i {
    color: white;
    position: relative;
    z-index: 2;
}

.orb-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-spin {
    position: relative;
    overflow: hidden;
}

.btn-spin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: btnShine 2s linear infinite;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

/* Animations */
@keyframes floatSeed {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulseCircle {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2); }
}

@keyframes flowLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes lensFocus {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

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

@keyframes tempSlide {
    0%, 100% { left: 30%; }
    50% { left: 70%; }
}

@keyframes mercuryRise {
    0%, 100% { height: 60%; }
    50% { height: 80%; }
}

@keyframes dropFall {
    0% { transform: rotate(-45deg) translateY(0) scale(1); opacity: 1; }
    100% { transform: rotate(-45deg) translateY(80px) scale(0.5); opacity: 0; }
}

@keyframes leafWave {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-5deg); }
    75% { transform: translate(-50%, -50%) rotate(5deg); }
}

@keyframes waterRipple {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes sunGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes gridLineHorizontal {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes gridLineVertical {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(110, 193, 228, 0.7); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(110, 193, 228, 0); }
}

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

@keyframes circlePulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

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

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes btnShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 5px 15px rgba(110, 193, 228, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(110, 193, 228, 0.6); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .seed-hero-content,
    .step-container,
    .network-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .flow-path {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .flow-line {
        display: none;
    }
    
    .step-container:nth-child(even) {
        direction: ltr;
    }
    
    .radial-chart {
        margin-bottom: 40px;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .flow-connector {
        height: 20px;
        margin-left: 0;
    }
    
    .connector-line {
        width: 100%;
        height: 2px;
    }
    
    .connector-arrow {
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid var(--green);
        border-top: none;
    }
}

@media (max-width: 768px) {
    .hero-title-flow {
        font-size: 2.5rem;
    }
    
    .hero-stats-circle {
        flex-direction: column;
        gap: 20px;
    }
    
    .cert-badges {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .step-visual {
        height: 200px;
    }
    
    .visual-microscope,
    .visual-thermometer,
    .visual-ecology {
        transform: scale(0.8);
    }
    
    .region {
        padding: 10px;
    }
    
    .region-points {
        flex-wrap: wrap;
    }
}