/* ========================================
   Software Training Page - Premium Styles
   SS Integrated Tech Solutions
   ======================================== */

/* ========================================
   SOFTWARE HERO SECTION
   ======================================== */
.sw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.sw-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sw-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sw-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 17, 28, 0.93) 0%,
        rgba(20, 30, 50, 0.87) 40%,
        rgba(13, 17, 28, 0.78) 100%
    );
    z-index: 1;
}

/* Floating Particles */
.sw-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sw-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    animation: swParticleFloat 8s ease-in-out infinite;
}

.sw-particles .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.sw-particles .particle:nth-child(2) { top: 25%; left: 80%; animation-delay: 1s; animation-duration: 9s; background: rgba(99, 102, 241, 0.4); }
.sw-particles .particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; animation-duration: 6s; width: 8px; height: 8px; }
.sw-particles .particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 3s; animation-duration: 10s; background: rgba(14, 165, 233, 0.3); }
.sw-particles .particle:nth-child(5) { top: 40%; left: 50%; animation-delay: 1.5s; animation-duration: 8s; width: 4px; height: 4px; }
.sw-particles .particle:nth-child(6) { top: 85%; left: 35%; animation-delay: 4s; animation-duration: 7s; background: rgba(168, 85, 247, 0.3); }
.sw-particles .particle:nth-child(7) { top: 10%; left: 60%; animation-delay: 2.5s; animation-duration: 11s; width: 5px; height: 5px; }
.sw-particles .particle:nth-child(8) { top: 50%; left: 90%; animation-delay: 0.5s; animation-duration: 9s; }

@keyframes swParticleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(20px, -30px) scale(1.3); opacity: 1; }
    50% { transform: translate(-15px, 20px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(25px, 15px) scale(1.1); opacity: 0.8; }
}

/* Floating Code Snippets */
.sw-floating-code {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.code-float {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(16, 185, 129, 0.15);
    font-weight: 600;
    animation: codeFloatAnim 12s ease-in-out infinite;
}

.code-float:nth-child(2) { animation-delay: 2s; color: rgba(99, 102, 241, 0.12); }
.code-float:nth-child(3) { animation-delay: 4s; color: rgba(245, 158, 11, 0.12); font-size: 1.2rem; }
.code-float:nth-child(4) { animation-delay: 6s; color: rgba(14, 165, 233, 0.12); }
.code-float:nth-child(5) { animation-delay: 3s; color: rgba(168, 85, 247, 0.12); }

@keyframes codeFloatAnim {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-20px) rotate(3deg); opacity: 0.3; }
}

.sw-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.sw-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: #34d399;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.sw-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.sw-hero-highlight {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    background: linear-gradient(135deg, #34d399 0%, #6366f1 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.sw-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Stats */
.sw-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.sw-stat {
    text-align: center;
}

.sw-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #34d399, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sw-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Hero Buttons */
.sw-hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.sw-hero .btn-glow {
    box-shadow: 0 4px 25px rgba(16, 185, 129, 0.4), 0 0 60px rgba(16, 185, 129, 0.15);
}

.sw-hero .btn-glow:hover {
    box-shadow: 0 8px 35px rgba(16, 185, 129, 0.5), 0 0 80px rgba(16, 185, 129, 0.2);
}

/* ========================================
   COURSE OVERVIEW SECTION
   ======================================== */
.sw-overview {
    background: var(--bg-white);
}

.sw-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.sw-lead {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
}

.sw-overview-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sw-mini-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.sw-mini-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: #10b981;
}

.sw-mini-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #6366f1);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.sw-mini-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.sw-mini-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.sw-overview-visual {
    position: relative;
}

.sw-overview-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.sw-overview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sw-overview-img-wrapper:hover .sw-overview-img {
    transform: scale(1.05);
}

.sw-img-badge {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    padding: 0.75rem 1.25rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   WHAT YOU WILL LEARN
   ======================================== */
.sw-learn {
    background: var(--bg-light);
}

.sw-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.sw-learn-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    overflow: hidden;
}

.sw-learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #10b981, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.sw-learn-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

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

.sw-learn-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.08);
    line-height: 1;
    font-family: var(--font-display);
}

.sw-learn-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
}

.sw-learn-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.sw-learn-card p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   TOOLS & TECHNOLOGIES
   ======================================== */
.sw-tools {
    background: var(--bg-dark);
    padding: var(--spacing-3xl) 0;
}

.sw-tools .section-title {
    color: #ffffff;
}

.sw-tools .section-title::after {
    background: linear-gradient(135deg, #10b981, #6366f1);
}

.sw-tools .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.sw-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.sw-tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.sw-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(99, 102, 241, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.sw-tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(16, 185, 129, 0.1);
}

.sw-tool-card:hover::before {
    opacity: 1;
}

.sw-tool-icon-wrapper {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.sw-tool-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.sw-tool-card:hover .sw-tool-icon {
    background: linear-gradient(135deg, #10b981, #6366f1);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.sw-tool-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.sw-tool-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.sw-tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.sw-tool-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: #34d399;
    font-weight: 500;
}

/* ========================================
   COURSE MODULES TIMELINE
   ======================================== */
.sw-modules {
    background: var(--bg-white);
}

.sw-modules-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.sw-modules-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #10b981 0%, #6366f1 50%, #f59e0b 100%);
    border-radius: var(--radius-full);
}

.sw-module-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    padding-left: var(--spacing-lg);
}

.sw-module-marker {
    position: absolute;
    left: -47px;
    top: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #10b981, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 1;
    transition: all var(--transition-base);
}

.sw-module-item:hover .sw-module-marker {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.sw-module-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-display);
}

.sw-module-content {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.sw-module-item:hover .sw-module-content {
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(6px);
}

.sw-module-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.sw-module-content p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.sw-module-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sw-module-topics span {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 500;
}

/* ========================================
   INDUSTRY PROJECTS
   ======================================== */
.sw-projects {
    background: var(--bg-light);
}

.sw-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.sw-project-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.sw-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.sw-project-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sw-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sw-project-card:hover .sw-project-img img {
    transform: scale(1.08);
}

.sw-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
}

.sw-project-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, #10b981, #6366f1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.sw-project-info {
    padding: var(--spacing-lg);
}

.sw-project-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.sw-project-info p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.sw-project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sw-project-skills span {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* ========================================
   WHO SHOULD ENROLL
   ======================================== */
.sw-audience {
    background: var(--bg-white);
}

.sw-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.sw-audience-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.sw-audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #10b981, #6366f1);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.sw-audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.sw-audience-card:hover::after {
    transform: scaleX(1);
}

.sw-audience-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.sw-audience-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.sw-audience-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.sw-benefits {
    background: linear-gradient(135deg, #0d1117 0%, #161b2e 50%, #0d1117 100%);
    padding: var(--spacing-3xl) 0;
}

.sw-benefits .section-title {
    color: #ffffff;
}

.sw-benefits .section-title::after {
    background: linear-gradient(135deg, #10b981, #6366f1);
}

.sw-benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.sw-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.sw-benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
    overflow: hidden;
}

.sw-benefit-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.sw-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sw-benefit-card:hover .sw-benefit-glow {
    opacity: 1;
}

.sw-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
    position: relative;
    z-index: 1;
}

.sw-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.sw-benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */
.sw-cta {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #065f46 0%, #10b981 40%, #6366f1 100%);
    overflow: hidden;
}

.sw-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sw-cta-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: swCtaFloat 10s ease-in-out infinite;
}

.sw-cta-particles span:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; }
.sw-cta-particles span:nth-child(2) { width: 60px; height: 60px; top: 60%; left: 80%; animation-delay: 2s; }
.sw-cta-particles span:nth-child(3) { width: 40px; height: 40px; top: 30%; left: 60%; animation-delay: 4s; }
.sw-cta-particles span:nth-child(4) { width: 100px; height: 100px; top: 70%; left: 20%; animation-delay: 1s; opacity: 0.5; }
.sw-cta-particles span:nth-child(5) { width: 50px; height: 50px; top: 20%; left: 90%; animation-delay: 3s; }

@keyframes swCtaFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.2; }
}

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

.sw-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
}

.sw-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.sw-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md) var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.sw-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.sw-cta-check {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.sw-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.sw-cta .btn-primary {
    background: #ffffff !important;
    color: #10b981 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sw-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sw-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    background: transparent !important;
}

.sw-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

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

.sw-cta-note a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    transition: text-decoration-color var(--transition-base);
}

.sw-cta-note a:hover {
    text-decoration-color: #ffffff;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .sw-overview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .sw-learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-hero-stats {
        gap: var(--spacing-xl);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sw-hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: var(--spacing-xl);
    }

    .sw-hero-content {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .sw-hero-stats {
        gap: var(--spacing-lg);
    }

    .sw-stat-number {
        font-size: 2rem;
    }

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

    .sw-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .sw-floating-code {
        display: none;
    }

    .sw-learn-grid {
        grid-template-columns: 1fr;
    }

    .sw-tools-grid {
        grid-template-columns: 1fr;
    }

    .sw-projects-grid {
        grid-template-columns: 1fr;
    }

    .sw-audience-grid {
        grid-template-columns: 1fr;
    }

    .sw-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sw-modules-timeline {
        padding-left: 50px;
    }

    .sw-modules-timeline::before {
        left: 20px;
    }

    .sw-module-marker {
        left: -41px;
        width: 40px;
        height: 40px;
    }

    .sw-module-num {
        font-size: 0.75rem;
    }

    .sw-cta-features {
        flex-direction: column;
        align-items: center;
    }

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

    .sw-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .sw-hero-title {
        font-size: 2rem;
    }

    .sw-hero-highlight {
        font-size: 1rem;
    }

    .sw-hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .sw-overview-img {
        height: 250px;
    }

    .sw-project-img {
        height: 180px;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
