:root {
    --hr-primary: #6c5ce7;
    --hr-accent: #c0eb75;
    --hr-text-light: #ffffff;
}

.hr-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #6c47ff 0%, #9e85ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.hr-hero-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Social Proof Styles */
.hr-hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hr-hero-avatars {
    display: flex;
    margin-left: 15px;
}

.hr-hero-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px;
}

.hr-hero-stars {
    color: #ffb800;
    letter-spacing: 2px;
}

.hr-hero-rating span {
    color: white;
    font-size: 14px;
    opacity: 0.9;
}

/* Typography */
.hr-hero-title {
    font-size: 64px;
    color: white;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.1;
}

.hr-hero-outline {
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0 15px;
    border-radius: 12px;
    display: inline-block;
}

.hr-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 40px;
}

/* Form Styles */
.hr-hero-form {
    background: transparent;
    padding: 8px;
    border-radius: 50px;
    display: flex;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 100px;
    justify-content: center;
}

.hr-hero-form input {
    flex: 1;
    border: none;
    padding: 10px 25px;
    outline: none;
    font-size: 16px;
    border-radius: 50px;
}

.hr-hero-form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hr-hero-btn {
    text-decoration: none;
    background: var(--hr-accent);
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s;
    color: #0b1220;
    white-space: nowrap;
}

.hr-hero-btn:hover {
    transform: scale(1.05);
}

.hr-hero-btn-outline {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #0b1220;
}

.hr-hero-btn-primary {
    background: var(--hr-accent);
    border: none;
}

/* Floating Badges */
.hr-hero-badge {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.badge-left { top: 10%; left: 0%; }
.badge-right { top: 10%; right: 0%; }

.badge-icon {
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Mockup */
.hr-hero-dashboard-preview {
    width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 30px 30px 0 0;
    box-shadow: 0px 50px 100px rgba(0,0,0,0.2);
    height: 500px; /* Placeholder height */
    overflow: hidden;
    position: relative;
    border: 8px solid rgba(255,255,255,0.1);
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Clouds Background */
.hr-hero-clouds {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: url('https://www.transparenttextures.com/patterns/clouds.png');
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 992px) {
    .hr-hero-title { font-size: 40px; }
    .hr-hero-badge { display: none; }
}

.sc-tag-section {
    padding: 60px 0;
    background-color: #f9faff; /* Light background from image */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sc-tag-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* This creates the faded edges effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.sc-tag-track {
    display: flex;
    width: max-content;
    gap: 20px;
    align-items: center;
}

/* Base Pill Styling */
.sc-tag-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #4b449b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

/* Highlighted/Active Pill */
.sc-tag-pill.sc-tag-active {
    background: #5e48ff;
    color: white;
}

.sc-tag-icon {
    background: #e8e4ff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.sc-tag-icon-active {
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Animations */
.sc-tag-animate-left {
    animation: scroll-left 40s linear infinite;
}

.sc-tag-animate-right {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Pause on Hover */
.sc-tag-container:hover .sc-tag-track {
    animation-play-state: paused;
}

:root {
    --st-bg: #f8faff;
    --st-primary: #5e35e3;
    --st-text-dark: #2e1a6d;
    --st-text-gray: #6b7280;
    --st-white: #ffffff;
}

.feature-st-section {
    background-color: var(--st-bg);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
}

.feature-st-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-st-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-st-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9e5ff;
    color: var(--st-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-st-title {
    font-size: 42px;
    color: var(--st-text-dark);
    font-weight: 800;
}

.feature-st-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Feature Cards */
.feature-st-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-st-card {
    background: var(--st-white);
    padding: 24px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.feature-st-icon-box {
    min-width: 56px;
    height: 56px;
    background: #f1efff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-primary);
    transition: all 0.3s ease;
}

.feature-st-card-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--st-text-dark);
}

.feature-st-card-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--st-text-gray);
}

/* Active State Styles */
.feature-st-card.feature-st-active {
    background: var(--st-primary);
    transform: translateX(10px);
}

.feature-st-card.feature-st-active .feature-st-card-text h3,
.feature-st-card.feature-st-active .feature-st-card-text p {
    color: var(--st-white);
}

.feature-st-card.feature-st-active .feature-st-icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: var(--st-white);
}

/* Visual Mockup */
.feature-st-visual {
    position: relative;
}

.feature-st-visual-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a5b4fc, #818cf8);
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.feature-st-image-wrapper {
    position: relative;
    z-index: 1;
    background: white;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.feature-st-dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-st-content-grid {
        grid-template-columns: 1fr;
    }
    .feature-st-title {
        font-size: 32px;
    }
    .feature-st-visual {
        order: -1;
    }
}

:root {
    --hsw-purple: #5e35e3;
    --hsw-text: #2e1a6d;
    --hsw-bg: #f9faff;
}

.hsw-section {
    background-color: var(--hsw-bg);
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.hsw-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hsw-header {
    margin-bottom: 60px;
}

.hsw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9e5ff;
    color: var(--hsw-purple);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hsw-title {
    font-size: 40px;
    color: var(--hsw-text);
    font-weight: 800;
}

.hsw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Card Stack Effect */
.hsw-visual-area {
    position: relative;
    padding: 40px;
}

.hsw-card-stack {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.hsw-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.hsw-card-main {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.hsw-card-image-box {
    background: linear-gradient(135deg, #a5b4fc, #6366f1);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 200px;
}

.hsw-card-content h3 {
    font-size: 18px;
    color: var(--hsw-text);
    margin-bottom: 10px;
    text-align: center;
}

.hsw-card-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
}

/* Background Cards for Stack */
.hsw-card-bg-2, .hsw-card-bg-3 {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.5;
}

.hsw-card-bg-2 { transform: translate(15px, 15px) rotate(2deg); z-index: 2; }
.hsw-card-bg-3 { transform: translate(30px, 30px) rotate(4deg); z-index: 1; }

/* Steps List */
.hsw-steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hsw-step-item {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border: 1px solid #eee;
    transition: 0.3s;
    font-weight: 500;
    color: var(--hsw-text);
}

.hsw-step-active {
    background: var(--hsw-purple);
    color: white;
    border-color: var(--hsw-purple);
    box-shadow: 0 10px 20px rgba(94, 53, 227, 0.2);
}

.hsw-step-icon {
    width: 35px;
    height: 35px;
    background: #f1efff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hsw-purple);
}

.hsw-step-active .hsw-step-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Circular Badge with Rotating Text */
.hsw-steps-area { position: relative; }

.hsw-circular-badge {
    position: absolute;
    top: -100px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hsw-circular-badge svg {
    animation: rotateText 15s linear infinite;
    fill: var(--hsw-purple);
    font-size: 8px;
    font-weight: bold;
}

.hsw-badge-arrow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--hsw-purple);
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .hsw-grid { grid-template-columns: 1fr; gap: 40px; }
    .hsw-circular-badge { display: none; }
    .hsw-title { font-size: 28px; }
}

.itg-wrapper {
    position: relative;
    width: 100%;
    min-height: 800px;
    background: linear-gradient(180deg, #5b45f4 0%, #83c6f9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.itg-container {
    text-align: center;
    z-index: 10;
    color: white;
}

.itg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.itg-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
}

/* Orbit System Geometry */
.itg-orbit-system {
    position: absolute;
    bottom: -100px; /* Anchored at bottom center */
    width: 1000px;
    height: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.itg-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.itg-orbit-1 { width: 1000px; height: 1000px; }
.itg-orbit-2 { width: 750px; height: 750px; }
.itg-orbit-3 { width: 500px; height: 500px; }

/* Positioning Icons on the circles */
.itg-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    /* Polar Coordinate Trick */
    transform: rotate(var(--pos)) translateY(calc(-50% * var(--orbit-size, 1))) rotate(calc(-1 * var(--pos)));
    transition: transform 0.3s ease;
}

/* Adjust distances for each orbit */
.itg-orbit-1 .itg-icon { transform: rotate(var(--pos)) translateY(-500px) rotate(calc(-1 * var(--pos))); }
.itg-orbit-2 .itg-icon { transform: rotate(var(--pos)) translateY(-375px) rotate(calc(-1 * var(--pos))); }
.itg-orbit-3 .itg-icon { transform: rotate(var(--pos)) translateY(-250px) rotate(calc(-1 * var(--pos))); }

.itg-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Center Core Styles */
.itg-core {
    position: relative;
    width: 140px;
    height: 140px;
    z-index: 5;
}

.itg-core-inner {
    width: 100%;
    height: 100%;
    background: #c0eb75;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(192, 235, 117, 0.5);
}

.itg-main-logo {
    background: white;
    padding: 15px;
    border-radius: 50%;
    display: flex;
}

/* Pulse Animation */
.itg-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: rgba(192, 235, 117, 0.4);
    border-radius: 50%;
    animation: itg-pulse-anim 3s infinite;
}

.itg-pulse:nth-child(2) { animation-delay: 1.5s; }

@keyframes itg-pulse-anim {
    0% { width: 140px; height: 140px; opacity: 0.6; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

/* Background Clouds Overlay */
.itg-clouds {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    background: url('https://www.transparenttextures.com/patterns/clouds.png');
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 768px) {
    .itg-title { font-size: 32px; }
    .itg-orbit-system { transform: scale(0.6); bottom: -250px; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;800&display=swap');

.itg-hero-v2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(180deg, #5138ee 0%, #7ec6f8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Clouds background effect */
.itg-cloud-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: url('https://www.transparenttextures.com/patterns/clouds.png');
    background-repeat: repeat-x;
    background-position: bottom;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Header Content */
.itg-top-content {
    margin-top: 80px;
    text-align: center;
    color: white;
    z-index: 10;
}

.itg-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.itg-main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Orbit System - Anchored at bottom */
.itg-orbit-wrapper {
    position: absolute;
    bottom: -100px; /* Anchored here */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Everything sits at the bottom */
}

.itg-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    bottom: 0; /* Align circle bottoms */
    transform: translateY(50%); /* Shift center to the bottom line */
}

.orbit-outer { width: 1000px; height: 1000px; }
.orbit-mid   { width: 750px; height: 750px; }
.orbit-inner { width: 500px; height: 500px; }

/* Floating Icons Positioning Logic */
.itg-floating-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    top: 50%;
    left: 50%;
    /* Math to place icon on circle edge based on angle */
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-50%) translate(0, 0) rotate(calc(-1 * var(--angle)));
}

/* Different radius for each orbit */
.orbit-outer .itg-floating-icon { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-500px) rotate(calc(-1 * var(--angle))); }
.orbit-mid   .itg-floating-icon { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-375px) rotate(calc(-1 * var(--angle))); }
.orbit-inner .itg-floating-icon { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-250px) rotate(calc(-1 * var(--angle))); }

.itg-floating-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Central Core Styling */
.itg-central-core {
    position: relative;
    z-index: 5;
    bottom: 50px;
}

.itg-core-circle {
    width: 150px;
    height: 150px;
    background: #c0eb75;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.itg-core-logo {
    background: white;
    padding: 18px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.itg-core-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: rgba(192, 235, 117, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 100px 40px rgba(192, 235, 117, 0.6);
    animation: pulseCore 3s infinite;
}

@keyframes pulseCore {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
}

@media (max-width: 768px) {
    .itg-orbit-wrapper { transform: scale(0.5); bottom: -300px; }
    .itg-main-title { font-size: 32px; }
}

:root {
    --tmn-purple: #4e31aa;
    --tmn-lime: #c1f064;
    --tmn-bg: #f8faff;
    --tmn-text: #2a1b5c;
    --tmn-card-bg: #ffffff;
}

.tmn-section {
    background-color: var(--tmn-bg);
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.tmn-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.tmn-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.tmn-badge {
    background: #e8e4ff;
    color: var(--tmn-purple);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.tmn-title {
    font-size: 42px;
    color: var(--tmn-text);
    font-weight: 800;
    margin: 0;
}

.tmn-cta-btn {
    background: var(--tmn-lime);
    color: #000;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(193, 240, 100, 0.3);
}

.tmn-btn-arrow {
    background: #000;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Slider Layout */
.tmn-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0 50px 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.tmn-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

/* Card Base Styles */
.tmn-card {
    min-width: 380px;
    background: var(--tmn-card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1.5px solid #dbeafe;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.tmn-stars {
    color: #ffb800;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tmn-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
}

.tmn-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tmn-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tmn-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.tmn-info {
    display: flex;
    flex-direction: column;
}

.tmn-name {
    font-weight: 700;
    color: var(--tmn-text);
    font-size: 15px;
}

.tmn-role {
    font-size: 13px;
    color: #9ca3af;
}

.tmn-quote-icon {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Featured Card (Specific formatting from image) */
.tmn-card.tmn-featured {
    position: relative;
    border: none;
    transform: rotate(-1deg);
    z-index: 1;
}

.tmn-card.tmn-featured::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #3b82f6);
    border-radius: 24px;
    z-index: -1;
}

.tmn-card.tmn-featured::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: white;
    border-radius: 20px;
    z-index: -1;
}

@media (max-width: 768px) {
    .tmn-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .tmn-title { font-size: 32px; }
    .tmn-card { min-width: 300px; }
}

:root {
    --cta-purple-start: #6366f1;
    --cta-purple-end: #4f46e5;
    --cta-lime: #c1f064;
    --cta-font: 'Inter', sans-serif;
}

.cta-team-wrapper {
    padding: 60px 20px;
    background-color: #f8faff; /* Match site bg */
}

.cta-team-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--cta-purple-start) 0%, var(--cta-purple-end) 100%);
    border-radius: 40px;
    padding: 100px 40px;
    text-align: center;
    overflow: hidden;
    /* Cloud-like background effect */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-team-content {
    position: relative;
    z-index: 5;
}

.cta-team-title {
    color: white;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    font-family: var(--cta-font);
}

/* Form Styling */
.cta-team-form {
    background: white;
    padding: 8px;
    border-radius: 60px;
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-team-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-team-input {
    flex: 1;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 60px;
    outline: none;
    color: #4b5563;
}

.cta-team-button {
    background: var(--cta-lime);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    color: #0b1220;
    white-space: nowrap;
}

.cta-team-button:hover {
    transform: scale(1.03);
    background: #d4ff80;
}

.cta-team-button-outline {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.cta-team-arrow {
    background: #000;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Floating Icons */
.cta-team-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    animation: ctaFloat 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/* Stagger animations for more realism */
.icon-instagram { animation-delay: 1s; }
.icon-slack { animation-delay: 2s; }
.icon-github { animation-delay: 1.5s; }

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-team-title { font-size: 28px; }
    .cta-team-form { flex-direction: column; border-radius: 20px; padding: 15px; }
    .cta-team-actions { width: 100%; flex-direction: column; gap: 10px; margin-top: 10px; }
    .cta-team-button { width: 100%; justify-content: center; }
    .cta-team-icon { display: none; } /* Hide icons on small mobile to save space */
}

@media (max-width: 620px) {
    .hr-hero-form { flex-direction: column; border-radius: 20px; padding: 15px; max-width: 520px; }
    .hr-hero-form-actions { width: 100%; flex-direction: column; }
    .hr-hero-btn { width: 100%; }
}
