@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-light: #F5F7FA;
    --bg-cream: #FFFEF9;
    --navy-deep: #1A2B4A;
    --navy-medium: #2D4263;
    --slate: #64748B;
    --gold-accent: #D4A853;
    --gold-bright: #E8C468;
    --teal-accent: #2DD4BF;
    --coral-soft: #F87171;
    --shadow-soft: 0 8px 32px rgba(26, 43, 74, 0.08);
    --shadow-card: 0 4px 20px rgba(26, 43, 74, 0.1);
    --shadow-hover: 0 12px 40px rgba(212, 168, 83, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-light);
    color: var(--navy-deep);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright));
    color: var(--navy-deep);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-accent));
    transform: translateY(-2px) translateX(4px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy-deep);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid rgba(26, 43, 74, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.tag {
    display: inline-block;
    background: rgba(45, 212, 191, 0.15);
    color: #0d9488;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 247, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 43, 74, 0.05);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--navy-deep);
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(26, 43, 74, 0.2);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 43, 74, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .logo-main {
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo-text .logo-sub {
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo span {
    color: var(--gold-accent);
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    font-weight: 500;
    color: var(--navy-deep);
    position: relative;
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

nav a:hover {
    color: var(--gold-accent);
    background: rgba(212, 168, 83, 0.08);
}

nav a.active {
    color: var(--gold-accent);
    background: rgba(212, 168, 83, 0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright)) !important;
    color: var(--navy-deep) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.cart-icon {
    position: relative;
    font-size: 18px;
    color: var(--navy-deep);
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.cart-icon:hover {
    background: rgba(26, 43, 74, 0.05);
    color: var(--gold-accent);
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--gold-accent);
    color: var(--navy-deep);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(26, 43, 74, 0.05);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy-deep);
    transition: var(--transition);
    border-radius: 2px;
}


.hero-v2 {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.hero-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-v2-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-v2-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(26, 43, 74, 0.04);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 168, 83, 0.06);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(45, 212, 191, 0.05);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: rgba(26, 43, 74, 0.03);
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

.hero-v2-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(26, 43, 74, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 43, 74, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-v2-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}

.hero-v2-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-v2-badge i {
    color: var(--gold-accent);
    font-size: 16px;
}

.hero-v2-title {
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.1;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-v2-title .title-line {
    display: block;
    color: var(--navy-deep);
}

.hero-v2-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-v2-title .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(212, 168, 83, 0.3), rgba(45, 212, 191, 0.3));
    border-radius: 4px;
    z-index: -1;
}

.hero-v2-subtitle {
    font-size: 18px;
    color: var(--slate);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-v2-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-deep);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-v2-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(26, 43, 74, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26, 43, 74, 0.35);
}

.btn-hero-primary i {
    transition: var(--transition);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--navy-deep);
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(26, 43, 74, 0.1);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: var(--gold-accent);
    background: rgba(212, 168, 83, 0.05);
}

.btn-hero-secondary i {
    color: var(--gold-accent);
    font-size: 20px;
}

.hero-v2-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright));
    color: var(--navy-deep);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 3px solid white;
}

.trust-text {
    font-size: 14px;
    color: var(--slate);
}

.hero-v2-visual {
    position: relative;
    min-height: 550px;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-main-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26, 43, 74, 0.12);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.hero-main-card-header {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.card-dots span:first-child { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #28ca42; }

.card-title {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.hero-main-card-body {
    padding: 24px;
}

.progress-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(26, 43, 74, 0.06);
    position: relative;
}

.progress-item:last-child {
    border-bottom: none;
}

.progress-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(26, 43, 74, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    font-size: 14px;
    flex-shrink: 0;
}

.progress-item.active .progress-icon {
    background: linear-gradient(135deg, var(--teal-accent), #14b8a6);
    color: white;
}

.progress-item.current .progress-icon {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright));
    color: var(--navy-deep);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(212, 168, 83, 0); }
}

.progress-info {
    flex: 1;
}

.progress-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.progress-status {
    font-size: 12px;
    color: var(--slate);
}

.progress-item.active .progress-status { color: var(--teal-accent); }
.progress-item.current .progress-status { color: var(--gold-accent); }

.progress-bar {
    position: absolute;
    bottom: 16px;
    left: 52px;
    right: 0;
    height: 4px;
    background: rgba(26, 43, 74, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-accent), var(--teal-accent));
    border-radius: 2px;
    animation: progressGrow 2s ease-out 1s both;
}

@keyframes progressGrow {
    from { width: 0 !important; }
}

.hero-main-card-footer {
    background: rgba(26, 43, 74, 0.02);
    padding: 16px 24px;
    border-top: 1px solid rgba(26, 43, 74, 0.06);
}

.card-achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--navy-deep);
}

.card-achievement i {
    color: var(--gold-accent);
    font-size: 18px;
}

.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 74, 0.15);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.card-interview {
    top: 5%;
    left: -10%;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 0s;
}

.card-growth {
    bottom: 25%;
    left: -5%;
    animation-delay: -2s;
}

.card-badge {
    top: 40%;
    right: -5%;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright));
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 13px;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 18px;
}

.floating-card-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-deep);
    display: block;
    margin-bottom: 4px;
}

.floating-card-rating {
    display: flex;
    gap: 2px;
}

.floating-card-rating i {
    color: var(--gold-accent);
    font-size: 12px;
}

.growth-chart {
    position: relative;
    width: 120px;
    height: 60px;
}

.growth-svg {
    width: 100%;
    height: 100%;
}

.growth-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease-out 1s forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.growth-label {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--teal-accent);
}

.hero-v2-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-v2-scroll span {
    font-size: 12px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(26, 43, 74, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.5; }
}

.hero {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-diagonal {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    transform: skewX(-12deg);
    opacity: 0.06;
}

.hero-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(212, 168, 83, 0.1) 20px,
        rgba(212, 168, 83, 0.1) 40px
    );
    animation: diagonalMove 20s linear infinite;
}

@keyframes diagonalMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.hero-arrows {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 8 L20 32 M12 16 L20 8 L28 16' stroke='%23D4A853' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    color: var(--navy-deep);
}

.hero-text h1 span {
    color: var(--gold-accent);
    position: relative;
}

.hero-text p {
    font-size: 18px;
    color: var(--slate);
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.hero-card-1 {
    top: 10%;
    right: 20%;
    transform: rotate(-3deg);
    width: 200px;
}

.hero-card-2 {
    top: 35%;
    right: 5%;
    transform: rotate(4deg);
    width: 220px;
}

.hero-card-3 {
    bottom: 15%;
    right: 25%;
    transform: rotate(-2deg);
    width: 190px;
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    margin-bottom: 12px;
}

.hero-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.hero-card-checks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-card-checks span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--slate);
}

.hero-card-checks i {
    color: var(--teal-accent);
    font-size: 10px;
}

.mini-chart {
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 12px;
}

.mini-chart span {
    width: 20px;
    background: linear-gradient(to top, var(--teal-accent), var(--gold-accent));
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out forwards;
}

@keyframes chartGrow {
    from { height: 0; }
}

.mini-chart span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.mini-chart span:nth-child(2) { height: 55%; animation-delay: 0.2s; }
.mini-chart span:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.mini-chart span:nth-child(4) { height: 70%; animation-delay: 0.4s; }
.mini-chart span:nth-child(5) { height: 90%; animation-delay: 0.5s; }

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--slate);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.perche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.perche-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.perche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--teal-accent));
    transform: skewX(-20deg);
    transform-origin: left;
}

.perche-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.perche-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 43, 74, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy-deep);
    margin-bottom: 20px;
}

.perche-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.perche-card p {
    color: var(--slate);
    font-size: 15px;
}


.percorsi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.percorso-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.percorso-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.percorso-img {
    height: 180px;
    background: linear-gradient(135deg, var(--arancio-avanti), var(--rosso-ambizione));
    position: relative;
    overflow: hidden;
}

.percorso-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.percorso-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-deep);
}

.percorso-content {
    padding: 24px;
}

.percorso-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.percorso-content p {
    color: var(--slate);
    font-size: 14px;
    margin-bottom: 16px;
}

.percorso-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.percorso-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-deep);
}

.percorso-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--slate);
}

.come-funziona {
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-accent), var(--teal-accent));
}

.step {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(26, 43, 74, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 12px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-content h3 i {
    color: var(--teal-accent);
}

.step-content p {
    color: var(--slate);
}

.success-stories {
    background: var(--navy-deep);
    color: white;
}

.success-stories .section-header h2 {
    color: white;
}

.success-stories .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.story-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 8px;
}

.story-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.story-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 20px;
}

.story-chart span {
    flex: 1;
    background: linear-gradient(to top, var(--teal-accent), var(--gold-accent));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.story-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.story-author {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-accent), var(--teal-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-weight: 600;
}

.story-name {
    font-weight: 600;
    font-size: 14px;
}

.story-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cta-section {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 10 L30 50 M20 20 L30 10 L40 20' stroke='%23D4A853' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright));
    color: var(--navy-deep);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.cta-section .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}


footer {
    background: linear-gradient(180deg, var(--navy-deep) 0%, #0f1a2e 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--teal-accent), var(--gold-accent));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    padding-right: 24px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand .logo-text .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-badge i {
    color: var(--gold-accent);
}

.footer-col h4 {
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--gold-accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: var(--gold-accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: var(--gold-accent);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0;
}

.footer-company {
    padding: 40px 0;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.company-info-block h5 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 74, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: white;
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--luce-bianca);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--grafite);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--navy-deep);
    color: var(--gold-accent);
}

.modal-header {
    padding: 32px;
    border-bottom: 1px solid rgba(47, 48, 51, 0.1);
}

.modal-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--slate);
}

.modal-body {
    padding: 32px;
}

.course-module {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.course-module:hover {
    box-shadow: var(--shadow-soft);
}

.module-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.module-info p {
    font-size: 13px;
    color: var(--slate);
}

.module-price {
    display: flex;
    align-items: center;
    gap: 16px;
}

.module-price span {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--navy-deep);
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-bright));
    color: var(--navy-deep);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-accent));
    transform: scale(1.05);
}

.btn-add-cart.added {
    background: var(--teal-accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(47, 48, 51, 0.1);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold-accent);
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--slate);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--gold-accent);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 24px;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .perche-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--bg-cream);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-soft);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-diagonal {
        width: 100%;
        height: 60%;
        top: 0;
        left: -20%;
    }
    
    .hero-v2 {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-v2-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-v2-text {
        order: 1;
    }
    
    .hero-v2-visual {
        order: 2;
        min-height: 400px;
    }
    
    .hero-v2-badge {
        justify-content: center;
    }
    
    .hero-v2-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .hero-v2-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-v2-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .hero-v2-cta {
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .hero-v2-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-main-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-v2-scroll {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .steps-container::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step {
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .company-info {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .hero-v2-content {
        gap: 40px;
    }
    
    .hero-floating-card.card-interview {
        left: -5%;
    }
    
    .hero-floating-card.card-growth {
        left: 0;
    }
    
    .hero-floating-card.card-badge {
        right: 0;
    }
}

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--navy-deep);
    opacity: 0.04;
    transform: skewX(-15deg);
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--grigio-caldo);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--slate);
}

.breadcrumb a:hover {
    color: var(--gold-accent);
}

.breadcrumb span {
    color: var(--gold-accent);
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.content-section h3 {
    font-size: 20px;
    margin: 24px 0 12px;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--navy-deep);
    line-height: 1.8;
}

.content-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.blog-content p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
}

.cart-items {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(47, 48, 51, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 13px;
    color: var(--slate);
}

.cart-item-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--navy-deep);
    font-size: 18px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--slate);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--coral-soft);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 2px solid var(--grafite);
}

.cart-total span {
    font-size: 18px;
    font-weight: 600;
}

.cart-total strong {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    color: var(--navy-deep);
}

.checkout-form {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    margin-top: 32px;
}

.checkout-form h3 {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 64px;
    color: var(--slate);
    margin-bottom: 24px;
}

.empty-cart h3 {
    margin-bottom: 16px;
}

.empty-cart p {
    color: var(--slate);
    margin-bottom: 24px;
}

.success-modal {
    text-align: center;
    padding: 40px;
}

.success-modal i {
    font-size: 64px;
    color: var(--teal-accent);
    margin-bottom: 24px;
}

.success-modal h2 {
    margin-bottom: 16px;
}

.success-modal p {
    color: var(--slate);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
}

.contact-info-item a {
    color: var(--navy-deep);
}

.contact-info-item a:hover {
    color: var(--gold-accent);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-accent);
}

.stat-label {
    font-size: 14px;
    color: var(--slate);
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold-accent);
    font-weight: 700;
}

.team-card h4 {
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.team-card p {
    color: var(--slate);
    font-size: 14px;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    color: white;
    padding: 20px;
    z-index: 2500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cookie-text a {
    color: var(--gold-accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}

.cookie-btn-accept {
    background: var(--gold-accent);
    color: var(--navy-deep);
}

.cookie-btn-accept:hover {
    background: var(--gold-bright);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--navy-deep);
    color: var(--gold-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(26, 43, 74, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1500;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 43, 74, 0.4);
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-card {
    animation: float 6s ease-in-out infinite;
}

.hero-card-1 { animation-delay: 0s; }
.hero-card-2 { animation-delay: 2s; }
.hero-card-3 { animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

.hero-card-2 {
    animation-name: float2;
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(4deg); }
    50% { transform: translateY(-10px) rotate(4deg); }
}

.hero-card-3 {
    animation-name: float3;
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-accent), var(--teal-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(45, 212, 191, 0.1));
    border-left: 4px solid var(--gold-accent);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
}

.badge-new {
    display: inline-block;
    background: var(--coral-soft);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--navy-deep);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-bar {
    height: 8px;
    background: rgba(26, 43, 74, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-accent), var(--teal-accent));
    border-radius: 4px;
    transition: width 1s ease;
}

.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-deep);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 8px;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy-deep);
    color: var(--gold-accent);
    padding: 8px 16px;
    z-index: 3000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


.trust-section {
    padding: 80px 0;
    background: white;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header h2 {
    margin-bottom: 16px;
}

.trust-header p {
    color: var(--slate);
    font-size: 18px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.trust-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.trust-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
}

.trust-item h4 {
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: var(--slate);
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid rgba(26, 43, 74, 0.08);
}

.partner-logo {
    height: 40px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.certifications-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(26, 43, 74, 0.08);
}

.certification-badge img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.certification-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-deep);
}

.stories-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.story-full-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.story-full-card:hover {
    box-shadow: var(--shadow-hover);
}

.story-full-image {
    position: relative;
    overflow: hidden;
}

.story-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.story-full-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 43, 74, 0.8), transparent);
}

.story-stats-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
}

.story-stat-big {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
}

.story-stat-label {
    font-size: 14px;
    color: white;
    margin-top: 4px;
}

.story-full-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-full-content blockquote {
    font-size: 18px;
    line-height: 1.8;
    color: var(--navy-deep);
    margin-bottom: 32px;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--gold-accent);
}

.story-author-full {
    display: flex;
    align-items: center;
    gap: 16px;
}

.story-author-full img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-accent);
}

.story-author-info h4 {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.story-author-info p {
    font-size: 14px;
    color: var(--slate);
}

.story-tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.story-tags span {
    font-size: 12px;
    background: rgba(45, 212, 191, 0.1);
    color: #0d9488;
    padding: 4px 10px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .story-full-card {
        grid-template-columns: 1fr;
    }
    
    .story-full-image img {
        min-height: 250px;
    }
    
    .story-full-content {
        padding: 32px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.course-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.course-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.percorso-card:hover .course-card-img img {
    transform: scale(1.05);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
