/* =============================================
   TraderPradip Home Page - Custom Theme CSS
   Dark Trading Theme
   ============================================= */

:root {
    --tp-dark-bg:       #0b0d1f;
    --tp-dark-bg-2:     #0f1229;
    --tp-dark-bg-3:     #12142e;
    --tp-dark-card:     #161832;
    --tp-dark-card-2:   #1a1d3a;
    --tp-accent-gold:   #f0a500;
    --tp-accent-gold-2: #ffc107;
    --tp-accent-purple: #6b3fa0;
    --tp-accent-purple-2: #8a5ccc;
    --tp-text-white:    #ffffff;
    --tp-text-light:    #c8cde4;
    --tp-text-muted:    #8891b4;
    --tp-border:        rgba(255,255,255,0.08);
    --tp-gold-glow:     0 0 20px rgba(240, 165, 0, 0.3);
}

/* ---- Reset specific to trading home ---- */
.tp-page * {
    box-sizing: border-box;
}

/* =============================================
   HERO SECTION
   ============================================= */
.tp-hero {
    position: relative;
    min-height: 85vh;
    background: var(--tp-dark-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('');
    background-size: cover;
    background-position: center right;
    opacity: 0.55;
    z-index: 0;
}

.tp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11, 13, 31, 0.95) 30%,
        rgba(11, 13, 31, 0.55) 60%,
        rgba(11, 13, 31, 0.15) 100%
    );
    z-index: 1;
}

.tp-hero .container {
    position: relative;
    z-index: 2;
}

.tp-hero-content {
    padding: 80px 0;
}

.tp-hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--tp-accent-gold);
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
}

.tp-hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--tp-accent-gold);
}

.tp-hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--tp-text-white);
    line-height: 1.15;
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
}

.tp-hero-title .highlight {
    color: var(--tp-accent-gold);
}

.tp-hero-subtitle {
    font-size: 16px;
    color: var(--tp-text-light);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 36px;
}

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

.tp-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tp-accent-gold);
    color: #0b0d1f;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.tp-btn-gold:hover {
    background: #e09400;
    color: #0b0d1f;
    transform: translateY(-2px);
    box-shadow: var(--tp-gold-glow);
}

.tp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--tp-text-white);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

.tp-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: var(--tp-text-white);
    border-color: rgba(255,255,255,0.6);
}

/* Video Card */
.tp-hero-video-card {
    background: rgba(22, 24, 50, 0.88);
    border: 1px solid var(--tp-border);
    border-radius: 16px;
    padding: 24px;
    max-width: 340px;
    backdrop-filter: blur(12px);
    margin: auto;
}

.tp-hero-video-card .video-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--tp-accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tp-hero-video-card .video-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--tp-text-white);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.tp-hero-video-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
}

.tp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(240, 165, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.tp-play-btn:hover {
    background: var(--tp-accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.tp-play-btn i {
    color: #0b0d1f;
    font-size: 18px;
    margin-left: 3px;
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.tp-features-strip {
    background: #0e1030;
    padding: 40px 0;
    border-top: 1px solid var(--tp-border);
    border-bottom: 1px solid var(--tp-border);
}

.tp-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 20px;
}

.tp-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    border: 2px solid var(--tp-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 165, 0, 0.08);
}

.tp-feature-icon i {
    font-size: 22px;
    color: var(--tp-accent-gold);
}

.tp-feature-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--tp-text-white);
    margin-bottom: 4px;
}

.tp-feature-text p {
    font-size: 13px;
    color: var(--tp-text-muted);
    margin: 0;
    line-height: 1.5;
}

.tp-feature-divider {
    width: 1px;
    height: 60px;
    background: var(--tp-border);
    margin: auto;
}

/* =============================================
   FOR YOUR SUCCESS SECTION
   ============================================= */
.tp-success-section {
    background: var(--tp-dark-bg-2);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.tp-success-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.tp-success-img-wrap {
    position: relative;
}

.tp-success-img-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    max-height: 480px;
    object-fit: contain;
}

.tp-section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--tp-accent-gold);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.tp-section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--tp-text-white);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.tp-section-title .highlight {
    color: var(--tp-accent-gold);
}

.tp-section-desc {
    font-size: 15px;
    color: var(--tp-text-light);
    line-height: 1.75;
    margin-bottom: 30px;
}

.tp-success-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tp-btn-purple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tp-accent-purple);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.tp-btn-purple:hover {
    background: var(--tp-accent-purple-2);
    color: #fff;
    transform: translateY(-2px);
}

.tp-btn-purple-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--tp-accent-purple-2);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1.5px solid var(--tp-accent-purple-2);
}

.tp-btn-purple-outline:hover {
    background: var(--tp-accent-purple);
    color: #fff;
    border-color: var(--tp-accent-purple);
}

.tp-text-link {
    color: var(--tp-accent-gold);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.tp-text-link:hover {
    gap: 10px;
    color: var(--tp-accent-gold);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.tp-how-section {
    background: var(--tp-dark-bg);
    padding: 90px 0;
    position: relative;
}

.tp-how-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.tp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tp-how-card {
    background: var(--tp-dark-card);
    border: 1px solid var(--tp-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tp-how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tp-accent-gold), var(--tp-accent-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.tp-how-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 165, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.tp-how-card:hover::before {
    opacity: 1;
}

.tp-how-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.tp-how-icon.gold {
    background: rgba(240, 165, 0, 0.12);
    border: 2px solid rgba(240, 165, 0, 0.4);
}

.tp-how-icon.purple {
    background: rgba(107, 63, 160, 0.2);
    border: 2px solid rgba(107, 63, 160, 0.5);
}

.tp-how-icon i {
    font-size: 28px;
}

.tp-how-icon.gold i { color: var(--tp-accent-gold); }
.tp-how-icon.purple i { color: var(--tp-accent-purple-2); }

.tp-how-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-text-white);
    margin-bottom: 14px;
}

.tp-how-card p {
    font-size: 14px;
    color: var(--tp-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tp-card-link {
    color: var(--tp-accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.tp-card-link:hover {
    gap: 10px;
    color: var(--tp-accent-gold);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.tp-testimonials {
    background: var(--tp-dark-bg-2);
    padding: 90px 0;
}

.tp-testimonial-card {
    background: var(--tp-dark-card);
    border: 1px solid var(--tp-border);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s;
    height: 100%;
}

.tp-testimonial-card:hover {
    border-color: rgba(240, 165, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.tp-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.tp-testimonial-stars i {
    color: var(--tp-accent-gold);
    font-size: 13px;
}

.tp-testimonial-text {
    font-size: 14px;
    color: var(--tp-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.tp-testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(240, 165, 0, 0.3);
}

.tp-testimonial-author h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-text-white);
    margin: 0 0 2px;
}

.tp-testimonial-author span {
    font-size: 12px;
    color: var(--tp-text-muted);
}

/* =============================================
   VIDEOS SECTION
   ============================================= */
.tp-videos-section {
    background: var(--tp-dark-bg-3);
    padding: 90px 0;
}

.tp-video-card {
    background: var(--tp-dark-card);
    border: 1px solid var(--tp-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}

.tp-video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 165, 0, 0.25);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.tp-video-thumb {
    position: relative;
    overflow: hidden;
}

.tp-video-thumb img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.tp-video-card:hover .tp-video-thumb img {
    transform: scale(1.04);
}

.tp-video-thumb .tp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.tp-video-info {
    padding: 16px;
}

.tp-video-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--tp-text-white);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-video-info p {
    font-size: 12px;
    color: var(--tp-text-muted);
    margin: 0;
}

/* =============================================
   VIDEO TABS
   ============================================= */
.tp-video-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tp-video-tab {
    background: var(--tp-dark-card);
    border: 1.5px solid var(--tp-border);
    color: var(--tp-text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.tp-video-tab:hover {
    border-color: var(--tp-accent-gold);
    color: var(--tp-accent-gold);
}

.tp-video-tab.active {
    background: var(--tp-accent-gold);
    border-color: var(--tp-accent-gold);
    color: #0b0d1f;
}

.tp-tab-panel {
    display: none;
}

.tp-tab-panel.active {
    display: block;
}

/* Level badge inside video card */
.tp-level-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp-level-beginner    { background: rgba(76, 175, 80, 0.18);  color: #4caf50; }
.tp-level-strategies  { background: rgba(138, 92, 204, 0.2);  color: #a57de8; }
.tp-level-advanced    { background: rgba(240, 165, 0, 0.15);  color: var(--tp-accent-gold); }
.tp-level-intermediate{ background: rgba(138, 92, 204, 0.2);  color: #a57de8; }

/* YouTube embed in hero */
.tp-yt-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 0;
}

.tp-yt-embed-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 10px;
    border: none;
}

/* Elfsight gallery wrapper */
.tp-yt-gallery-wrap {
    padding: 0 0 20px;
    background: var(--tp-dark-bg-3);
}

/* Remove old thumbnail from hero video card */
.tp-hero-video-thumb {
    margin-bottom: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.tp-cta-section {
    background: linear-gradient(135deg, #0e1030 0%, #1a0d3a 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tp-cta-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.tp-cta-section .tp-section-title {
    font-size: 42px;
    margin-bottom: 18px;
}

.tp-cta-section .tp-section-desc {
    max-width: 520px;
    margin: 0 auto 36px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.tp-section-header .tp-section-title {
    margin-bottom: 14px;
}

.tp-section-header .tp-section-desc {
    max-width: 560px;
    margin: 0 auto;
}

/* =============================================
   INSTAGRAM SECTION
   ============================================= */
.tp-instagram-section {
    background: var(--tp-dark-bg);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.tp-instagram-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Instagram gradient icon */
.tp-ig-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    margin-right: 6px;
}

/* Handle badge */
.tp-ig-handle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(240,148,51,0.12), rgba(188,24,136,0.12));
    border: 1.5px solid rgba(220, 39, 67, 0.3);
    color: #e1306c;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 16px;
}

.tp-ig-handle-badge:hover {
    background: linear-gradient(135deg, rgba(240,148,51,0.22), rgba(188,24,136,0.22));
    color: #e1306c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.2);
}

.tp-ig-handle-badge i {
    font-size: 18px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Profile bar */
.tp-ig-profile-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--tp-dark-card);
    border: 1px solid var(--tp-border);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Avatar with Instagram story ring */
.tp-ig-avatar-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}

.tp-ig-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--tp-dark-card-2);
    border: 3px solid var(--tp-dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-ig-avatar-inner i {
    font-size: 28px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tp-ig-profile-info {
    flex: 1;
    min-width: 180px;
}

.tp-ig-username {
    font-size: 18px;
    font-weight: 800;
    color: var(--tp-text-white);
    margin-bottom: 4px;
}

.tp-ig-username::before {
    content: '@';
    color: #e1306c;
    font-size: 16px;
}

.tp-ig-bio {
    font-size: 13px;
    color: var(--tp-text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.tp-ig-stats {
    display: flex;
    gap: 20px;
}

.tp-ig-stats span {
    font-size: 13px;
    color: var(--tp-text-muted);
}

.tp-ig-stats strong {
    display: block;
    font-size: 15px;
    color: var(--tp-text-white);
}

/* Follow button */
.tp-ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f09433, #e6683c 30%, #dc2743 60%, #bc1888);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.tp-ig-follow-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.35);
    filter: brightness(1.1);
}

/* Instagram grid tiles */
.tp-ig-embed-placeholder {
    width: 100%;
}

.tp-ig-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.tp-ig-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.tp-ig-tile-inner {
    width: 100%;
    height: 100%;
    background: var(--tp-dark-card-2);
    border: 1px solid var(--tp-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    transition: all 0.3s;
    border-radius: 10px;
}

.tp-ig-tile-inner i {
    font-size: 30px;
    color: var(--tile-color, var(--tp-accent-gold));
    transition: transform 0.3s;
}

.tp-ig-tile-inner span {
    font-size: 11px;
    font-weight: 600;
    color: var(--tp-text-muted);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover overlay */
.tp-ig-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,148,51,0.88), rgba(188,24,136,0.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 10px;
}

.tp-ig-tile-overlay i {
    font-size: 26px;
    color: #fff;
}

.tp-ig-tile-overlay span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp-ig-tile:hover .tp-ig-tile-overlay {
    opacity: 1;
}

.tp-ig-tile:hover .tp-ig-tile-inner i {
    transform: scale(1.1);
}

/* CTA bottom button */
.tp-btn-ig-cta {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #e1306c;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(225, 48, 108, 0.4);
}

.tp-btn-ig-cta:hover {
    background: linear-gradient(135deg, rgba(240,148,51,0.15), rgba(188,24,136,0.15));
    color: #e1306c;
    border-color: #e1306c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.2);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .tp-hero-title { font-size: 42px; }
    .tp-hero-content { padding: 60px 0; }
    .tp-hero-video-card { max-width: 100%; margin-top: 40px; }
    .tp-section-title { font-size: 32px; }
    .tp-cta-section .tp-section-title { font-size: 32px; }
    .tp-feature-divider { display: none; }
    .tp-feature-item { justify-content: center; text-align: left; margin-bottom: 20px; }
    .tp-success-img-wrap { margin-bottom: 40px; }
    .tp-ig-grid { grid-template-columns: repeat(3, 1fr); }
    .tp-ig-profile-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .tp-ig-follow-btn { width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
    .tp-hero-title { font-size: 34px; }
    .tp-section-title { font-size: 28px; }
    .tp-hero { min-height: auto; }
    .tp-hero-content { padding: 50px 0 30px; }
    .tp-success-section, .tp-how-section, .tp-testimonials, .tp-videos-section, .tp-cta-section, .tp-instagram-section { padding: 60px 0; }
    .tp-ig-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
}

@media (max-width: 575px) {
    .tp-hero-title { font-size: 28px; }
    .tp-hero-btn-group { flex-direction: column; align-items: flex-start; }
    .tp-success-btns { flex-direction: column; }
    .tp-ig-grid { grid-template-columns: repeat(2, 1fr); }
    .tp-ig-stats { gap: 12px; }
}
