/*
 * Skill Plannet — Home Page Styles
 */

  /* HERO */
  .hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 90px 60px 60px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-left { animation: fadeUp 1s 0.2s ease both; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,229,160,0.1);
    border: 1px solid rgba(0,229,160,0.25);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
  }

  .badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

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

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }

  h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent) 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  h1 strong {
    color: var(--accent2);
    font-weight: 800;
  }

  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 40px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #050a0e;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.3px;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,229,160,0.35);
  }

  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translate(2px, -2px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.25s;
    background: var(--surface);
    cursor: pointer;
  }

  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
  }

  .trust-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    color: var(--muted);
    font-size: 0.85rem;
  }

  .trust-avatars {
    display: flex;
  }

  .trust-avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    margin-left: -8px;
  }

  .trust-avatars span:first-child { margin-left: 0; }

  .a1 { background: linear-gradient(135deg, #ff6b35, #ff9f7f); }
  .a2 { background: linear-gradient(135deg, #7c6af7, #a89cf9); }
  .a3 { background: linear-gradient(135deg, #00e5a0, #00b8ff); }
  .a4 { background: linear-gradient(135deg, #f7c948, #f9a825); }

  /* HERO RIGHT */
  .hero-right {
    position: relative;
    animation: fadeUp 1s 0.5s ease both;
  }

  .dashboard-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(20px);
    overflow: hidden;
  }

  .dashboard-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,160,0.4), transparent);
  }

  .dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .dash-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .dash-dots {
    display: flex; gap: 6px;
  }

  .dash-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
  }

  .dash-dots span:nth-child(1) { background: #ff5f57; }
  .dash-dots span:nth-child(2) { background: #febc2e; }
  .dash-dots span:nth-child(3) { background: #28c840; }

  .courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .course-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.2s;
    cursor: pointer;
  }

  .course-pill:hover {
    background: rgba(0,229,160,0.08);
    border-color: rgba(0,229,160,0.3);
    transform: translateY(-2px);
  }

  .course-pill .icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .course-pill .name {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .course-pill .meta {
    font-size: 0.72rem;
    color: var(--muted);
  }

  .progress-section { margin-top: 8px; }

  .prog-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .prog-bar {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .prog-fill {
    height: 100%;
    border-radius: 99px;
    position: relative;
    overflow: hidden;
  }

  .prog-fill::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    animation: shimmer 2s infinite;
  }

  @keyframes shimmer {
    to { left: 200%; }
  }

  .p1 { background: linear-gradient(90deg, var(--accent), #00b8ff); width: 72%; }
  .p2 { background: linear-gradient(90deg, var(--accent3), #c084fc); width: 45%; }
  .p3 { background: linear-gradient(90deg, var(--accent2), #fbbf24); width: 88%; }

  /* Floating tags */
  .float-tag {
    position: absolute;
    background: rgba(5,10,14,0.85);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(12px);
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
  }

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

  .ft1 {
    top: -18px; right: 30px;
    color: var(--accent);
    border-color: rgba(0,229,160,0.25);
    animation-delay: 0s;
  }

  .ft2 {
    bottom: 60px; left: -20px;
    color: var(--accent3);
    border-color: rgba(124,106,247,0.3);
    animation-delay: 1.5s;
  }

  .ft3 {
    bottom: -16px; right: 60px;
    color: var(--accent2);
    border-color: rgba(255,107,53,0.25);
    animation-delay: 0.8s;
  }

  .lesson-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    transition: all 0.2s;
  }
  .lesson-row:hover { background: rgba(255,255,255,0.06); }
  .active-lesson { border-color: rgba(0,229,160,0.25) !important; background: rgba(0,229,160,0.05) !important; }
  .lesson-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    color: var(--accent);
    flex-shrink: 0;
  }

  /* STATS */
  .stats-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 900px;
    margin: 0 auto 100px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    animation: fadeUp 1s 0.8s ease both;
  }

  .stat-item {
    background: var(--bg);
    padding: 32px 40px;
    text-align: center;
    transition: background 0.3s;
  }

  .stat-item:hover { background: rgba(255,255,255,0.03); }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-num span { font-size: 1.8rem; }

  .s1 { color: var(--accent); }
  .s2 { color: var(--accent3); }
  .s3 { color: var(--accent2); }

  .stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* FEATURES */
  .section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 100px;
  }

  .section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .section-sub {
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 56px;
  }

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

  .feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, var(--card-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .feat-card:hover {
    border-color: var(--card-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  }

  .feat-card:hover::after { opacity: 1; }

  .feat-card:nth-child(1) { --card-glow: rgba(0,229,160,0.08); --card-border: rgba(0,229,160,0.3); }
  .feat-card:nth-child(2) { --card-glow: rgba(124,106,247,0.08); --card-border: rgba(124,106,247,0.3); }
  .feat-card:nth-child(3) { --card-glow: rgba(255,107,53,0.08); --card-border: rgba(255,107,53,0.3); }

  .feat-ico {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .ico1 { background: rgba(0,229,160,0.12); }
  .ico2 { background: rgba(124,106,247,0.12); }
  .ico3 { background: rgba(255,107,53,0.12); }

  .feat-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
  }

  .feat-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
  }

  /* MARQUEE */
  .marquee-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 100px;
  }

  .marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
  }

  .marquee-item .dot {
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
  }

  /* CTA SECTION */
  .cta-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 100px;
  }

  .cta-box {
    background: linear-gradient(135deg, rgba(0,229,160,0.08), rgba(124,106,247,0.08));
    border: 1px solid rgba(0,229,160,0.2);
    border-radius: 28px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-box::before {
    content: '';
    position: absolute;
    top: -60%; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,229,160,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-box h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
  }

  .cta-box p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.82rem;
  }

  .footer-links { display: flex; gap: 28px; }
  .footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text); }

  .footer-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-link:hover { color: var(--text); }

  /* SKILL TAGS */
  .skill-tag {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    transform: rotate(var(--rot, 0deg));
    transition: all 0.25s;
    cursor: default;
  }

  .skill-tag:hover {
    background: rgba(0,229,160,0.1);
    border-color: rgba(0,229,160,0.35);
    color: var(--accent);
    transform: rotate(0deg) scale(1.05);
  }



  /* ── ABOUT GRID BOX ── */
  .about-grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
  }
  .about-studio-inner {
    text-align: center;
    padding: 40px;
  }
  .about-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  /* ── SKILLS CLOUD BOX ── */
  .skills-cloud-box {
    background: linear-gradient(135deg,rgba(10,20,30,0.9),rgba(5,15,25,0.95));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
  }
  .skills-cloud-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 700px;
  }

  /* ── HOW IT WORKS GRID ── */
  .how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .step-visual-col {
    display: block;
  }
  .step-visual-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── PRICING GRID ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 100px;
  }

  /* ── TESTIMONIALS ── */
  .testi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
  }
  .testi-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .tesi-viewport {
    overflow: hidden;
    margin-bottom: 32px;
  }
  .tesi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .testi-card {
    min-width: calc(50% - 10px);
    flex-shrink: 0;
  }


  /* STEP ITEMS */
  .step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.25s;
  }

  .step-item:hover, .step-item.active {
    background: rgba(0,229,160,0.07);
    border-color: rgba(0,229,160,0.3);
  }

  .step-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 32px;
    margin-top: 2px;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    display: none;
  }

  .step-item.active .step-desc { display: block; }

  /* PRICE CARDS */
  .price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
    position: relative;
  }

  .price-card:hover {
    border-color: var(--cborder);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
    background: radial-gradient(ellipse at top, var(--glow), transparent 60%), var(--surface);
  }

  .price-card.featured {
    border-color: var(--cborder);
    background: radial-gradient(ellipse at top, var(--glow), transparent 60%), var(--surface);
  }

  .price-tier-badge {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    letter-spacing: 1px;
  }

  .price-tier-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
  }

  .price-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
  }

  .price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
  }

  /* TESTIMONIALS */
  .testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s;
  }

  .testi-card:hover {
    border-color: rgba(0,229,160,0.2);
    background: rgba(0,229,160,0.03);
  }

  .testi-text {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
  }

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

  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
  }

  .testi-name {
    font-weight: 600;
    font-size: 0.9rem;
  }

  .testi-role {
    font-size: 0.78rem;
    color: var(--muted);
  }

  .tesi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
  }
  .tesi-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
  }

  /* Responsive styles moved to assets/css/responsive.css */
  /* FOLLOW ICONS */
.social-links{
    display:flex;
    gap:12px;
    align-items:center;
    margin-top:20px;
}

.social-links a{
    width:44px;
    height:44px;
    border-radius:12px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00e5a0;
    text-decoration:none;
    transition:0.3s ease;
    font-size:18px;
}

.social-links a:hover{
    background:#00e5a0;
    color:#050a0e;
    transform:translateY(-3px);
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:220px;
    background:#111827;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:12px;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;
    padding:12px 14px;
    border-radius:10px;
}

.dropdown-menu li a:hover{
    background:rgba(0,229,160,0.08);
    color:#00e5a0;
}

@media(max-width:991px){

    .dropdown-menu{
        position:relative;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
    }

    .dropdown-menu.show{
        display:block;
    }
}
.mobile-dropdown{
    width:100%;
}

.mobile-drop-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

.mobile-dropdown-menu{
    display:none;
    padding-left:12px;
    margin-top:6px;
}

.mobile-dropdown-menu a{
    font-size:0.92rem;
    padding:12px 0;
    color:#94A3B8;
    display:block;
}

.mobile-dropdown.active .mobile-dropdown-menu{
    display:block;
}

.mobile-dropdown.active i{
    transform:rotate(180deg);
}

.mobile-drop-btn i{
    transition:0.3s ease;
}

