* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --sky-blue: #00c4ff;
    --sky-pink: #ff005e;
    --sky-green: #00ffb3;
    --sky-blue-light: rgba(0, 196, 255, 0.1);
    --sky-pink-light: rgba(255, 0, 94, 0.1);
    --sky-green-light: rgba(0, 255, 179, 0.1);
    --light-bg: #ffffff;
    --card-bg: #f8f9fa;
    --card-hover: #f1f3f4;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-tertiary: #9aa0a6;
    --border-light: #dadce0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
    --success-color: #00c853;
}

body {
    background: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}


/* ================================
   HERO SECTION - ROTATING ORBIT RINGS SYSTEM
================================ */
.header-hero-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: white;
    padding: 40px 0 0px;
    overflow: visible;
    margin-top: -40px;
    border-bottom: 1px solid var(--border-light);
}

.header-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green), var(--sky-pink));
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--sky-green), var(--sky-green), var(--sky-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-content p {
    margin-top: 18px;
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.actions {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.primary {
    background: linear-gradient(135deg, var(--sky-green), var(--sky-green), var(--sky-blue));
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

.btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
    transition: left 0.5s ease;
    z-index: -1;
}

.btn.primary:hover::before {
    left: 0;
}

.btn.primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn.secondary {
    background: transparent;
    color: var(--sky-pink);
    border: 2px solid var(--sky-pink);
}

.btn.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sky-pink);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn.secondary:hover::before {
    left: 0;
}

.btn.secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}


/* ========== ROTATING ORBIT RINGS SYSTEM ========== */
.hero-visual {
    flex: 1;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

/* Central fixed element */
.central-element {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.1), rgba(255, 0, 94, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 20;
    border: 2px solid var(--sky-green);
    box-shadow: 0 0 30px rgba(0, 196, 255, 0.2);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(2px);
}

.central-element i {
    font-size: 66px;
    background: linear-gradient(135deg, var(--sky-green), var(--sky-green), var(--sky-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Orbit Container - holds the rotating ring and icons */
.orbit-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

/* Rotating ring with dotted border */
.orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dotted;
    pointer-events: none;
}

/* Orbit 1 (Inner - 2 icons) */
.orbit-1-container {
    width: 180px;
    height: 180px;
    animation: rotateOrbit 60s linear infinite;
}

.orbit-1-ring {
    width: 180px;
    height: 180px;
    border-color: var(--sky-green);
    opacity: 0.7;
}

/* Orbit 2 (Middle - 4 icons) */
.orbit-2-container {
    width: 300px;
    height: 300px;
    animation: rotateOrbit 50s linear infinite;
}

.orbit-2-ring {
    width: 300px;
    height: 300px;
    border-color: var(--sky-green);
    opacity: 0.7;
}

/* Orbit 3 (Outer - 6 icons) */
.orbit-3-container {
    width: 420px;
    height: 420px;
    animation: rotateOrbit 40s linear infinite;
}

.orbit-3-ring {
    width: 420px;
    height: 420px;
    border-color: var(--sky-green);
    opacity: 0.7;
}

/* Rotation animation - linear infinite */
@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Icon styling - positioned on the orbit path */
.orbit-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    cursor: pointer;
    z-index: 25;
    left: 50%;
    top: 50%;
}

.orbit-icon:hover {
    transform: scale(1.15) !important;
    filter: brightness(1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    z-index: 30;
}

/* Individual orbit icon colors - MULTIPLE COLORS PER ORBIT like original */
/* Orbit 1 icons - Sky Blue and variants */
.orbit-1-container .orbit-icon:nth-child(2) {
    background: rgba(0, 196, 255, 0.1);
    color: var(--sky-blue);
    border-color: var(--sky-blue);
}
.orbit-1-container .orbit-icon:nth-child(3) {
    background: rgba(0, 150, 200, 0.1);
    color: #0096c8;
    border-color: #0096c8;
}

/* Orbit 2 icons - Pink and Purple variants */
.orbit-2-container .orbit-icon:nth-child(2) {
    background: rgba(255, 0, 94, 0.1);
    color: var(--sky-pink);
    border-color: var(--sky-pink);
}
.orbit-2-container .orbit-icon:nth-child(3) {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: #ffc107;
}
.orbit-2-container .orbit-icon:nth-child(4) {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border-color: #9c27b0;
}
.orbit-2-container .orbit-icon:nth-child(5) {
    background: rgba(255, 87, 34, 0.1);
    color: #ff5722;
    border-color: #ff5722;
}

/* Orbit 3 icons - Green and Teal variants */
.orbit-3-container .orbit-icon:nth-child(2) {
    background: rgba(0, 255, 179, 0.1);
    color: var(--sky-green);
    border-color: var(--sky-green);
}
.orbit-3-container .orbit-icon:nth-child(3) {
    background: rgba(0, 200, 140, 0.1);
    color: #00c88c;
    border-color: #00c88c;
}
.orbit-3-container .orbit-icon:nth-child(4) {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
    border-color: #009688;
}
.orbit-3-container .orbit-icon:nth-child(5) {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-color: #4caf50;
}
.orbit-3-container .orbit-icon:nth-child(6) {
    background: rgba(139, 195, 74, 0.1);
    color: #8bc34a;
    border-color: #8bc34a;
}
.orbit-3-container .orbit-icon:nth-child(7) {
    background: rgba(205, 220, 57, 0.1);
    color: #cddc39;
    border-color: #cddc39;
}

.sky-tagline {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    z-index: 10;
    pointer-events: none;
}

/* ================================
   RESPONSIVE DESIGN - FIXED MOBILE ALIGNMENT
================================ */
@media (max-width: 1024px) {
    .hero-visual { height: 480px; }
    .orbit-1-container { width: 160px; height: 160px; }
    .orbit-1-ring { width: 160px; height: 160px; }
    .orbit-2-container { width: 270px; height: 270px; }
    .orbit-2-ring { width: 270px; height: 270px; }
    .orbit-3-container { width: 380px; height: 380px; }
    .orbit-3-ring { width: 380px; height: 380px; }
    .orbit-icon { width: 52px; height: 52px; font-size: 22px; }
}

@media (max-width: 900px) {
    .header-hero-wrapper {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        margin: 0 auto;
        max-width: 500px;
        font-size: 1rem;
    }
    
    .actions {
        justify-content: center;
    }
    
    .hero-visual {
        height: 420px;
        width: 100%;
        margin: 20px 0;
    }
    
    .orbit-1-container { width: 150px; height: 150px; }
    .orbit-1-ring { width: 150px; height: 150px; }
    .orbit-2-container { width: 250px; height: 250px; }
    .orbit-2-ring { width: 250px; height: 250px; }
    .orbit-3-container { width: 350px; height: 350px; }
    .orbit-3-ring { width: 350px; height: 350px; }
    .orbit-icon { width: 48px; height: 48px; font-size: 20px; }
    .central-element { width: 85px; height: 85px; }
    .central-element i { font-size: 36px; }
}

@media (max-width: 768px) {
    .header-hero-wrapper {
        padding: 70px 0 35px;
    }
    
    .sky-tagline {
        top: 25px;
        font-size: 12px;
        margin-top: 15px;
    }
    
    .hero-visual {
        height: 380px;
    }
    
    .orbit-1-container { width: 140px; height: 140px; }
    .orbit-1-ring { width: 140px; height: 140px; }
    .orbit-2-container { width: 230px; height: 230px; }
    .orbit-2-ring { width: 230px; height: 230px; }
    .orbit-3-container { width: 320px; height: 320px; }
    .orbit-3-ring { width: 320px; height: 320px; }
    .orbit-icon { width: 44px; height: 44px; font-size: 18px; }
    .central-element { width: 75px; height: 75px; }
    .central-element i { font-size: 32px; }
}

@media (max-width: 600px) {
    .header-hero-wrapper {
        padding: 50px 0 20px;
    }
    
    .sky-tagline {
        top: 20px;
        font-size: 11px;
        padding: 0 15px;
		margin-top: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    .actions {
        margin-top: 20px;
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        height: 340px;
        margin: 15px 0;
	    margin-top: -120px;
		margin-bottom:-80px;
    }
    
    .orbit-1-container { width: 120px; height: 120px; }
    .orbit-1-ring { width: 120px; height: 120px; }
    .orbit-2-container { width: 200px; height: 200px; }
    .orbit-2-ring { width: 200px; height: 200px; }
    .orbit-3-container { width: 280px; height: 280px; }
    .orbit-3-ring { width: 280px; height: 280px; }
    .orbit-icon { width: 40px; height: 40px; font-size: 16px; }
    .central-element { width: 65px; height: 65px; }
    .central-element i { font-size: 28px; }
}

@media (max-width: 480px) {
    .header-hero-wrapper {
        padding: 60px 0 0px;
    }
    
    .sky-tagline {
        top: 18px;
        font-size: 10px;
		margin-top: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        height: 300px;
		margin-top: -120px;
		margin-bottom:-80px;
    }
    
    .orbit-1-container { width: 100px; height: 100px; }
    .orbit-1-ring { width: 100px; height: 100px; }
    .orbit-2-container { width: 170px; height: 170px; }
    .orbit-2-ring { width: 170px; height: 170px; }
    .orbit-3-container { width: 240px; height: 240px; }
    .orbit-3-ring { width: 240px; height: 240px; }
    .orbit-icon { width: 36px; height: 36px; font-size: 14px; }
    .central-element { width: 55px; height: 55px; }
    .central-element i { font-size: 24px; }
}

@media (max-width: 360px) {
    .hero-visual {
        height: 280px;
    }
    
    .orbit-1-container { width: 90px; height: 90px; }
    .orbit-1-ring { width: 90px; height: 90px; }
    .orbit-2-container { width: 150px; height: 150px; }
    .orbit-2-ring { width: 150px; height: 150px; }
    .orbit-3-container { width: 210px; height: 210px; }
    .orbit-3-ring { width: 210px; height: 210px; }
    .orbit-icon { width: 32px; height: 32px; font-size: 12px; }
    .central-element { width: 50px; height: 50px; }
    .central-element i { font-size: 22px; }
}

/* ================================
   STATISTICS SECTION
================================ */
.stats-section {
    padding: 20px 0;
    margin: 20px 0 10px;
    clear: both;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green), var(--sky-pink));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.stat-item:hover::before {
    transform: translateX(0);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   SECTION TITLES
================================ */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title i {
    color: var(--sky-green);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.section-title:hover i {
    transform: rotate(10deg) scale(1.1);
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green), var(--sky-pink));
    border-radius: 2px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}



/* ================================
   TOOL CARDS GRID - COMPLETE (ALL DEVICES)
================================ */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green), var(--sky-pink));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.tool-card:hover::before {
    transform: translateX(0);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sky-blue-light);
    transition: all 0.3s ease;
    color: var(--sky-blue);
}

.tool-card:nth-child(3n+1) .tool-icon {
    color: var(--sky-green);
    background: var(--sky-green-light);
}

.tool-card:nth-child(3n+2) .tool-icon {
    color: var(--sky-green);
    background: var(--sky-green-light);
}

.tool-card:nth-child(3n+3) .tool-icon {
    color: var(--sky-green);
    background: var(--sky-green-light);
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 196, 255, 0.2);
	color: var(--sky-pink);
}

.tool-card h3 {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.tool-card:hover h3 {
    color: var(--sky-blue);
}

.tool-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ================================
   USE CASES SECTION - COMPLETE (ALL DEVICES)
================================ */
.use-cases-section {
    margin: 50px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.use-case-card {
    background: var(--light-bg);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green), var(--sky-pink));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.use-case-card:hover::before {
    transform: translateX(0);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
}

.use-case-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--sky-green);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    color: var(--sky-pink);
    transform: scale(1.1);
}

.use-case-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ================================
   STEPS SECTION - COMPLETE (ALL DEVICES)
================================ */
.steps-section {
    margin: 50px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--light-bg);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green), var(--sky-pink));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.step-card:hover::before {
    transform: translateX(0);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--sky-green);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    color: var(--sky-pink);
    transform: scale(1.1);
}

.step-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ================================
   FEATURES SECTION - COMPLETE (ALL DEVICES)
================================ */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 50px;
}

.feature-card {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
}

.feature-icon-section {
    padding: 25px 20px;
    background: white;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.feature-card:hover .feature-icon-section {
    background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-green-light));
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--sky-green);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--sky-pink);
}

.feature-icon-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.feature-text-section {
    padding: 20px;
    flex-grow: 1;
}

.feature-text-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ================================
   TESTIMONIALS SECTION - COMPLETE (ALL DEVICES)
================================ */
.testimonials-section {
    padding: 40px 0;
    margin: 30px 0;
    background: white;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--border-light);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-green), var(--sky-green));
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
}

.testimonial-content {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 15px;
    flex: 1;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.8rem;
    color: var(--sky-blue);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-green), var(--sky-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 196, 255, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.testimonial-card:hover .author-name {
    color: var(--sky-blue);
}

.author-role {
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

/* ================================
   CAPABILITIES SECTION - COMPLETE (ALL DEVICES)
================================ */
.capabilities-card {
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 30px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capabilities-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green), var(--sky-pink));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.capabilities-card:hover::before {
    transform: translateX(0);
}

.capabilities-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
    transform: translateY(-5px);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px 25px;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(5px);
    border-bottom-color: var(--sky-blue);
}

.capability-item i {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--sky-pink);
    background: var(--sky-pink-light);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.capability-item:hover i {
    background: var(--sky-pink);
    color: white;
    transform: scale(1.1);
}

.capability-item span {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* ================================
   FAQ SECTION - COMPLETE (ALL DEVICES)
================================ */
.faq-section {
    margin: 50px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--sky-blue-light);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    color: var(--sky-blue);
    padding-left: 25px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--sky-green);
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sky-green-light);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    background: var(--light-bg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 18px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--sky-green);
    color: white;
}

.faq-item.active .faq-question {
    color: var(--sky-pink);
}

/* ================================
   CTA SECTIONS - COMPLETE (ALL DEVICES)
================================ */
.cta-section {
    text-align: center;
    padding: 50px 30px;
    margin: 50px 0;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-green), var(--sky-green));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-section:hover::before {
    transform: translateX(0);
}

.cta-section:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
    transform: translateY(-5px);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--sky-green), var(--sky-green), var(--sky-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.cta-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-blue));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-bonus-container {
    width: 100%;
    margin: 50px auto;
}

.cta-bonus-section {
    text-align: center;
    padding: 40px 30px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 20px;
    max-width: 1000px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-green), var(--sky-green));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-bonus-section:hover::before {
    transform: translateX(0);
}

.cta-bonus-section:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
    transform: translateY(-5px);
}

.cta-bonus-section h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--sky-green), var(--sky-green), var(--sky-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.cta-bonus-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-bonus-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-blue));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-bonus-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-bonus-button:hover::before {
    left: 0;
}

.cta-bonus-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ================================
   VIDEO SECTIONS - COMPLETE (ALL DEVICES)
================================ */
.cta-video-container {
    width: 100%;
    margin: 50px auto;
}

.cta-video-section {
    text-align: center;
    padding: 40px 30px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 20px;
    max-width: 1000px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-green), var(--sky-green));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-video-section:hover::before {
    transform: translateX(0);
}

.cta-video-section:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
    transform: translateY(-5px);
}

.cta-video-section h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--sky-green), var(--sky-green), var(--sky-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.cta-video-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: #000;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    border-color: var(--sky-blue);
    transform: scale(1.02);
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

.video-item {
    margin-bottom: 2.5rem;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.02), rgba(255, 0, 94, 0.02));
    border-radius: 12px;
}

.video-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.video-item:hover h3 {
    color: var(--sky-blue);
}

.video-note-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
    padding: 8px;
    background: var(--sky-blue-light);
    border-radius: 6px;
}

.video-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), var(--sky-pink), var(--sky-green), transparent);
    margin: 25px 0;
}

/* ================================
   ABOUT SECTION - COMPLETE (ALL DEVICES)
================================ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0 50px;
    align-items: start;
}

.about-content, .getting-started {
    background: var(--light-bg);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.about-content::before, .getting-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-green), var(--sky-green), var(--sky-green));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.about-content:hover::before, .getting-started:hover::before {
    transform: translateX(0);
}

.about-content:hover, .getting-started:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue-light);
    transform: translateY(-5px);
}

.about-content h3, .getting-started h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.about-content h3::after, .getting-started h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--sky-green));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-content:hover h3::after, .getting-started:hover h3::after {
    width: 80px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.getting-started ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.getting-started li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    position: relative;
    transition: transform 0.3s ease;
}

.getting-started li:hover {
    transform: translateX(5px);
    color: var(--sky-blue);
}

.getting-started li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--sky-green);
    font-weight: bold;
    font-size: 1rem;
}

.getting-started p:last-child {
    background: linear-gradient(135deg, var(--sky-green-light), var(--sky-green-light));
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--sky-blue);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.getting-started p:last-child:hover {
    background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-green-light));
    border-color: var(--sky-blue);
    transform: scale(1.02);
}

/* ================================
   FLOATING YOUTUBE CTA - COMPLETE (ALL DEVICES)
================================ */
.floating-cta-youtube {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ff0000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-cta-youtube:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}


/* ================================
   ANIMATIONS - COMPLETE (ALL DEVICES)
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ================================
   CUSTOM SCROLLBAR - COMPLETE (ALL DEVICES)
================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--sky-blue), var(--sky-pink));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--sky-pink), var(--sky-blue));
}

/* ================================
   GLOBAL RESPONSIVE (GRID LAYOUTS) - COMPLETE (ALL DEVICES)
================================ */
@media (max-width: 1200px) {
    .tools-grid,
    .use-cases-grid,
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .tools-grid,
    .use-cases-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tools-grid,
    .use-cases-grid,
    .steps-grid,
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin: 40px 0 25px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-video-section,
    .cta-bonus-section {
        padding: 30px 20px;
    }
    
    .cta-video-section h2,
    .cta-bonus-section h2 {
        font-size: 1.4rem;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
    
    .video-item h3 {
        font-size: 1.1rem;
    }
    
    .capabilities-card {
        padding: 25px 20px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .video-wrapper iframe {
        height: 200px;
    }
    
    .cta-button, .cta-bonus-button {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 40px 10px;
    }
    
    .tools-grid {
        gap: 10px;
    }
    
    .tool-card {
        padding: 15px 10px;
    }
}